From a18863c8ecc717e8f0d82682ff72ce366fb7007c Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Tue, 5 Jan 2010 16:35:44 +0100 Subject: [PATCH] flacparse: declare unparsed input and parsed output --- gst/audioparsers/gstflacparse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/audioparsers/gstflacparse.c b/gst/audioparsers/gstflacparse.c index 741ad8f49a..0b55d35ce2 100644 --- a/gst/audioparsers/gstflacparse.c +++ b/gst/audioparsers/gstflacparse.c @@ -37,14 +37,14 @@ GST_DEBUG_CATEGORY_STATIC (flacparse_debug); static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS, - GST_STATIC_CAPS ("audio/x-flac, " + GST_STATIC_CAPS ("audio/x-flac, framed = (boolean) true, " "channels = (int) [ 1, 8 ], " "rate = (int) [ 1, 655350 ]") ); static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, - GST_STATIC_CAPS ("audio/x-flac") + GST_STATIC_CAPS ("audio/x-flac, framed = (boolean) false") ); static void gst_flac_parse_finalize (GObject * object);