summaryrefslogtreecommitdiffstats
path: root/gst/law/alaw.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-07-06 20:49:52 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-07-06 20:49:52 +0000
commit292fec2a0bd1f221a46ad69c5100995d04c01057 (patch)
tree658db299e0e03b2454ff840730569d79539e67c4 /gst/law/alaw.c
parenta8183e9a3fa87cf4247c7df16207f440ea4069c0 (diff)
New mimetypes gone into effect today - this commit changes all old mimetypes over to the new mimetypes spec as descri...
Original commit message from CVS: New mimetypes gone into effect today - this commit changes all old mimetypes over to the new mimetypes spec as described in the previous commit's document. Note: some plugins will break, some pipelines will break, expect HEAD to be broken or at least not 100% working for a few days, but don't forget to report bugs
Diffstat (limited to 'gst/law/alaw.c')
-rw-r--r--gst/law/alaw.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/gst/law/alaw.c b/gst/law/alaw.c
index 1e0c5b8b..02479281 100644
--- a/gst/law/alaw.c
+++ b/gst/law/alaw.c
@@ -32,14 +32,11 @@ alaw_factory (void)
return
gst_caps_new (
"test_src",
- "audio/raw",
+ "audio/x-alaw",
gst_props_new (
- "format", GST_PROPS_STRING ("int"),
- "law", GST_PROPS_INT (2),
- "width", GST_PROPS_INT(8),
- "depth", GST_PROPS_INT(8),
- "signed", GST_PROPS_BOOLEAN(FALSE),
- NULL));
+ "rate", GST_PROPS_INT_RANGE (8000, 192000),
+ "channels", GST_PROPS_INT_RANGE (1, 2),
+ NULL));
}
static GstCaps*
@@ -48,14 +45,14 @@ linear_factory (void)
return
gst_caps_new (
"test_sink",
- "audio/raw",
+ "audio/x-raw-int",
gst_props_new (
- "format", GST_PROPS_STRING ("int"),
- "law", GST_PROPS_INT(0),
- "width", GST_PROPS_INT(16),
- "depth", GST_PROPS_INT(16),
- "endianness", GST_PROPS_INT(G_BYTE_ORDER),
- "signed", GST_PROPS_BOOLEAN(TRUE),
+ "width", GST_PROPS_INT(16),
+ "depth", GST_PROPS_INT(16),
+ "endianness", GST_PROPS_INT(G_BYTE_ORDER),
+ "signed", GST_PROPS_BOOLEAN(TRUE),
+ "rate", GST_PROPS_INT_RANGE (8000, 192000),
+ "channels", GST_PROPS_INT_RANGE (1, 2),
NULL));
}