examples: fix indentation on rtp client example
authorThijs Vermeir <thijsvermeir@gmail.com>
Thu, 30 Sep 2010 09:34:56 +0000 (11:34 +0200)
committerThijs Vermeir <thijsvermeir@gmail.com>
Thu, 30 Sep 2010 09:38:38 +0000 (11:38 +0200)
tests/examples/rtp/client-H264.sh

index 7f098ed..db69aff 100755 (executable)
@@ -29,8 +29,8 @@ VIDEO_CAPS="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding
 # from another machine, change this address.
 DEST=127.0.0.1
 
-gst-launch -v gstrtpbin name=rtpbin                                                \
-          udpsrc caps=$VIDEO_CAPS port=5000 ! rtpbin.recv_rtp_sink_0              \
-                rtpbin. ! rtph264depay ! ffdec_h264 ! xvimagesink                 \
-           udpsrc port=5001 ! rtpbin.recv_rtcp_sink_0                              \
-         rtpbin.send_rtcp_src_0 ! udpsink port=5005 host=$DEST sync=false async=false
+gst-launch -v gstrtpbin name=rtpbin                                                 \
+    udpsrc caps=$VIDEO_CAPS port=5000 ! rtpbin.recv_rtp_sink_0                      \
+      rtpbin. ! rtph264depay ! ffdec_h264 ! xvimagesink                             \
+    udpsrc port=5001 ! rtpbin.recv_rtcp_sink_0                                      \
+      rtpbin.send_rtcp_src_0 ! udpsink port=5005 host=$DEST sync=false async=false