[FFmpeg-cvslog] Fix flashsv2 encoder error message.
Carl Eugen Hoyos
git at videolan.org
Sat May 12 13:12:22 CEST 2012
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sat May 12 13:11:56 2012 +0200| [db11fc5392e1e1a67a851bc039d979a94a0ca14f] | committer: Carl Eugen Hoyos
Fix flashsv2 encoder error message.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=db11fc5392e1e1a67a851bc039d979a94a0ca14f
---
libavcodec/flashsv2enc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/flashsv2enc.c b/libavcodec/flashsv2enc.c
index f6883d8..8ab9046 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;
}
More information about the ffmpeg-cvslog
mailing list