Skip to content

Commit

Permalink
avcodec/flashsvenc: Correct max dimension in error message
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
  • Loading branch information
michaelni committed Aug 15, 2015
1 parent 88fe45e commit b1f59bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/flashsvenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit b1f59bb

Please sign in to comment.