summaryrefslogtreecommitdiff
path: root/tests/examples/rtp/client-H264-PCMA.sh
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2012-10-11 22:36:21 +0100
committerTim-Philipp Müller <tim@centricular.net>2012-10-11 22:36:21 +0100
commit3bbbcd266cfb853782cfcd5a247b8127e54e098e (patch)
tree5fb75da931e36c058d8c800c73cd8c0fd6be1e16 /tests/examples/rtp/client-H264-PCMA.sh
parentadb70e89f94a04197f40c66f45316b3ac18e591b (diff)
examples: update some element names for 1.0 in RTP examples
gstrtpbin -> rtpbin ffdec_* -> avdec_* ffenc_* -> avenc_*
Diffstat (limited to 'tests/examples/rtp/client-H264-PCMA.sh')
-rwxr-xr-xtests/examples/rtp/client-H264-PCMA.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/examples/rtp/client-H264-PCMA.sh b/tests/examples/rtp/client-H264-PCMA.sh
index e02db62ba..820d4e1cd 100755
--- a/tests/examples/rtp/client-H264-PCMA.sh
+++ b/tests/examples/rtp/client-H264-PCMA.sh
@@ -47,13 +47,13 @@ LATENCY=200
VIDEO_CAPS="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H264"
AUDIO_CAPS="application/x-rtp,media=(string)audio,clock-rate=(int)8000,encoding-name=(string)PCMA"
-VIDEO_DEC="rtph264depay ! ffdec_h264"
+VIDEO_DEC="rtph264depay ! avdec_h264"
AUDIO_DEC="rtppcmadepay ! alawdec"
VIDEO_SINK="videoconvert ! autovideosink"
AUDIO_SINK="audioconvert ! audioresample ! autoaudiosink"
-gst-launch-1.0 -v gstrtpbin name=rtpbin latency=$LATENCY \
+gst-launch-1.0 -v rtpbin name=rtpbin latency=$LATENCY \
udpsrc caps=$VIDEO_CAPS port=5000 ! rtpbin.recv_rtp_sink_0 \
rtpbin. ! $VIDEO_DEC ! $VIDEO_SINK \
udpsrc port=5001 ! rtpbin.recv_rtcp_sink_0 \