From af308ac04de83d55b117090696d04bb3c9214cd5 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 28 Feb 2012 16:16:22 +0100 Subject: [PATCH] videofilter: fix some comments --- gst-libs/gst/video/gstvideofilter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst-libs/gst/video/gstvideofilter.c b/gst-libs/gst/video/gstvideofilter.c index 1b03c7ab92..c42ddcfbff 100644 --- a/gst-libs/gst/video/gstvideofilter.c +++ b/gst-libs/gst/video/gstvideofilter.c @@ -50,8 +50,7 @@ GST_DEBUG_CATEGORY_STATIC (gst_video_filter_debug); G_DEFINE_ABSTRACT_TYPE (GstVideoFilter, gst_video_filter, GST_TYPE_BASE_TRANSFORM); -/* Answer the allocation query downstream. This is only called for - * non-passthrough cases */ +/* Answer the allocation query downstream. */ static gboolean gst_video_filter_propose_allocation (GstBaseTransform * trans, gboolean passthrough, GstQuery * query) @@ -63,6 +62,7 @@ gst_video_filter_propose_allocation (GstBaseTransform * trans, gboolean need_pool; guint size; + /* we're passthrough, let the parent implementation hande things */ if (passthrough) return GST_BASE_TRANSFORM_CLASS (parent_class)->propose_allocation (trans, passthrough, query); @@ -106,7 +106,7 @@ config_failed: } /* configure the allocation query that was answered downstream, we can configure - * some properties on it. Only called in passthrough mode. */ + * some properties on it. Only called when not in passthrough mode. */ static gboolean gst_video_filter_decide_allocation (GstBaseTransform * trans, GstQuery * query) {