[FFmpeg-cvslog] lavc/flashsv2enc: Fix encoding resolution error message.

Carl Eugen Hoyos git at videolan.org
Thu Nov 13 22:15:34 CET 2014


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Thu Nov 13 22:13:33 2014 +0100| [34288651633a318d1dcebaccd9f735659f93c67c] | committer: Carl Eugen Hoyos

lavc/flashsv2enc: Fix encoding resolution error message.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=34288651633a318d1dcebaccd9f735659f93c67c
---

 libavcodec/flashsv2enc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/flashsv2enc.c b/libavcodec/flashsv2enc.c
index 9735a13..1c016f2 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)) {



More information about the ffmpeg-cvslog mailing list