aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-08-15 15:21:04 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-08-20 14:38:28 +0200
commitac3358d73ad2874f733eef3e6a5ad819cd0d9d3e (patch)
treea9c758fe8af7e97eba67eab6e14da3cabed5d561
parenteac75d405b979b42fd5dc7f910f2561534b14e8e (diff)
downloadffmpeg-ac3358d73ad2874f733eef3e6a5ad819cd0d9d3e.tar.gz
avcodec/flashsvenc: Correct max dimension in error message
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit b1f59bb6606721ef5eeade4ada541630d51510fe) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/flashsvenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flashsvenc.c b/libavcodec/flashsvenc.c
index 6d406e9fa6..2b6a25e96b 100644
--- a/libavcodec/flashsvenc.c
+++ b/libavcodec/flashsvenc.c
@@ -111,7 +111,7 @@ static av_cold int flashsv_encode_init(AVCodecContext *avctx)
if (avctx->width > 4095 || avctx->height > 4095) {
av_log(avctx, AV_LOG_ERROR,
- "Input dimensions too large, input must be max 4096x4096 !\n");
+ "Input dimensions too large, input must be max 4095x4095 !\n");
return AVERROR_INVALIDDATA;
}