summaryrefslogtreecommitdiff
path: root/libavcodec/dirac.c
diff options
context:
space:
mode:
authorJames Darnley <james.darnley@gmail.com>2014-08-27 22:39:29 +0200
committerLou Logan <lou@lrcd.com>2014-08-27 16:00:17 -0800
commit8c1b942ad7b66034b030f2ab3cc5e81eccfa2b68 (patch)
treea0fdbca8a2983e64917ce6ee1c2abffc914c42a3 /libavcodec/dirac.c
parente6516944a3d504f208911033b31afedb3d427267 (diff)
downloadffmpeg-8c1b942ad7b66034b030f2ab3cc5e81eccfa2b68.tar.gz
Replace incorrect use of "multiply" with "multiple"
Also replace the plural form "multiplies" with "multiples".
Diffstat (limited to 'libavcodec/dirac.c')
-rw-r--r--libavcodec/dirac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dirac.c b/libavcodec/dirac.c
index 55553d67ee..aa55e776fb 100644
--- a/libavcodec/dirac.c
+++ b/libavcodec/dirac.c
@@ -239,7 +239,7 @@ static int parse_source_parameters(AVCodecContext *avctx, GetBitContext *gb,
avctx->pix_fmt = dirac_pix_fmt[!luma_offset][source->chroma_format];
avcodec_get_chroma_sub_sample(avctx->pix_fmt, &chroma_x_shift, &chroma_y_shift);
if ((source->width % (1<<chroma_x_shift)) || (source->height % (1<<chroma_y_shift))) {
- av_log(avctx, AV_LOG_ERROR, "Dimensions must be a integer multiply of the chroma subsampling\n");
+ av_log(avctx, AV_LOG_ERROR, "Dimensions must be an integer multiple of the chroma subsampling\n");
return AVERROR_INVALIDDATA;
}