summaryrefslogtreecommitdiff
path: root/libavcodec/flashsv2enc.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2014-11-13 22:13:33 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2014-11-13 22:13:33 +0100
commit34288651633a318d1dcebaccd9f735659f93c67c (patch)
treed423e3c5fa373858ab234819fddc7d9ec45672da /libavcodec/flashsv2enc.c
parent5c805d69a49a1f32a7a8a1b16fb3d631d85ca56d (diff)
lavc/flashsv2enc: Fix encoding resolution error message.
Diffstat (limited to 'libavcodec/flashsv2enc.c')
-rw-r--r--libavcodec/flashsv2enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flashsv2enc.c b/libavcodec/flashsv2enc.c
index 9735a13331..1c016f2265 100644
--- a/libavcodec/flashsv2enc.c
+++ b/libavcodec/flashsv2enc.c
@@ -192,7 +192,7 @@ static av_cold int flashsv2_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 -1;
}
if ((avctx->width < 16) || (avctx->height < 16)) {