summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-10-30 12:29:14 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-10-30 13:47:26 +0000
commit2a755f15afe742b5bb2c1bf07d2b2c128d92e9d1 (patch)
treed800a1f97f2bd75670953787193ddfeb855861bd /tests
parent1905e95ceaf47a26dfc9c79f42e93e926c9f5e45 (diff)
lame: remove lame element, it's been superseded by lamemp3enc
Diffstat (limited to 'tests')
-rw-r--r--tests/check/pipelines/lame.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/check/pipelines/lame.c b/tests/check/pipelines/lame.c
index 943219b7e6..c9813bc85e 100644
--- a/tests/check/pipelines/lame.c
+++ b/tests/check/pipelines/lame.c
@@ -34,8 +34,8 @@ GST_START_TEST (test_format)
GError *error = NULL;
pipe_str = g_strdup_printf ("audiotestsrc num-buffers=1 "
- "! audio/x-raw-int, rate=22050, channels=1 "
- "! lame bitrate=24 mode=3 " "! audio/mpeg,rate=22050 ! fakesink");
+ "! audio/x-raw, rate=22050, channels=1 "
+ "! lamemp3enc bitrate=24 ! audio/mpeg,rate=22050 ! fakesink");
bin = gst_parse_launch (pipe_str, &error);
fail_unless (bin != NULL, "Error parsing pipeline: %s",
@@ -74,7 +74,7 @@ GST_START_TEST (test_caps_proxy)
GError *error = NULL;
pipe_str = g_strdup_printf ("audiotestsrc num-buffers=1 "
- "! audio/x-raw-int,rate=48000,channels=1 "
+ "! audio/x-raw,rate=48000,channels=1 "
"! audioresample "
"! lamemp3enc ! audio/mpeg,rate=(int){22050,44100} ! fakesink");