wavenc supports 8 bits too

Original commit message from CVS:
wavenc supports 8 bits too
This commit is contained in:
Ronald S. Bultje 2003-05-13 12:26:51 +00:00
parent 453d871f36
commit 8f25f8971d
2 changed files with 9 additions and 3 deletions

2
common

@ -1 +1 @@
Subproject commit c5d7301d645fbee2881c30e86152cb3d2152e33b
Subproject commit 5cca5ddc23e23658e8287f7c2fbc4aebddaf3e12

View file

@ -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)
)