use _object_ref_sink() when we can

This commit is contained in:
Wim Taymans 2010-12-07 11:31:30 +01:00
parent f355419679
commit f22687bacc
3 changed files with 5 additions and 10 deletions

View file

@ -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);

View file

@ -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

View file

@ -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 ? */