summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2005-05-07 17:06:44 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2005-05-07 17:06:44 +0000
commit5f85c0e768f47ddbbcb18a3d2b2dfe7db0cc0c75 (patch)
tree837c1f540fa26fdd576219ee82f38fd81e50e9ef /src/libffmpeg/libavcodec
parenteb95effb747e829b8daecba10258f9fa0c67484e (diff)
downloadxine-lib-5f85c0e768f47ddbbcb18a3d2b2dfe7db0cc0c75.tar.gz
xine-lib-5f85c0e768f47ddbbcb18a3d2b2dfe7db0cc0c75.tar.bz2
Correct a type error in a printf format string (debug log).
CVS patchset: 7530 CVS date: 2005/05/07 17:06:44
Diffstat (limited to 'src/libffmpeg/libavcodec')
-rw-r--r--src/libffmpeg/libavcodec/h263.c2
1 files changed, 1 insertions, 1 deletions
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");