mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
flacparse: declare unparsed input and parsed output
This commit is contained in:
parent
d283a44302
commit
a18863c8ec
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue