_peer_get_caps() -> _peer_query_caps()
authorWim Taymans <wim.taymans@collabora.co.uk>
Tue, 15 Nov 2011 16:24:07 +0000 (17:24 +0100)
committerWim Taymans <wim.taymans@collabora.co.uk>
Tue, 15 Nov 2011 16:24:07 +0000 (17:24 +0100)
ext/assrender/gstassrender.c
gst/audiovisualizers/gstbaseaudiovisualizer.c
gst/dvbsuboverlay/gstdvbsuboverlay.c
gst/dvdspu/gstdvdspu.c

index a5bc22b59648069b95feb5a39fa623406f99a497..a999e312e0b19ed57dd2aab05dbbe1b8e5acb301 100644 (file)
@@ -438,7 +438,7 @@ gst_ass_render_getcaps (GstPad * pad, GstCaps * filter)
     otherpad = render->srcpad;
 
   /* we can do what the peer can */
-  caps = gst_pad_peer_get_caps (otherpad, filter);
+  caps = gst_pad_peer_query_caps (otherpad, filter);
   if (caps) {
     GstCaps *temp;
     const GstCaps *templ;
index 108169be72919fb5f51edbc23173a37d2039da01..b45e2feb568949eeefbe2c808c369b49c26aa98a 100644 (file)
@@ -697,7 +697,7 @@ gst_base_audio_visualizer_src_negotiate (GstBaseAudioVisualizer * scope)
   GST_DEBUG_OBJECT (scope, "performing negotiation");
 
   /* see what the peer can do */
-  othercaps = gst_pad_peer_get_caps (scope->srcpad, NULL);
+  othercaps = gst_pad_peer_query_caps (scope->srcpad, NULL);
   if (othercaps) {
     target = gst_caps_intersect (othercaps, templ);
     gst_caps_unref (othercaps);
index a0948daf35087f586979be51acb8fba0ecb8d4d5..346a312238043d459841e060b6c5eac9944cf7d5 100644 (file)
@@ -405,7 +405,7 @@ gst_dvbsub_overlay_getcaps (GstPad * pad, GstCaps * filter)
     otherpad = render->srcpad;
 
   /* we can do what the peer can */
-  caps = gst_pad_peer_get_caps (otherpad, filter);
+  caps = gst_pad_peer_query_caps (otherpad, filter);
   if (caps) {
     GstCaps *temp;
     const GstCaps *templ;
index f6e59f75ac44cae5c9f1382f3cb2ec86a292a0b9..c8c01683995c7e1519ff549b6146b169c6618852 100644 (file)
@@ -352,7 +352,7 @@ gst_dvd_spu_video_proxy_getcaps (GstPad * pad, GstCaps * filter)
    * subpicture sink pad */
   otherpad = (pad == dvdspu->srcpad) ? dvdspu->videosinkpad : dvdspu->srcpad;
 
-  caps = gst_pad_peer_get_caps (otherpad, filter);
+  caps = gst_pad_peer_query_caps (otherpad, filter);
   if (caps) {
     GstCaps *temp;
     const GstCaps *templ;