summaryrefslogtreecommitdiffstats
path: root/tests/examples/rtp/client-H263p.sh
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-10-07 09:58:13 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-10-07 09:58:13 +0000
commita3dd91a4ae8c8bed8726179501331576d4c217c4 (patch)
tree82257eebc7c5c3b697d633a03bd86acb166fda1b /tests/examples/rtp/client-H263p.sh
parent927bf5c8e8cd490f37a59535edb21c7ed6ee0730 (diff)
tests/examples/rtp/: Add some more H263p server and client examples.
Original commit message from CVS: * tests/examples/rtp/client-H263p.sdp: * tests/examples/rtp/client-H263p.sh: * tests/examples/rtp/server-VTS-H263p.sh: Add some more H263p server and client examples.
Diffstat (limited to 'tests/examples/rtp/client-H263p.sh')
-rwxr-xr-xtests/examples/rtp/client-H263p.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/examples/rtp/client-H263p.sh b/tests/examples/rtp/client-H263p.sh
new file mode 100755
index 00000000..93684298
--- /dev/null
+++ b/tests/examples/rtp/client-H263p.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# A simple RTP receiver
+#
+
+VIDEO_CAPS="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H263-1998"
+
+#DEST=192.168.1.126
+DEST=localhost
+
+LATENCY=100
+
+gst-launch -v gstrtpbin name=rtpbin latency=$LATENCY \
+ udpsrc caps=$VIDEO_CAPS port=5000 ! rtpbin.recv_rtp_sink_0 \
+ rtpbin. ! rtph263pdepay ! ffdec_h263 ! xvimagesink \
+ udpsrc port=5001 ! rtpbin.recv_rtcp_sink_0 \
+ rtpbin.send_rtcp_src_0 ! udpsink host=$DEST port=5005 sync=false async=false