diff options
author | Edward Hervey <bilboed@bilboed.com> | 2008-09-02 17:43:42 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2008-09-02 17:43:42 +0000 |
commit | 104ca25ceb320ad6e83763f7970f0c8e9fc8755e (patch) | |
tree | 03bb7abf85091f11e9b53562c1c48c43f834ad22 /gst/mpegdemux/gstmpegdemux.c | |
parent | 555486f865d6933da9cf983fc161e56474468ec4 (diff) | |
download | gst-plugins-bad-104ca25ceb320ad6e83763f7970f0c8e9fc8755e.tar.gz gst-plugins-bad-104ca25ceb320ad6e83763f7970f0c8e9fc8755e.tar.bz2 gst-plugins-bad-104ca25ceb320ad6e83763f7970f0c8e9fc8755e.zip |
gst/mpegdemux/: Fix build on macosx.
Original commit message from CVS:
* gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_parse_pack_start):
* gst/mpegdemux/gstmpegtsdemux.c: (gst_fluts_demux_data_cb):
Fix build on macosx.
Diffstat (limited to 'gst/mpegdemux/gstmpegdemux.c')
-rw-r--r-- | gst/mpegdemux/gstmpegdemux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegdemux/gstmpegdemux.c b/gst/mpegdemux/gstmpegdemux.c index a4b62d3c..4b30b00d 100644 --- a/gst/mpegdemux/gstmpegdemux.c +++ b/gst/mpegdemux/gstmpegdemux.c @@ -1037,7 +1037,7 @@ gst_flups_demux_parse_pack_start (GstFluPSDemux * demux) /* We keep the offset of this scr */ demux->last_scr_offset = demux->adapter_offset + 12; - GST_DEBUG_OBJECT (demux, "SCR: 0x%08x SCRE: 0x%08x", scr, scr_ext); + GST_DEBUG_OBJECT (demux, "SCR: 0x%08llx SCRE: 0x%08x", scr, scr_ext); if (scr_ext) { scr = (scr * 300 + scr_ext % 300) / 300; |