summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2013-01-11 18:40:14 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2013-01-11 18:40:14 -0500
commit8c05863f85469223192409f7852b2ce19f44fdfc (patch)
tree0b4095521515ca2770829e91f18366f2d1b4b486 /tests
parent31b5b16da88a0a9623981d1dbd8e08b989077a20 (diff)
downloadfarstream-8c05863f85469223192409f7852b2ce19f44fdfc.tar.gz
dtmfdetect has moved to spandsp
Diffstat (limited to 'tests')
-rw-r--r--tests/check/Makefile.am2
-rw-r--r--tests/check/rtp/sendcodecs.c5
2 files changed, 4 insertions, 3 deletions
diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am
index d56442e1..9b171b63 100644
--- a/tests/check/Makefile.am
+++ b/tests/check/Makefile.am
@@ -10,7 +10,7 @@ TESTS_ENVIRONMENT = \
CK_DEFAULT_TIMEOUT=120 \
STATE_IGNORE_ELEMENTS="$(STATE_IGNORE_ELEMENTS)" \
$(REGISTRY_ENVIRONMENT) \
- GST_PLUGIN_LOADING_WHITELIST=gstreamer:gst-plugins-base:gst-plugins-good:libnice:valve:siren:autoconvert:rtpmux:dtmf:mimic:shm:farstream@$(top_builddir)/gst \
+ GST_PLUGIN_LOADING_WHITELIST=gstreamer:gst-plugins-base:gst-plugins-good:libnice:valve:siren:autoconvert:rtpmux:dtmf:mimic:shm:spandsp:farstream@$(top_builddir)/gst \
GST_PLUGIN_PATH=$(top_builddir)/gst:${GST_PLUGIN_PATH} \
FS_PLUGIN_PATH=$(top_builddir)/transmitters/rawudp/.libs:$(top_builddir)/transmitters/multicast/.libs:$(top_builddir)/transmitters/nice/.libs:$(top_builddir)/transmitters/shm/.libs \
LD_LIBRARY_PATH=$(top_builddir)/farstream/.libs:${LD_LIBRARY_PATH} \
diff --git a/tests/check/rtp/sendcodecs.c b/tests/check/rtp/sendcodecs.c
index 9e398809..bd1a8d60 100644
--- a/tests/check/rtp/sendcodecs.c
+++ b/tests/check/rtp/sendcodecs.c
@@ -467,9 +467,10 @@ build_dtmf_sound_recv_pipeline (gint *port)
GstElement *src;
GstBus *bus;
- pipeline = gst_parse_launch (
+ pipeline = gst_parse_launch_full (
"udpsrc name=src caps=\"application/x-rtp, payload=0\" !"
- " rtppcmudepay ! mulawdec ! dtmfdetect ! fakesink sync=0", NULL);
+ " rtppcmudepay ! mulawdec ! dtmfdetect ! fakesink sync=0", NULL,
+ GST_PARSE_FLAG_FATAL_ERRORS, NULL);
fail_if (pipeline == NULL);
bus = gst_element_get_bus (pipeline);