Skip to content
Snippets Groups Projects
Commit b1f59bb6 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/flashsvenc: Correct max dimension in error message

parent 88fe45e0
No related branches found
No related tags found
No related merge requests found
...@@ -109,7 +109,7 @@ static av_cold int flashsv_encode_init(AVCodecContext *avctx) ...@@ -109,7 +109,7 @@ static av_cold int flashsv_encode_init(AVCodecContext *avctx)
if (avctx->width > 4095 || avctx->height > 4095) { if (avctx->width > 4095 || avctx->height > 4095) {
av_log(avctx, AV_LOG_ERROR, 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; return AVERROR_INVALIDDATA;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment