mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
wavenc supports 8 bits too
Original commit message from CVS: wavenc supports 8 bits too
This commit is contained in:
parent
453d871f36
commit
8f25f8971d
2 changed files with 9 additions and 3 deletions
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit c5d7301d645fbee2881c30e86152cb3d2152e33b
|
||||
Subproject commit 5cca5ddc23e23658e8287f7c2fbc4aebddaf3e12
|
|
@ -85,8 +85,14 @@ GST_PAD_TEMPLATE_FACTORY (sink_factory,
|
|||
"law", GST_PROPS_INT (0),
|
||||
"endianness", GST_PROPS_INT (G_LITTLE_ENDIAN),
|
||||
"signed", GST_PROPS_BOOLEAN (TRUE),
|
||||
"width", GST_PROPS_INT (16),
|
||||
"depth", GST_PROPS_INT (16),
|
||||
"width", GST_PROPS_LIST (
|
||||
GST_PROPS_INT (8),
|
||||
GST_PROPS_INT (16)
|
||||
),
|
||||
"depth", GST_PROPS_LIST (
|
||||
GST_PROPS_INT (8),
|
||||
GST_PROPS_INT (16)
|
||||
),
|
||||
"rate", GST_PROPS_INT_RANGE (8000, 48000),
|
||||
"channels", GST_PROPS_INT_RANGE (1, 2)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue