summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmirl <schmirl>2010-07-20 06:24:04 +0000
committerschmirl <schmirl>2010-07-20 06:24:04 +0000
commitab4fc57879cc3c61be44605280aa98e2ba928ffe (patch)
treec958e2a9b2ff381e303ead578c1af9570b46b3ed
parentfa578940f7770876d884093a57f657b03213cea3 (diff)
downloadvdr-plugin-streamdev-ab4fc57879cc3c61be44605280aa98e2ba928ffe.tar.gz
vdr-plugin-streamdev-ab4fc57879cc3c61be44605280aa98e2ba928ffe.tar.bz2
- set externremux.sh executable in distribution archive
- externremux quality value should be wlan54, not wlan45
-rw-r--r--CONTRIBUTORS3
-rw-r--r--HISTORY5
-rwxr-xr-xstreamdev/externremux.sh2
3 files changed, 9 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 6afa95f..362ef27 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -123,3 +123,6 @@ lhanisch
carel
for helping to find a way to cleanly shutdown externremux with mencoder
+
+wolfi.m
+ for reporting a typo in externermux quality parameter value
diff --git a/HISTORY b/HISTORY
index 8a65ea8..e1eef1a 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,11 @@
VDR Plugin 'streamdev' Revision History
---------------------------------------
+2010-07-20: Version 0.4.0a
+
+- set externremux.sh executable in distribution archive
+- externremux quality value should be wlan54, not wlan45
+
2010-07-19: Version 0.4.0
- using SIGINT in externremux to kill mencoder works better than SIGTERM;
diff --git a/streamdev/externremux.sh b/streamdev/externremux.sh
index f198382..a18f0d0 100755
--- a/streamdev/externremux.sh
+++ b/streamdev/externremux.sh
@@ -247,7 +247,7 @@ case "$QUALITY" in
DSL6000|dsl6000) VBR=378; ABR=32; WIDTH=320;;
DSL16000|dsl16000) VBR=512; ABR=32; WIDTH=480;;
WLAN11|wlan11) VBR=768; ABR=64; WIDTH=640;;
- WLAN45|wlan45) VBR=2048; ABR=128; WIDTH=;;
+ WLAN54|wlan54) VBR=2048; ABR=128; WIDTH=;;
LAN10|lan10) VBR=4096; ABR=; WIDTH=;;
*) error "Unknown quality '$QUALITY'";;
esac