Browse Source

avcodec/flashsvenc: Correct max dimension in error message

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n2.8
Michael Niedermayer 10 years ago
parent
commit
b1f59bb660
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/flashsvenc.c

+ 1
- 1
libavcodec/flashsvenc.c View File

@@ -109,7 +109,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;
}



Loading…
Cancel
Save