summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2012-01-02 14:32:40 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2012-01-02 14:32:40 +0000
commit27ee8931ddb47a522cc2602aa3ed68e9ffa2adf7 (patch)
tree2528389389ec460f555246210a0c31bf66d3f60d
parentf43c88a203cf0b3c5cfd57fb5d4ed2a3d5bb57a2 (diff)
autodetect, rtsp: gst_registry_get_default() -> gst_registry_get()
-rw-r--r--gst/autodetect/gstautoaudiosink.c2
-rw-r--r--gst/autodetect/gstautoaudiosrc.c2
-rw-r--r--gst/autodetect/gstautovideosink.c2
-rw-r--r--gst/autodetect/gstautovideosrc.c2
-rw-r--r--gst/rtsp/gstrtspext.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/gst/autodetect/gstautoaudiosink.c b/gst/autodetect/gstautoaudiosink.c
index 9f5aad19f..f5baa1dfc 100644
--- a/gst/autodetect/gstautoaudiosink.c
+++ b/gst/autodetect/gstautoaudiosink.c
@@ -239,7 +239,7 @@ gst_auto_audio_sink_find_best (GstAutoAudioSink * sink)
GstCaps *el_caps = NULL;
gboolean no_match = TRUE;
- list = gst_registry_feature_filter (gst_registry_get_default (),
+ list = gst_registry_feature_filter (gst_registry_get (),
(GstPluginFeatureFilter) gst_auto_audio_sink_factory_filter, FALSE, sink);
list = g_list_sort (list, (GCompareFunc) gst_auto_audio_sink_compare_ranks);
diff --git a/gst/autodetect/gstautoaudiosrc.c b/gst/autodetect/gstautoaudiosrc.c
index f62f60b74..fce9d66f8 100644
--- a/gst/autodetect/gstautoaudiosrc.c
+++ b/gst/autodetect/gstautoaudiosrc.c
@@ -242,7 +242,7 @@ gst_auto_audio_src_find_best (GstAutoAudioSrc * src)
GstCaps *el_caps = NULL;
gboolean no_match = TRUE;
- list = gst_registry_feature_filter (gst_registry_get_default (),
+ list = gst_registry_feature_filter (gst_registry_get (),
(GstPluginFeatureFilter) gst_auto_audio_src_factory_filter, FALSE, src);
list = g_list_sort (list, (GCompareFunc) gst_auto_audio_src_compare_ranks);
diff --git a/gst/autodetect/gstautovideosink.c b/gst/autodetect/gstautovideosink.c
index 9921c7972..0557f0a6d 100644
--- a/gst/autodetect/gstautovideosink.c
+++ b/gst/autodetect/gstautovideosink.c
@@ -238,7 +238,7 @@ gst_auto_video_sink_find_best (GstAutoVideoSink * sink)
GstCaps *el_caps = NULL;
gboolean no_match = TRUE;
- list = gst_registry_feature_filter (gst_registry_get_default (),
+ list = gst_registry_feature_filter (gst_registry_get (),
(GstPluginFeatureFilter) gst_auto_video_sink_factory_filter, FALSE, sink);
list = g_list_sort (list, (GCompareFunc) gst_auto_video_sink_compare_ranks);
diff --git a/gst/autodetect/gstautovideosrc.c b/gst/autodetect/gstautovideosrc.c
index 350410a10..84dfea60e 100644
--- a/gst/autodetect/gstautovideosrc.c
+++ b/gst/autodetect/gstautovideosrc.c
@@ -241,7 +241,7 @@ gst_auto_video_src_find_best (GstAutoVideoSrc * src)
GstCaps *el_caps = NULL;
gboolean no_match = TRUE;
- list = gst_registry_feature_filter (gst_registry_get_default (),
+ list = gst_registry_feature_filter (gst_registry_get (),
(GstPluginFeatureFilter) gst_auto_video_src_factory_filter, FALSE, src);
list = g_list_sort (list, (GCompareFunc) gst_auto_video_src_compare_ranks);
diff --git a/gst/rtsp/gstrtspext.c b/gst/rtsp/gstrtspext.c
index 638ffdd45..b4cc8f971 100644
--- a/gst/rtsp/gstrtspext.c
+++ b/gst/rtsp/gstrtspext.c
@@ -76,7 +76,7 @@ gst_rtsp_ext_list_init (void)
GST_DEBUG_CATEGORY_INIT (rtspext_debug, "rtspext", 0, "RTSP extension");
/* get a list of all extensions */
- extensions = gst_registry_feature_filter (gst_registry_get_default (),
+ extensions = gst_registry_feature_filter (gst_registry_get (),
(GstPluginFeatureFilter) gst_rtsp_ext_list_filter, FALSE, NULL);
}