diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-05-07 17:06:44 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-05-07 17:06:44 +0000 |
commit | 5f85c0e768f47ddbbcb18a3d2b2dfe7db0cc0c75 (patch) | |
tree | 837c1f540fa26fdd576219ee82f38fd81e50e9ef /src/libffmpeg/libavcodec | |
parent | eb95effb747e829b8daecba10258f9fa0c67484e (diff) | |
download | xine-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.c | 2 |
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"); |