diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-15 15:21:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-11-12 02:55:45 +0100 |
commit | b87fc3526f27ad912a5ab22212febd68afe98e66 (patch) | |
tree | 29cf70d136fa56bd217109f7d702498d27683fd2 | |
parent | d165ec179e466bb165df7630e7a4b962d76aaa9f (diff) | |
download | ffmpeg-b87fc3526f27ad912a5ab22212febd68afe98e66.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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flashsvenc.c b/libavcodec/flashsvenc.c index acbc13482a..ce89f6d210 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; } |