mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
flactag, wavparse: GstAdapter is not a GstObject
This commit is contained in:
parent
540cf8a11e
commit
d875e72b02
2 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ gst_flac_tag_dispose (GObject * object)
|
|||
GstFlacTag *tag = GST_FLAC_TAG (object);
|
||||
|
||||
if (tag->adapter) {
|
||||
gst_object_unref (tag->adapter);
|
||||
g_object_unref (tag->adapter);
|
||||
tag->adapter = NULL;
|
||||
}
|
||||
if (tag->vorbiscomment) {
|
||||
|
|
|
@ -2441,7 +2441,7 @@ gst_wavparse_sink_activate (GstPad * sinkpad)
|
|||
gboolean res;
|
||||
|
||||
if (wav->adapter)
|
||||
gst_object_unref (wav->adapter);
|
||||
g_object_unref (wav->adapter);
|
||||
|
||||
if (gst_pad_check_pull_range (sinkpad)) {
|
||||
GST_DEBUG ("going to pull mode");
|
||||
|
|
Loading…
Reference in a new issue