mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
gst/avi/gstavidemux.*: Whitespace fixes and more debug
Original commit message from CVS: * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index), (gst_avi_demux_massage_index): * gst/avi/gstavidemux.h: Whitespace fixes and more debug
This commit is contained in:
parent
e83ba9fb70
commit
332549280d
3 changed files with 15 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2006-07-28 Stefan Kost,,, <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
|
||||||
|
(gst_avi_demux_massage_index):
|
||||||
|
* gst/avi/gstavidemux.h:
|
||||||
|
Whitespace fixes and more debug
|
||||||
|
|
||||||
2006-07-27 Tim-Philipp Müller <tim at centricular dot net>
|
2006-07-27 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/autodetect/gstautoaudiosink.c:
|
* gst/autodetect/gstautoaudiosink.c:
|
||||||
|
|
|
@ -1473,6 +1473,7 @@ gst_avi_demux_stream_index (GstAviDemux * avi,
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
/* ERRORS */
|
||||||
no_index:
|
no_index:
|
||||||
{
|
{
|
||||||
GST_ERROR_OBJECT (avi,
|
GST_ERROR_OBJECT (avi,
|
||||||
|
@ -2029,6 +2030,10 @@ gst_avi_demux_massage_index (GstAviDemux * avi,
|
||||||
entry = one->data;
|
entry = one->data;
|
||||||
memcpy (&avi->index_entries[i], entry, sizeof (gst_avi_index_entry));
|
memcpy (&avi->index_entries[i], entry, sizeof (gst_avi_index_entry));
|
||||||
avi->index_entries[i].index_nr = i;
|
avi->index_entries[i].index_nr = i;
|
||||||
|
GST_DEBUG ("Adding index entry %d for stream %d of size %u "
|
||||||
|
"at offset %" G_GUINT64_FORMAT " and time %" GST_TIME_FORMAT,
|
||||||
|
avi->index_entries[i].index_nr, entry->stream_nr, entry->size,
|
||||||
|
entry->offset, GST_TIME_ARGS (entry->ts));
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_LOG_OBJECT (avi, "Freeing original index list");
|
GST_LOG_OBJECT (avi, "Freeing original index list");
|
||||||
|
|
Loading…
Reference in a new issue