comparison h263.c @ 2271:859535b5eb57 libavcodec

dont print "vop not coded" by default
author michael
date Mon, 27 Sep 2004 17:46:07 +0000
parents 1085c5284bf1
children 26560d4fdb1f
comparison
equal deleted inserted replaced
2270:21f450be6cb5 2271:859535b5eb57
5778 5778
5779 check_marker(gb, "before vop_coded"); 5779 check_marker(gb, "before vop_coded");
5780 5780
5781 /* vop coded */ 5781 /* vop coded */
5782 if (get_bits1(gb) != 1){ 5782 if (get_bits1(gb) != 1){
5783 av_log(s->avctx, AV_LOG_ERROR, "vop not coded\n"); 5783 if(s->avctx->debug&FF_DEBUG_PICT_INFO)
5784 av_log(s->avctx, AV_LOG_ERROR, "vop not coded\n");
5784 return FRAME_SKIPED; 5785 return FRAME_SKIPED;
5785 } 5786 }
5786 //printf("time %d %d %d || %Ld %Ld %Ld\n", s->time_increment_bits, s->time_increment_resolution, s->time_base, 5787 //printf("time %d %d %d || %Ld %Ld %Ld\n", s->time_increment_bits, s->time_increment_resolution, s->time_base,
5787 //s->time, s->last_non_b_time, s->last_non_b_time - s->pp_time); 5788 //s->time, s->last_non_b_time, s->last_non_b_time - s->pp_time);
5788 if (s->shape != BIN_ONLY_SHAPE && ( s->pict_type == P_TYPE 5789 if (s->shape != BIN_ONLY_SHAPE && ( s->pict_type == P_TYPE