提交 40028f8f 编写于 作者: M Michael Niedermayer

dont print "vop not coded" by default

Originally committed as revision 3523 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 21adafec
......@@ -5780,7 +5780,8 @@ static int decode_vop_header(MpegEncContext *s, GetBitContext *gb){
/* vop coded */
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;
}
//printf("time %d %d %d || %Ld %Ld %Ld\n", s->time_increment_bits, s->time_increment_resolution, s->time_base,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册