diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-11-15 16:55:27 +0100 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-11-15 18:04:44 +0100 |
commit | b2d508ac405fdb4a1f61bc91fb2ffc750737ad90 (patch) | |
tree | 657148a8f0b4e252a6f5d5325f027eaef2599e13 /gst/autodetect | |
parent | 75dc9634ebdf4c69d12afb5bc6176a1647f02feb (diff) |
update for _get_caps() -> _query_caps()
Diffstat (limited to 'gst/autodetect')
-rw-r--r-- | gst/autodetect/gstautoaudiosink.c | 2 | ||||
-rw-r--r-- | gst/autodetect/gstautoaudiosrc.c | 2 | ||||
-rw-r--r-- | gst/autodetect/gstautovideosink.c | 2 | ||||
-rw-r--r-- | gst/autodetect/gstautovideosrc.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/gst/autodetect/gstautoaudiosink.c b/gst/autodetect/gstautoaudiosink.c index 19cbca65d..65f79738e 100644 --- a/gst/autodetect/gstautoaudiosink.c +++ b/gst/autodetect/gstautoaudiosink.c @@ -261,7 +261,7 @@ gst_auto_audio_sink_find_best (GstAutoAudioSink * sink) * accept only sinks that match with the filter caps */ if (sink->filter_caps) { el_pad = gst_element_get_static_pad (GST_ELEMENT (el), "sink"); - el_caps = gst_pad_get_caps (el_pad, NULL); + el_caps = gst_pad_query_caps (el_pad, NULL); gst_object_unref (el_pad); GST_DEBUG_OBJECT (sink, "Checking caps: %" GST_PTR_FORMAT " vs. %" GST_PTR_FORMAT, diff --git a/gst/autodetect/gstautoaudiosrc.c b/gst/autodetect/gstautoaudiosrc.c index b46a88ccb..92eca0073 100644 --- a/gst/autodetect/gstautoaudiosrc.c +++ b/gst/autodetect/gstautoaudiosrc.c @@ -264,7 +264,7 @@ gst_auto_audio_src_find_best (GstAutoAudioSrc * src) * accept only sources that match with the filter caps */ if (src->filter_caps) { el_pad = gst_element_get_static_pad (GST_ELEMENT (el), "src"); - el_caps = gst_pad_get_caps (el_pad, NULL); + el_caps = gst_pad_query_caps (el_pad, NULL); gst_object_unref (el_pad); GST_DEBUG_OBJECT (src, "Checking caps: %" GST_PTR_FORMAT " vs. %" GST_PTR_FORMAT, diff --git a/gst/autodetect/gstautovideosink.c b/gst/autodetect/gstautovideosink.c index e5cfafea0..df01dda20 100644 --- a/gst/autodetect/gstautovideosink.c +++ b/gst/autodetect/gstautovideosink.c @@ -257,7 +257,7 @@ gst_auto_video_sink_find_best (GstAutoVideoSink * sink) * accept only sinks that match with the filter caps */ if (sink->filter_caps) { el_pad = gst_element_get_static_pad (GST_ELEMENT (el), "sink"); - el_caps = gst_pad_get_caps (el_pad, NULL); + el_caps = gst_pad_query_caps (el_pad, NULL); gst_object_unref (el_pad); GST_DEBUG_OBJECT (sink, "Checking caps: %" GST_PTR_FORMAT " vs. %" GST_PTR_FORMAT, diff --git a/gst/autodetect/gstautovideosrc.c b/gst/autodetect/gstautovideosrc.c index 202e887ae..626740d3b 100644 --- a/gst/autodetect/gstautovideosrc.c +++ b/gst/autodetect/gstautovideosrc.c @@ -260,7 +260,7 @@ gst_auto_video_src_find_best (GstAutoVideoSrc * src) * accept only sources that match with the filter caps */ if (src->filter_caps) { el_pad = gst_element_get_static_pad (GST_ELEMENT (el), "src"); - el_caps = gst_pad_get_caps (el_pad, NULL); + el_caps = gst_pad_query_caps (el_pad, NULL); gst_object_unref (el_pad); GST_DEBUG_OBJECT (src, "Checking caps: %" GST_PTR_FORMAT " vs. %" GST_PTR_FORMAT, |