summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2001-08-25 02:19:20 +0000
committerAndy Wingo <wingo@pobox.com>2001-08-25 02:19:20 +0000
commit351d18658181c8fdb51fc9588ad5b0c0c8a8b12d (patch)
treef82fd74715ff944b8aaee797dc20f52e9e9d6eb8 /include
parent1d7203ab8335fa7c3bf5219e86bc96a2fe4afbb6 (diff)
downloadgstreamer-351d18658181c8fdb51fc9588ad5b0c0c8a8b12d.tar.gz
changed speed to be loop-based, work with floats as well as gint8 and gint16, mono only now though added speed demo a...
Original commit message from CVS: * changed speed to be loop-based, work with floats as well as gint8 and gint16, mono only now though * added speed demo app in the test directory. try it, it's really neat. * fixed minor bugs in passthrough and gstaudio.h. don't worry, it does build ;)
Diffstat (limited to 'include')
-rw-r--r--include/gstaudio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/gstaudio.h b/include/gstaudio.h
index f756a35674..a661159eab 100644
--- a/include/gstaudio.h
+++ b/include/gstaudio.h
@@ -52,8 +52,8 @@
GST_PROPS_BOOLEAN (TRUE),\
GST_PROPS_BOOLEAN(FALSE)\
),\
- "width", GST_PROPS_INT_RANGE (8, 16),\
- "depth", GST_PROPS_INT_RANGE (8, 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 (4000, 96000),\
"channels", GST_PROPS_INT_RANGE (1, G_MAXINT),\
NULL)
@@ -67,8 +67,8 @@
GST_PROPS_BOOLEAN (TRUE),\
GST_PROPS_BOOLEAN(FALSE)\
),\
- "width", GST_PROPS_INT_RANGE (8, 16),\
- "depth", GST_PROPS_INT_RANGE (8, 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 (4000, 96000),\
"channels", GST_PROPS_INT (1),\
NULL)