summaryrefslogtreecommitdiff
path: root/libavcodec/flashsv2enc.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-05-12 13:11:56 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-05-12 13:11:56 +0200
commitdb11fc5392e1e1a67a851bc039d979a94a0ca14f (patch)
tree2304953b383398917c9a903e9156a9546870c8a3 /libavcodec/flashsv2enc.c
parent2a37ac042f1247470ebeedeb0cc07059e4ae499f (diff)
downloadffmpeg-db11fc5392e1e1a67a851bc039d979a94a0ca14f.tar.gz
Fix flashsv2 encoder error message.
Diffstat (limited to 'libavcodec/flashsv2enc.c')
-rw-r--r--libavcodec/flashsv2enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flashsv2enc.c b/libavcodec/flashsv2enc.c
index f6883d85b3..8ab904616e 100644
--- a/libavcodec/flashsv2enc.c
+++ b/libavcodec/flashsv2enc.c
@@ -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;
}