From 5f85c0e768f47ddbbcb18a3d2b2dfe7db0cc0c75 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Sat, 7 May 2005 17:06:44 +0000 Subject: Correct a type error in a printf format string (debug log). CVS patchset: 7530 CVS date: 2005/05/07 17:06:44 --- src/libffmpeg/libavcodec/h263.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libffmpeg/libavcodec') diff --git a/src/libffmpeg/libavcodec/h263.c b/src/libffmpeg/libavcodec/h263.c index 80a283bb5..6a8388ee9 100644 --- a/src/libffmpeg/libavcodec/h263.c +++ b/src/libffmpeg/libavcodec/h263.c @@ -5856,7 +5856,7 @@ static int decode_vop_header(MpegEncContext *s, GetBitContext *gb){ s->current_picture_ptr->pts= (s->time + s->avctx->time_base.num/2) / s->avctx->time_base.num; if(s->avctx->debug&FF_DEBUG_PTS) - av_log(s->avctx, AV_LOG_DEBUG, "MPEG4 PTS: %f\n", s->current_picture_ptr->pts); + av_log(s->avctx, AV_LOG_DEBUG, "MPEG4 PTS: %lld\n", s->current_picture_ptr->pts); check_marker(gb, "before vop_coded"); -- cgit v1.2.3