[FFmpeg-cvslog] avcodec/flashsvenc: Correct max dimension in error message

Michael Niedermayer git at videolan.org
Thu Nov 19 11:27:47 CET 2015


ffmpeg | branch: release/2.6 | Michael Niedermayer <michael at niedermayer.cc> | Sat Aug 15 15:21:04 2015 +0200| [8e597b57d0b1e567cb7141fc456be200f2ee9d9c] | committer: Michael Niedermayer

avcodec/flashsvenc: Correct max dimension in error message

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit b1f59bb6606721ef5eeade4ada541630d51510fe)

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

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

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

diff --git a/libavcodec/flashsvenc.c b/libavcodec/flashsvenc.c
index 14e8ada..2a68547 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;
     }
 



More information about the ffmpeg-cvslog mailing list