mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
ext/ogg/gstoggdemux.c: *sigh*, when is the compiler going to warn when the comments are out-of-sync with the code.. R...
Original commit message from CVS: * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain), (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain): *sigh*, when is the compiler going to warn when the comments are out-of-sync with the code.. Refix case of busted theora headers with 0 granule pos.
This commit is contained in:
parent
bbe88d8dab
commit
11d9c41a7d
2 changed files with 17 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-07-17 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
|
||||
(gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
|
||||
*sigh*, when is the compiler going to warn when the comments
|
||||
are out-of-sync with the code.. Refix case of busted theora
|
||||
headers with 0 granule pos.
|
||||
|
||||
2006-07-14 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst-libs/gst/rtp/gstbasertpdepayload.c:
|
||||
|
|
|
@ -756,6 +756,8 @@ gst_ogg_pad_internal_chain (GstPad * pad, GstBuffer * buffer)
|
|||
|
||||
if (oggpad->start_time == GST_CLOCK_TIME_NONE) {
|
||||
oggpad->start_time = timestamp;
|
||||
GST_DEBUG_OBJECT (oggpad, "new start time: %" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (timestamp));
|
||||
}
|
||||
|
||||
gst_buffer_unref (buffer);
|
||||
|
@ -1089,7 +1091,7 @@ gst_ogg_pad_submit_packet (GstOggPad * pad, ogg_packet * packet)
|
|||
/* correction for busted ogg, if the internal decoder outputed
|
||||
* a timestamp but we did not get a granulepos, it must have
|
||||
* been 0 and the time is therefore also 0 */
|
||||
if (pad->first_time == -1) {
|
||||
if (pad->first_granule == -1) {
|
||||
GST_DEBUG_OBJECT (ogg, "%p found start time without granulepos", pad);
|
||||
pad->first_granule = 0;
|
||||
pad->first_time = 0;
|
||||
|
@ -2296,11 +2298,17 @@ gst_ogg_demux_read_chain (GstOggDemux * ogg)
|
|||
if (pad->is_skeleton)
|
||||
continue;
|
||||
|
||||
GST_LOG_OBJECT (ogg, "convert first granule %" G_GUINT64_FORMAT " to time ",
|
||||
pad->first_granule);
|
||||
|
||||
target = GST_FORMAT_TIME;
|
||||
if (!gst_ogg_pad_query_convert (pad,
|
||||
GST_FORMAT_DEFAULT, pad->first_granule, &target,
|
||||
(gint64 *) & pad->first_time)) {
|
||||
GST_WARNING_OBJECT (ogg, "could not convert granulepos to time");
|
||||
} else {
|
||||
GST_LOG_OBJECT (ogg, "converted to first time %" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (pad->first_time));
|
||||
}
|
||||
|
||||
pad->mode = GST_OGG_PAD_MODE_STREAMING;
|
||||
|
|
Loading…
Reference in a new issue