diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-08-14 16:41:21 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-08-14 16:41:21 +0000 |
commit | 84c1b149b22e9c370ad84b0cefc9e86bc0407c63 (patch) | |
tree | 01965ad0039d47a82a95216c1234df6f690fcfd5 /libavcodec | |
parent | 52154148f462a5b4c77c865e0893b5ca599a55af (diff) | |
download | ffmpeg-84c1b149b22e9c370ad84b0cefc9e86bc0407c63.tar.gz |
Fix typo.
Originally committed as revision 19639 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ffv1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index cd361f7f43..0c0062edcc 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -675,7 +675,7 @@ static av_cold int encode_init(AVCodecContext *avctx) return -1; } if(avctx->bits_per_raw_sample <=8){ - av_log(avctx, AV_LOG_ERROR, "bits_per_raw_sample inavlid\n"); + av_log(avctx, AV_LOG_ERROR, "bits_per_raw_sample invalid\n"); return -1; } s->version= 1; |