summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2017-05-21 23:14:01 +0200
committerJonas Smedegaard <dr@jones.dk>2017-05-21 23:14:01 +0200
commit205d88e2f87cd9728f23fc2cdac2487769e6bb21 (patch)
treebce4d515aed4a01b879793b33beaf806f79ae44b
parent346f5f904f17d51da838822782a6a0ad335449c5 (diff)
Fix if-elif-fi loop.
-rwxr-xr-xbin/stream2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/stream b/bin/stream
index 0bc99f6..60660f0 100755
--- a/bin/stream
+++ b/bin/stream
@@ -158,7 +158,7 @@ elif [ $BITS -le 61440 ]; then # 384x160 → 61440
VBITRATE=145000
SPEED_X264=fast; SPEED_X264_ALONE=fast
SPEED_VP8=3; SPEED_VP8_ALONE=2
-if [ $BITS -le 110592 ]; then # 234p → 97344
+elif [ $BITS -le 110592 ]; then # 234p → 97344
VBITRATE=145000
SPEED_X264=fast; SPEED_X264_ALONE=fast
SPEED_VP8=3; SPEED_VP8_ALONE=2