mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-25 01:54:17 +00:00
ext/amrwb/gstamrwbparse.c: GST_PAD_PARENT doesn't return a GstObject with an incremented refcount.
Original commit message from CVS: * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_query): GST_PAD_PARENT doesn't return a GstObject with an incremented refcount. Switched to using gst_pad_get_parent().
This commit is contained in:
parent
0492b93845
commit
1ec203993d
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-02-07 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_query):
|
||||
GST_PAD_PARENT doesn't return a GstObject with an incremented refcount.
|
||||
Switched to using gst_pad_get_parent().
|
||||
|
||||
2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/modplug/gstmodplug.cc:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 8ba5dffb5ee7e7daea1030f6b34bfef10f9801a3
|
||||
Subproject commit de43a8f3c629983e0bea0b8eb617e52ed35a6cda
|
|
@ -148,7 +148,7 @@ gst_amrwbparse_query (GstPad * pad, GstQuery * query)
|
|||
GstAmrwbParse *amrwbparse;
|
||||
gboolean res = TRUE;
|
||||
|
||||
amrwbparse = GST_AMRWBPARSE (GST_PAD_PARENT (pad));
|
||||
amrwbparse = GST_AMRWBPARSE (gst_pad_get_parent (pad));
|
||||
|
||||
switch (GST_QUERY_TYPE (query)) {
|
||||
case GST_QUERY_POSITION:
|
||||
|
|
Loading…
Reference in a new issue