diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-24 14:08:22 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-24 14:08:22 +0000 |
commit | 05a637973d4fa5304d9d5c15fee3ca3e70da8b74 (patch) | |
tree | 9e0ed75b629ef515aa249d941fde8610ca5418a7 | |
parent | aebfefd1117a6efde0fccfc3fc74e3c2d9a101cd (diff) |
Fix format string to match actual type.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23652 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpdemux/demux_real.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmpdemux/demux_real.c b/libmpdemux/demux_real.c index 501c27bfe1..72b3f30b33 100644 --- a/libmpdemux/demux_real.c +++ b/libmpdemux/demux_real.c @@ -23,6 +23,7 @@ Video codecs: (supported by RealPlayer8 for Linux) #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <inttypes.h> #include "config.h" #include "mp_msg.h" @@ -519,7 +520,7 @@ static double real_fix_timestamp(real_priv_t* priv, unsigned char* s, unsigned i if(pict_type<=1){ // I frame, sync timestamps: priv->kf_base=(int64_t)timestamp-kf; - mp_msg(MSGT_DEMUX, MSGL_DBG2,"\nTS: base=%08X\n",priv->kf_base); + mp_msg(MSGT_DEMUX, MSGL_DBG2,"\nTS: base=%08"PRIX64"\n",priv->kf_base); kf=timestamp; } else { // P/B frame, merge timestamps: |