diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-02-26 16:14:32 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-02-26 16:14:32 +0100 |
commit | 57613055fa410f93af53f0f513202d42b7c70934 (patch) | |
tree | 4fecd60fe50077737c21baada0e28904b8c17bd2 /bin/recv-gst-rtp-v-a | |
parent | 7e3e87bc3cd62761724a0d62d73ef7590fb8e330 (diff) |
Use variable SINK (not PLAYBIN).
Diffstat (limited to 'bin/recv-gst-rtp-v-a')
-rwxr-xr-x | bin/recv-gst-rtp-v-a | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/recv-gst-rtp-v-a b/bin/recv-gst-rtp-v-a index 77fbdb5..d68d3ce 100755 --- a/bin/recv-gst-rtp-v-a +++ b/bin/recv-gst-rtp-v-a @@ -41,11 +41,11 @@ esac stream() { ID=$1 CAPS=$2 - PLAYBIN=$3 + SINK=$3 echo \ udpsrc port=$((5000+ID-1)) $RECHOST caps=\""$CAPS"\" \ ! rtpbin."recv_rtp_sink_$ID" rtpbin. \ - ! $PLAYBIN \ + ! $SINK \ udpsrc port=$((5010+ID-1)) $RECHOST \ ! rtpbin."recv_rtcp_sink_$ID" \ rtpbin."send_rtcp_src_$ID" \ |