From 3e40090dff94088e0be0781d21eede9b78338960 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Fri, 10 Mar 2017 15:19:25 +0100 Subject: Fail on unsupported video/audio format. --- bin/send-gst-rtp-v-a | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'bin/send-gst-rtp-v-a') diff --git a/bin/send-gst-rtp-v-a b/bin/send-gst-rtp-v-a index d068068..4fcbb61 100755 --- a/bin/send-gst-rtp-v-a +++ b/bin/send-gst-rtp-v-a @@ -43,6 +43,10 @@ case "$VFORMAT" in RAW|'') VENC="rtpvrawpay" ;; + *) + echo "ERROR: Unsupported video format: \"$VFORMAT\"" + exit 1 + ;; esac case "$AFORMAT" in @@ -55,6 +59,10 @@ case "$AFORMAT" in RAW|'') AENC="rtpL16pay" ;; + *) + echo "ERROR: Unsupported audio format: \"$AFORMAT\"" + exit 1 + ;; esac stream() { -- cgit v1.2.3