mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
audiotestsrc: Fix channel-mask handling
This commit is contained in:
parent
241de164ee
commit
2db0238450
1 changed files with 8 additions and 2 deletions
|
@ -84,13 +84,19 @@ enum
|
|||
#endif
|
||||
|
||||
static GstStaticPadTemplate gst_audio_test_src_src_template =
|
||||
GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw, "
|
||||
"format = (string) " FORMAT_STR ", "
|
||||
"layout = (string) interleaved, "
|
||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]")
|
||||
"rate = (int) [ 1, MAX ], "
|
||||
"channels = (int) 1; "
|
||||
"audio/x-raw, "
|
||||
"format = (string) " FORMAT_STR ", "
|
||||
"layout = (string) interleaved, "
|
||||
"rate = (int) [ 1, MAX ], "
|
||||
"channels = (int) 2, " "channel-mask = (bitmask) 0x3")
|
||||
);
|
||||
|
||||
#define gst_audio_test_src_parent_class parent_class
|
||||
|
|
Loading…
Reference in a new issue