Commit 5f8cb6d7 authored by michael's avatar michael

dont print "vop not coded" by default


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3523 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3b066668
...@@ -5780,7 +5780,8 @@ static int decode_vop_header(MpegEncContext *s, GetBitContext *gb){ ...@@ -5780,7 +5780,8 @@ static int decode_vop_header(MpegEncContext *s, GetBitContext *gb){
/* vop coded */ /* vop coded */
if (get_bits1(gb) != 1){ if (get_bits1(gb) != 1){
av_log(s->avctx, AV_LOG_ERROR, "vop not coded\n"); if(s->avctx->debug&FF_DEBUG_PICT_INFO)
av_log(s->avctx, AV_LOG_ERROR, "vop not coded\n");
return FRAME_SKIPED; return FRAME_SKIPED;
} }
//printf("time %d %d %d || %Ld %Ld %Ld\n", s->time_increment_bits, s->time_increment_resolution, s->time_base, //printf("time %d %d %d || %Ld %Ld %Ld\n", s->time_increment_bits, s->time_increment_resolution, s->time_base,
......
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