Commit db11fc53 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Fix flashsv2 encoder error message.

parent 2a37ac04
......@@ -194,7 +194,7 @@ static av_cold int flashsv2_encode_init(AVCodecContext * avctx)
}
if ((avctx->width < 16) || (avctx->height < 16)) {
av_log(avctx, AV_LOG_ERROR,
"Input dimensions too small, input must be max 16x16 !\n");
"Input dimensions too small, input must be at least 16x16 !\n");
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment