comparison h263.c @ 2962:fde28cb7e3d5 libavcodec

use PRIxN, %zd, %td formats where needed
author mru
date Mon, 12 Dec 2005 01:56:46 +0000
parents 5576a9349ab6
children 564788471dd4
comparison
equal deleted inserted replaced
2961:dc544c0e6220 2962:fde28cb7e3d5
5859 if(s->avctx->time_base.num) 5859 if(s->avctx->time_base.num)
5860 s->current_picture_ptr->pts= (s->time + s->avctx->time_base.num/2) / s->avctx->time_base.num; 5860 s->current_picture_ptr->pts= (s->time + s->avctx->time_base.num/2) / s->avctx->time_base.num;
5861 else 5861 else
5862 s->current_picture_ptr->pts= AV_NOPTS_VALUE; 5862 s->current_picture_ptr->pts= AV_NOPTS_VALUE;
5863 if(s->avctx->debug&FF_DEBUG_PTS) 5863 if(s->avctx->debug&FF_DEBUG_PTS)
5864 av_log(s->avctx, AV_LOG_DEBUG, "MPEG4 PTS: %Ld\n", s->current_picture_ptr->pts); 5864 av_log(s->avctx, AV_LOG_DEBUG, "MPEG4 PTS: %"PRId64"\n", s->current_picture_ptr->pts);
5865 5865
5866 check_marker(gb, "before vop_coded"); 5866 check_marker(gb, "before vop_coded");
5867 5867
5868 /* vop coded */ 5868 /* vop coded */
5869 if (get_bits1(gb) != 1){ 5869 if (get_bits1(gb) != 1){