summaryrefslogtreecommitdiffstats
path: root/tests/examples/rtp/server-alsasrc-PCMA.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examples/rtp/server-alsasrc-PCMA.sh')
-rwxr-xr-xtests/examples/rtp/server-alsasrc-PCMA.sh33
1 files changed, 29 insertions, 4 deletions
diff --git a/tests/examples/rtp/server-alsasrc-PCMA.sh b/tests/examples/rtp/server-alsasrc-PCMA.sh
index 202e156a..82705bf9 100755
--- a/tests/examples/rtp/server-alsasrc-PCMA.sh
+++ b/tests/examples/rtp/server-alsasrc-PCMA.sh
@@ -1,10 +1,35 @@
#!/bin/sh
#
# A simple RTP server
+# sends the output of alsasrc as alaw encoded RTP on port 5002, RTCP is sent on
+# port 5003. The destination is 127.0.0.1.
+# the receiver RTCP reports are received on port 5007
#
+# .-------. .-------. .-------. .----------. .-------.
+# |alsasrc| |alawenc| |pcmapay| | rtpbin | |udpsink| RTP
+# | src->sink src->sink src->send_rtp send_rtp->sink | port=5002
+# '-------' '-------' '-------' | | '-------'
+# | |
+# | | .-------.
+# | | |udpsink| RTCP
+# | send_rtcp->sink | port=5003
+# .-------. | | '-------' sync=false
+# RTCP |udpsrc | | | async=false
+# port=5007 | src->recv_rtcp |
+# '-------' '----------'
+
+# change this to send the RTP data and RTCP to another host
+DEST=127.0.0.1
+
+#AELEM=alsasrc
+AELEM=audiotestsrc
+
+# PCMA encode from an the source
+ASOURCE="$AELEM ! audioconvert"
+AENC="alawenc ! rtppcmapay"
gst-launch -v gstrtpbin name=rtpbin \
- alsasrc ! alawenc ! rtppcmapay ! rtpbin.send_rtp_sink_0 \
- rtpbin.send_rtp_src_0 ! udpsink port=5000 \
- rtpbin.send_rtcp_src_0 ! udpsink port=5001 sync=false async=false \
- udpsrc port=5003 ! rtpbin.recv_rtcp_sink_0
+ $ASOURCE ! $AENC ! rtpbin.send_rtp_sink_0 \
+ rtpbin.send_rtp_src_0 ! udpsink port=5002 host=$DEST \
+ rtpbin.send_rtcp_src_0 ! udpsink port=5003 host=$DEST sync=false async=false \
+ udpsrc port=5007 ! rtpbin.recv_rtcp_sink_0