diff options
author | James Darnley <james.darnley@gmail.com> | 2014-08-27 22:39:29 +0200 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2014-08-27 16:00:17 -0800 |
commit | 8c1b942ad7b66034b030f2ab3cc5e81eccfa2b68 (patch) | |
tree | a0fdbca8a2983e64917ce6ee1c2abffc914c42a3 /libavcodec/mpeg12enc.c | |
parent | e6516944a3d504f208911033b31afedb3d427267 (diff) | |
download | ffmpeg-8c1b942ad7b66034b030f2ab3cc5e81eccfa2b68.tar.gz |
Replace incorrect use of "multiply" with "multiple"
Also replace the plural form "multiplies" with "multiples".
Diffstat (limited to 'libavcodec/mpeg12enc.c')
-rw-r--r-- | libavcodec/mpeg12enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c index 6275a83667..827812ef55 100644 --- a/libavcodec/mpeg12enc.c +++ b/libavcodec/mpeg12enc.c @@ -199,7 +199,7 @@ static av_cold int encode_init(AVCodecContext *avctx) if (s->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) { if ((avctx->width & 0xFFF) == 0 || (avctx->height & 0xFFF) == 0) { - av_log(avctx, AV_LOG_ERROR, "Width or Height are not allowed to be multiplies of 4096\n" + av_log(avctx, AV_LOG_ERROR, "Width or Height are not allowed to be multiples of 4096\n" "add '-strict %d' if you want to use them anyway.\n", FF_COMPLIANCE_UNOFFICIAL); return AVERROR(EINVAL); } |