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 | |
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')
-rw-r--r-- | gst/mpegdemux/gstmpegdemux.c | 2 | ||||
-rw-r--r-- | gst/mpegdemux/gstmpegtsdemux.c | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/gst/mpegdemux/gstmpegtsdemux.c b/gst/mpegdemux/gstmpegtsdemux.c index cbd7cc3a..f9cb473e 100644 --- a/gst/mpegdemux/gstmpegtsdemux.c +++ b/gst/mpegdemux/gstmpegtsdemux.c @@ -939,7 +939,7 @@ gst_fluts_demux_data_cb (GstPESFilter * filter, gboolean first, } GST_LOG_OBJECT (demux, "setting PTS to (%" G_GUINT64_FORMAT ") time: %" - GST_TIME_FORMAT " on buffer 0x%x first buffer: %d base_time: %" + GST_TIME_FORMAT " on buffer %p first buffer: %d base_time: %" GST_TIME_FORMAT, pts, GST_TIME_ARGS (time), buffer, first, GST_TIME_ARGS (stream->base_time)); |