Commit 28e10b6a authored by darkshikari's avatar darkshikari

Fix typo in vc.1, make capitalization in warning/error messages more consistent.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19203 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3fced7eb
...@@ -323,7 +323,7 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte ...@@ -323,7 +323,7 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte
if(v->s.loop_filter == 1 && v->profile == PROFILE_SIMPLE) if(v->s.loop_filter == 1 && v->profile == PROFILE_SIMPLE)
{ {
av_log(avctx, AV_LOG_ERROR, 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) if(v->s.avctx->skip_loop_filter >= AVDISCARD_ALL)
v->s.loop_filter = 0; v->s.loop_filter = 0;
...@@ -371,7 +371,7 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte ...@@ -371,7 +371,7 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte
if (v->rangered && v->profile == PROFILE_SIMPLE) if (v->rangered && v->profile == PROFILE_SIMPLE)
{ {
av_log(avctx, AV_LOG_INFO, 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 v->s.max_b_frames = avctx->max_b_frames = get_bits(gb, 3); //common
......
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