# HG changeset patch # User darkshikari # Date 1245113287 0 # Node ID 53d5914a30efbab56b6cd5eac9adc8d217f7d8a8 # Parent 964d08f7b46f5b9a195173c3770c68a9b260ddcb Fix typo in vc1.c, make capitalization in warning/error messages more consistent. diff -r 964d08f7b46f -r 53d5914a30ef vc1.c --- a/vc1.c Mon Jun 15 14:38:30 2009 +0000 +++ b/vc1.c Tue Jun 16 00:48:07 2009 +0000 @@ -323,7 +323,7 @@ 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 @@ 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