mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ext/alsa/gstalsasrc.c: Add 32 bps to template caps and increase channels range from [1,2] to [1,MAX]. See #346326.
Original commit message from CVS: Patch by: Michael Sheldon <webmaster at mikeasoft com> * ext/alsa/gstalsasrc.c: Add 32 bps to template caps and increase channels range from [1,2] to [1,MAX]. See #346326.
This commit is contained in:
parent
31667522ec
commit
1df142aa5e
3 changed files with 17 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-07-02 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
Patch by: Michael Sheldon <webmaster at mikeasoft com>
|
||||
|
||||
* ext/alsa/gstalsasrc.c:
|
||||
Add 32 bps to template caps and increase channels range
|
||||
from [1,2] to [1,MAX]. See #346326.
|
||||
|
||||
2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 123195d3bbcc0b6e1cf867d3a180685f8766a0be
|
||||
Subproject commit 2cd1cf860cd15e61827c0f5f1db96f877344c722
|
|
@ -114,16 +114,22 @@ static GstStaticPadTemplate alsasrc_src_factory =
|
|||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw-int, "
|
||||
"endianness = (int) { " ALSA_SRC_FACTORY_ENDIANNESS " }, "
|
||||
"signed = (boolean) { TRUE, FALSE }, "
|
||||
"width = (int) 32, "
|
||||
"depth = (int) 32, "
|
||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, MAX ]; "
|
||||
"audio/x-raw-int, "
|
||||
"endianness = (int) { " ALSA_SRC_FACTORY_ENDIANNESS " }, "
|
||||
"signed = (boolean) { TRUE, FALSE }, "
|
||||
"width = (int) 16, "
|
||||
"depth = (int) 16, "
|
||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]; "
|
||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, MAX ]; "
|
||||
"audio/x-raw-int, "
|
||||
"signed = (boolean) { TRUE, FALSE }, "
|
||||
"width = (int) 8, "
|
||||
"depth = (int) 8, "
|
||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]")
|
||||
"rate = (int) [ 1, MAX ], " "channels = (int) [ 1, MAX ]")
|
||||
);
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue