_peer_get_caps() -> _peer_query_caps()
authorWim Taymans <wim.taymans@collabora.co.uk>
Tue, 15 Nov 2011 16:29:45 +0000 (17:29 +0100)
committerWim Taymans <wim.taymans@collabora.co.uk>
Tue, 15 Nov 2011 17:04:44 +0000 (18:04 +0100)
14 files changed:
ext/jpeg/gstjpegenc.c
ext/pulse/pulseaudiosink.c
ext/pulse/pulsesrc.c
gst/goom/gstgoom.c
gst/law/alaw-decode.c
gst/law/alaw-encode.c
gst/law/mulaw-decode.c
gst/law/mulaw-encode.c
gst/rtp/gstrtpg726pay.c
gst/rtp/gstrtph263ppay.c
gst/rtp/gstrtph264pay.c
gst/rtpmanager/gstrtpjitterbuffer.c
gst/shapewipe/gstshapewipe.c
sys/v4l2/gstv4l2src.c

index c25e392..f622e4c 100644 (file)
@@ -305,7 +305,7 @@ gst_jpegenc_getcaps (GstPad * pad, GstCaps * filter)
   /* we want to proxy properties like width, height and framerate from the
      other end of the element */
 
-  othercaps = gst_pad_peer_get_caps (jpegenc->srcpad, filter);
+  othercaps = gst_pad_peer_query_caps (jpegenc->srcpad, filter);
   if (othercaps == NULL ||
       gst_caps_is_empty (othercaps) || gst_caps_is_any (othercaps)) {
     caps = gst_caps_copy (gst_pad_get_pad_template_caps (pad));
index aafb7e4..d25da32 100644 (file)
@@ -606,7 +606,7 @@ out:
 static void
 update_eac3_alignment (GstPulseAudioSink * pbin)
 {
-  GstCaps *caps = gst_pad_peer_get_caps (pbin->sinkpad, NULL);
+  GstCaps *caps = gst_pad_peer_query_caps (pbin->sinkpad, NULL);
   GstStructure *st;
 
   if (!caps)
index b92f902..59dc96e 100644 (file)
@@ -933,7 +933,7 @@ gst_pulsesrc_negotiate (GstBaseSrc * basesrc)
     goto no_nego_needed;
 
   /* get the peer caps */
-  peercaps = gst_pad_peer_get_caps (GST_BASE_SRC_PAD (basesrc), NULL);
+  peercaps = gst_pad_peer_query_caps (GST_BASE_SRC_PAD (basesrc), NULL);
   GST_DEBUG_OBJECT (basesrc, "caps of peer: %" GST_PTR_FORMAT, peercaps);
   if (peercaps) {
     /* get intersection */
index 3fc283c..3df55a3 100644 (file)
@@ -254,7 +254,7 @@ gst_goom_src_negotiate (GstGoom * goom)
   GST_DEBUG_OBJECT (goom, "performing negotiation");
 
   /* see what the peer can do */
-  othercaps = gst_pad_peer_get_caps (goom->srcpad, NULL);
+  othercaps = gst_pad_peer_query_caps (goom->srcpad, NULL);
   if (othercaps) {
     target = gst_caps_intersect (othercaps, templ);
     gst_caps_unref (othercaps);
index 040f512..7dbb3f9 100644 (file)
@@ -166,7 +166,7 @@ gst_alaw_dec_getcaps (GstPad * pad, GstCaps * filter)
     otherpad = alawdec->srcpad;
   }
   /* get caps from the peer, this can return NULL when there is no peer */
-  othercaps = gst_pad_peer_get_caps (otherpad, filter);
+  othercaps = gst_pad_peer_query_caps (otherpad, filter);
 
   /* get the template caps to make sure we return something acceptable */
   templ = gst_pad_get_pad_template_caps (pad);
index 7767b11..8fc4978 100644 (file)
@@ -318,7 +318,7 @@ gst_alaw_enc_getcaps (GstPad * pad, GstCaps * filter)
     otherpad = alawenc->srcpad;
   }
   /* get caps from the peer, this can return NULL when there is no peer */
-  othercaps = gst_pad_peer_get_caps (otherpad, filter);
+  othercaps = gst_pad_peer_query_caps (otherpad, filter);
 
   /* get the template caps to make sure we return something acceptable */
   templ = gst_pad_get_pad_template_caps (pad);
index a50d8bf..e977c54 100644 (file)
@@ -109,7 +109,7 @@ mulawdec_getcaps (GstPad * pad, GstCaps * filter)
     otherpad = mulawdec->srcpad;
   }
   /* get caps from the peer, this can return NULL when there is no peer */
-  othercaps = gst_pad_peer_get_caps (otherpad, filter);
+  othercaps = gst_pad_peer_query_caps (otherpad, filter);
 
   /* get the template caps to make sure we return something acceptable */
   templ = gst_pad_get_pad_template_caps (pad);
index 7502197..83019db 100644 (file)
@@ -73,7 +73,7 @@ mulawenc_getcaps (GstPad * pad, GstCaps * filter)
     otherpad = mulawenc->srcpad;
   }
   /* get caps from the peer, this can return NULL when there is no peer */
-  othercaps = gst_pad_peer_get_caps (otherpad, filter);
+  othercaps = gst_pad_peer_query_caps (otherpad, filter);
 
   /* get the template caps to make sure we return something acceptable */
   templ = gst_pad_get_pad_template_caps (pad);
index 480f0a7..3939375 100644 (file)
@@ -181,7 +181,7 @@ gst_rtp_g726_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
   GST_DEBUG_OBJECT (payload, "selected base encoding %s", encoding_name);
 
   /* now see if we need to produce AAL2 or not */
-  peercaps = gst_pad_peer_get_caps (payload->srcpad, NULL);
+  peercaps = gst_pad_peer_query_caps (payload->srcpad, NULL);
   if (peercaps) {
     GstCaps *filter, *intersect;
     gchar *capsstr;
index acc3fba..50e2029 100644 (file)
@@ -182,7 +182,7 @@ gst_rtp_h263p_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
   g_return_val_if_fail (gst_caps_is_fixed (caps), FALSE);
 
   peercaps =
-      gst_pad_peer_get_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), NULL);
+      gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), NULL);
   if (peercaps) {
     GstCaps *intersect = gst_caps_intersect (peercaps,
         gst_pad_get_pad_template_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload)));
@@ -241,7 +241,7 @@ gst_rtp_h263p_pay_sink_getcaps (GstRTPBasePayload * payload, GstPad * pad,
   rtph263ppay = GST_RTP_H263P_PAY (payload);
 
   peercaps =
-      gst_pad_peer_get_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), filter);
+      gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), filter);
   if (!peercaps)
     return
         gst_caps_copy (gst_pad_get_pad_template_caps
index fcb826b..9ad4624 100644 (file)
@@ -270,7 +270,7 @@ gst_rtp_h264_pay_getcaps (GstRTPBasePayload * payload, GstPad * pad,
   GstCaps *allowed_caps;
 
   allowed_caps =
-      gst_pad_peer_get_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), filter);
+      gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), filter);
 
   if (allowed_caps) {
     GstCaps *caps = NULL;
index ffaa4db..e814f32 100644 (file)
@@ -727,7 +727,7 @@ gst_rtp_jitter_buffer_getcaps (GstPad * pad, GstCaps * filter)
 
   other = (pad == priv->srcpad ? priv->sinkpad : priv->srcpad);
 
-  caps = gst_pad_peer_get_caps (other, filter);
+  caps = gst_pad_peer_query_caps (other, filter);
 
   templ = gst_pad_get_pad_template_caps (pad);
   if (caps == NULL) {
index f344fab..e3667a7 100644 (file)
@@ -330,7 +330,7 @@ gst_shape_wipe_video_sink_getcaps (GstPad * pad, GstCaps * filter)
   if (gst_pad_has_current_caps (pad))
     return gst_pad_get_current_caps (pad);
 
-  tmp = gst_pad_peer_get_caps (self->srcpad, NULL);
+  tmp = gst_pad_peer_query_caps (self->srcpad, NULL);
   if (tmp) {
     ret = gst_caps_intersect (tmp, gst_pad_get_pad_template_caps (pad));
     gst_caps_unref (tmp);
@@ -343,7 +343,7 @@ gst_shape_wipe_video_sink_getcaps (GstPad * pad, GstCaps * filter)
   if (gst_caps_is_empty (ret))
     goto done;
 
-  tmp = gst_pad_peer_get_caps (pad, NULL);
+  tmp = gst_pad_peer_query_caps (pad, NULL);
 
   GST_LOG_OBJECT (pad, "peerpad accepted caps: %" GST_PTR_FORMAT, tmp);
   if (tmp) {
@@ -372,7 +372,7 @@ gst_shape_wipe_video_sink_getcaps (GstPad * pad, GstCaps * filter)
     }
   }
 
-  tmp = gst_pad_peer_get_caps (self->mask_sinkpad, NULL);
+  tmp = gst_pad_peer_query_caps (self->mask_sinkpad, NULL);
 
   GST_LOG_OBJECT (pad, "mask accepted caps: %" GST_PTR_FORMAT, tmp);
   if (tmp) {
@@ -456,7 +456,7 @@ gst_shape_wipe_mask_sink_getcaps (GstPad * pad, GstCaps * filter)
   if (gst_pad_has_current_caps (pad))
     return gst_pad_get_current_caps (pad);
 
-  tmp = gst_pad_peer_get_caps (self->video_sinkpad, NULL);
+  tmp = gst_pad_peer_query_caps (self->video_sinkpad, NULL);
   if (tmp) {
     ret =
         gst_caps_intersect (tmp,
@@ -471,7 +471,7 @@ gst_shape_wipe_mask_sink_getcaps (GstPad * pad, GstCaps * filter)
   if (gst_caps_is_empty (ret))
     goto done;
 
-  tmp = gst_pad_peer_get_caps (self->srcpad, NULL);
+  tmp = gst_pad_peer_query_caps (self->srcpad, NULL);
   GST_LOG_OBJECT (pad, "srcpad accepted caps: %" GST_PTR_FORMAT, ret);
 
   if (tmp) {
@@ -512,7 +512,7 @@ gst_shape_wipe_mask_sink_getcaps (GstPad * pad, GstCaps * filter)
   }
   gst_caps_append (ret, tmp);
 
-  tmp = gst_pad_peer_get_caps (pad, NULL);
+  tmp = gst_pad_peer_query_caps (pad, NULL);
   GST_LOG_OBJECT (pad, "peer accepted caps: %" GST_PTR_FORMAT, tmp);
 
   if (tmp) {
@@ -543,7 +543,7 @@ gst_shape_wipe_src_getcaps (GstPad * pad, GstCaps * filter)
   else if (gst_pad_has_current_caps (self->video_sinkpad))
     return gst_pad_get_current_caps (self->video_sinkpad);
 
-  tmp = gst_pad_peer_get_caps (self->video_sinkpad, NULL);
+  tmp = gst_pad_peer_query_caps (self->video_sinkpad, NULL);
   if (tmp) {
     ret =
         gst_caps_intersect (tmp,
@@ -558,7 +558,7 @@ gst_shape_wipe_src_getcaps (GstPad * pad, GstCaps * filter)
   if (gst_caps_is_empty (ret))
     goto done;
 
-  tmp = gst_pad_peer_get_caps (pad, NULL);
+  tmp = gst_pad_peer_query_caps (pad, NULL);
   GST_LOG_OBJECT (pad, "peer accepted caps: %" GST_PTR_FORMAT, ret);
   if (tmp) {
     GstCaps *intersection;
@@ -586,7 +586,7 @@ gst_shape_wipe_src_getcaps (GstPad * pad, GstCaps * filter)
     }
   }
 
-  tmp = gst_pad_peer_get_caps (self->mask_sinkpad, NULL);
+  tmp = gst_pad_peer_query_caps (self->mask_sinkpad, NULL);
   GST_LOG_OBJECT (pad, "mask sink accepted caps: %" GST_PTR_FORMAT, ret);
   if (tmp) {
     GstCaps *intersection, *tmp2;
index 5912ff5..e2464f5 100644 (file)
@@ -327,7 +327,7 @@ gst_v4l2src_negotiate (GstBaseSrc * basesrc)
     goto no_nego_needed;
 
   /* get the peer caps */
-  peercaps = gst_pad_peer_get_caps (GST_BASE_SRC_PAD (basesrc), thiscaps);
+  peercaps = gst_pad_peer_query_caps (GST_BASE_SRC_PAD (basesrc), thiscaps);
   GST_DEBUG_OBJECT (basesrc, "caps of peer: %" GST_PTR_FORMAT, peercaps);
   LOG_CAPS (basesrc, peercaps);
   if (peercaps && !gst_caps_is_any (peercaps)) {