summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2010-06-14 17:33:16 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2010-06-14 17:33:16 +0200
commit8e92cb4a7d56cdfa4674315c64b58c1b1b9d8208 (patch)
treedd61d3dda2dc47a20fcfef84b68c5b0c5600b015
parent7460321a600438966d7152ab2b4318be48eadce0 (diff)
pad: fix comment
-rw-r--r--gst/gstpad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstpad.c b/gst/gstpad.c
index e376857321..bb8dedaca1 100644
--- a/gst/gstpad.c
+++ b/gst/gstpad.c
@@ -2181,10 +2181,10 @@ gst_pad_get_caps_unlocked (GstPad * pad)
GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad, "get pad caps");
- /* If the parent element is in GST_STATE_NULL, return the template caps */
+ /* If the pad is not negotiable, return the template caps */
if (G_UNLIKELY (!GST_PAD_IS_NEGOTIABLE (pad) && GST_PAD_PAD_TEMPLATE (pad))) {
GST_CAT_DEBUG_OBJECT (GST_CAT_CAPS, pad,
- "parent element is in GST_STATE_NULL, using pad templates");
+ "pad is not negotiable, using pad template");
result = gst_caps_ref (GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad)));
goto done;
}