gst-plugins-good: example: fix the variable name for the ip-address
Stefan Kost
ensonic at kemper.freedesktop.org
Tue Mar 1 12:39:04 PST 2011
Module: gst-plugins-good
Branch: master
Commit: 4e9daf0e494048939668402e220842f248058eb6
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-good/commit/?id=4e9daf0e494048939668402e220842f248058eb6
Author: Stefan Kost <ensonic at users.sf.net>
Date: Tue Mar 1 22:40:19 2011 +0200
example: fix the variable name for the ip-address
Fix the name in the launch pipeline and use a value of "localhost" by default.
---
.../examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh b/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh
index dd7fc89..d8c13a7 100755
--- a/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh
+++ b/tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh
@@ -11,14 +11,15 @@ VOFFSET=0
VCAPS="video/x-raw-yuv,width=352,height=288,framerate=15/1"
-DEST=192.168.1.126
+#DEST=192.168.1.126
+DEST=localhost
gst-launch -v gstrtpbin name=rtpbin \
v4l2src ! videorate ! ffmpegcolorspace ! $VCAPS ! ffenc_h263p ! rtph263ppay ! rtpbin.send_rtp_sink_0 \
- rtpbin.send_rtp_src_0 ! queue ! udpsink host=$HOST port=5000 ts-offset=$AOFFSET \
- rtpbin.send_rtcp_src_0 ! udpsink host=$HOST port=5001 sync=false async=false \
+ rtpbin.send_rtp_src_0 ! queue ! udpsink host=$DEST port=5000 ts-offset=$AOFFSET \
+ rtpbin.send_rtcp_src_0 ! udpsink host=$DEST port=5001 sync=false async=false \
udpsrc port=5005 ! rtpbin.recv_rtcp_sink_0 \
autoaudiosrc ! audioconvert ! amrnbenc ! rtpamrpay ! rtpbin.send_rtp_sink_1 \
- rtpbin.send_rtp_src_1 ! queue ! udpsink host=$HOST port=5002 ts-offset=$VOFFSET \
- rtpbin.send_rtcp_src_1 ! udpsink host=$HOST port=5003 sync=false async=false \
+ rtpbin.send_rtp_src_1 ! queue ! udpsink host=$DEST port=5002 ts-offset=$VOFFSET \
+ rtpbin.send_rtcp_src_1 ! udpsink host=$DEST port=5003 sync=false async=false \
udpsrc port=5007 ! rtpbin.recv_rtcp_sink_1
More information about the gstreamer-commits
mailing list