summaryrefslogtreecommitdiffstats
path: root/libhb/decmpeg2.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2010-04-10 01:10:15 +0000
committerjstebbins <[email protected]>2010-04-10 01:10:15 +0000
commitc6c3b33558aa505e6c44c988154ab253a895d1e3 (patch)
tree5c0641a9c5f962b52a49e8c079e38d88f86500f5 /libhb/decmpeg2.c
parent34d7b7d5daef1d22ab8061ebb46fea5a27a4c8fd (diff)
fix some mingw warnings and a mingw build issue
mingw gcc-4.5 has linker issues against shared libstdc++ git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3217 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decmpeg2.c')
-rw-r--r--libhb/decmpeg2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decmpeg2.c b/libhb/decmpeg2.c
index 7a4409678..63f2ebb40 100644
--- a/libhb/decmpeg2.c
+++ b/libhb/decmpeg2.c
@@ -506,7 +506,7 @@ static int hb_libmpeg2_decode( hb_libmpeg2_t * m, hb_buffer_t * buf_es,
m->flag = m->info->display_picture->flags;
/* Uncomment this block to see frame-by-frame picture flags, as the video encodes.
- hb_log("***** MPEG 2 Picture Info for PTS %lld *****", buf->start);
+ hb_log("***** MPEG 2 Picture Info for PTS %"PRId64" *****", buf->start);
if( m->flag & TOP_FIRST )
hb_log("MPEG2 Flag: Top field first");
if( m->flag & PROGRESSIVE )