mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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.
This commit is contained in:
parent
555486f865
commit
104ca25ceb
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-09-02 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_parse_pack_start):
|
||||
* gst/mpegdemux/gstmpegtsdemux.c: (gst_fluts_demux_data_cb):
|
||||
Fix build on macosx.
|
||||
|
||||
2008-09-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue