[FFmpeg-cvslog] r19203 - trunk/libavcodec/vc1.c
darkshikari
subversion
Tue Jun 16 02:48:07 CEST 2009
Author: darkshikari
Date: Tue Jun 16 02:48:07 2009
New Revision: 19203
Log:
Fix typo in vc.1, make capitalization in warning/error messages more consistent.
Modified:
trunk/libavcodec/vc1.c
Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c Tue Jun 16 00:12:23 2009 (r19202)
+++ trunk/libavcodec/vc1.c Tue Jun 16 02:48:07 2009 (r19203)
@@ -323,7 +323,7 @@ int vc1_decode_sequence_header(AVCodecCo
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(AVCodecCo
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
More information about the ffmpeg-cvslog
mailing list