mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 16:18:16 +00:00
use _object_ref_sink() when we can
This commit is contained in:
parent
f355419679
commit
f22687bacc
3 changed files with 5 additions and 10 deletions
|
@ -1159,8 +1159,7 @@ gst_ogg_chain_new_stream (GstOggChain * chain, glong serialno)
|
|||
|
||||
ret = g_object_new (GST_TYPE_OGG_PAD, NULL);
|
||||
/* we own this one */
|
||||
gst_object_ref (ret);
|
||||
gst_object_sink (ret);
|
||||
gst_object_ref_sink (ret);
|
||||
|
||||
GST_PAD_DIRECTION (ret) = GST_PAD_SRC;
|
||||
gst_ogg_pad_mark_discont (ret);
|
||||
|
|
|
@ -3294,8 +3294,7 @@ gst_decode_pad_init (GstDecodePad * pad)
|
|||
pad->blocked = FALSE;
|
||||
pad->exposed = FALSE;
|
||||
pad->drained = FALSE;
|
||||
gst_object_ref (pad);
|
||||
gst_object_sink (pad);
|
||||
gst_object_ref_sink (pad);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -638,8 +638,7 @@ gst_play_bin_set_property (GObject * object, guint prop_id,
|
|||
}
|
||||
play_bin->video_sink = g_value_get_object (value);
|
||||
if (play_bin->video_sink != NULL) {
|
||||
gst_object_ref (play_bin->video_sink);
|
||||
gst_object_sink (GST_OBJECT_CAST (play_bin->video_sink));
|
||||
gst_object_ref_sink (play_bin->video_sink);
|
||||
}
|
||||
/* when changing the videosink, we just remove the
|
||||
* video pipeline from the cache so that it will be
|
||||
|
@ -656,8 +655,7 @@ gst_play_bin_set_property (GObject * object, guint prop_id,
|
|||
}
|
||||
play_bin->audio_sink = g_value_get_object (value);
|
||||
if (play_bin->audio_sink != NULL) {
|
||||
gst_object_ref (play_bin->audio_sink);
|
||||
gst_object_sink (GST_OBJECT_CAST (play_bin->audio_sink));
|
||||
gst_object_ref_sink (play_bin->audio_sink);
|
||||
}
|
||||
g_hash_table_remove (play_bin->cache, "abin");
|
||||
break;
|
||||
|
@ -668,8 +666,7 @@ gst_play_bin_set_property (GObject * object, guint prop_id,
|
|||
|
||||
/* Take ownership */
|
||||
if (pending_visualisation) {
|
||||
gst_object_ref (pending_visualisation);
|
||||
gst_object_sink (pending_visualisation);
|
||||
gst_object_ref_sink (pending_visualisation);
|
||||
}
|
||||
|
||||
/* Do we already have a visualisation change pending ? */
|
||||
|
|
Loading…
Reference in a new issue