From 2c6f8de51676eb34efcbe49f8cde28f726fc8388 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Wed, 3 Jul 2013 14:37:13 +1000 Subject: [PATCH] [764/906] filter: fix pad template caps upload is for the sink template download is form the src template --- gst-libs/gst/gl/gstglfilter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/gl/gstglfilter.c b/gst-libs/gst/gl/gstglfilter.c index 38d144c..31cceab 100644 --- a/gst-libs/gst/gl/gstglfilter.c +++ b/gst-libs/gst/gl/gstglfilter.c @@ -34,14 +34,14 @@ static GstStaticPadTemplate gst_gl_filter_src_pad_template = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS, - GST_STATIC_CAPS (GST_GL_UPLOAD_VIDEO_CAPS) + GST_STATIC_CAPS (GST_GL_DOWNLOAD_VIDEO_CAPS) ); static GstStaticPadTemplate gst_gl_filter_sink_pad_template = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, - GST_STATIC_CAPS (GST_GL_DOWNLOAD_VIDEO_CAPS) + GST_STATIC_CAPS (GST_GL_UPLOAD_VIDEO_CAPS) ); /* Properties */ -- 2.7.4