diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-06-16 00:48:07 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2009-06-16 00:48:07 +0000 |
commit | 41faa87886e6fc54f159da6940b9edbfcd194714 (patch) | |
tree | 12185baa1e010bd3113b9231e1b21b45dfc84216 /libavcodec | |
parent | 0c3b2d65861da7048f7f970dbf3be36db8fc1b0b (diff) | |
download | ffmpeg-41faa87886e6fc54f159da6940b9edbfcd194714.tar.gz |
Fix typo in vc1.c, make capitalization in warning/error messages more consistent.
Originally committed as revision 19203 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 964e1266e2..57982444fe 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -323,7 +323,7 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte if(v->s.loop_filter == 1 && v->profile == PROFILE_SIMPLE) { av_log(avctx, AV_LOG_ERROR, - "LOOPFILTER shell not be enabled in simple profile\n"); + "LOOPFILTER shall not be enabled in Simple Profile\n"); } if(v->s.avctx->skip_loop_filter >= AVDISCARD_ALL) v->s.loop_filter = 0; @@ -371,7 +371,7 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte if (v->rangered && v->profile == PROFILE_SIMPLE) { av_log(avctx, AV_LOG_INFO, - "RANGERED should be set to 0 in simple profile\n"); + "RANGERED should be set to 0 in Simple Profile\n"); } v->s.max_b_frames = avctx->max_b_frames = get_bits(gb, 3); //common |