mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
gst/qtdemux/qtdemux.c: Remove previous wrong commit
Original commit message from CVS: * gst/qtdemux/qtdemux.c: Remove previous wrong commit * tests/check/elements/icydemux.c: (icydemux_found_pad): Remove problematic and useless refcount check. Fixes #556381
This commit is contained in:
parent
0af48261b4
commit
8e8e2bf451
3 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2008-10-15 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||||
|
|
||||||
|
* gst/qtdemux/qtdemux.c: Remove previous wrong commit
|
||||||
|
* tests/check/elements/icydemux.c: (icydemux_found_pad):
|
||||||
|
Remove problematic and useless refcount check.
|
||||||
|
Fixes #556381
|
||||||
|
|
||||||
2008-10-15 Edward Hervey <edward.hervey@collabora.co.uk>
|
2008-10-15 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||||
|
|
||||||
* gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
|
* gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
|
||||||
|
|
|
@ -2612,6 +2612,8 @@ qtdemux_parse_node (GstQTDemux * qtdemux, GNode * node, guint8 * buffer,
|
||||||
}
|
}
|
||||||
version = QT_UINT32 (buffer + 16);
|
version = QT_UINT32 (buffer + 16);
|
||||||
|
|
||||||
|
GST_WARNING_OBJECT (qtdemux, "mp4a version 0x%08x", version);
|
||||||
|
|
||||||
/* parse any esds descriptors */
|
/* parse any esds descriptors */
|
||||||
switch (version) {
|
switch (version) {
|
||||||
case 0x00000000:
|
case 0x00000000:
|
||||||
|
|
|
@ -87,7 +87,7 @@ icydemux_found_pad (GstElement * src, GstPad * pad, gpointer data)
|
||||||
fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK,
|
fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK,
|
||||||
"Failed to link pads");
|
"Failed to link pads");
|
||||||
gst_object_unref (srcpad);
|
gst_object_unref (srcpad);
|
||||||
ASSERT_OBJECT_REFCOUNT (srcpad, "srcpad", 2);
|
|
||||||
gst_pad_set_active (sinkpad, TRUE);
|
gst_pad_set_active (sinkpad, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue