mirror of
https://github.com/gtxaspec/wz_mini_hacks.git
synced 2025-01-09 14:17:02 +00:00
imp_monitor.sh: adjust variables to match config vars
This commit is contained in:
parent
8bdd6aced6
commit
79ae1a1fd8
@ -14,9 +14,9 @@ check() {
|
|||||||
uTargetBitRate=$(echo "$output" | grep -A 32 "CHANNEL $i" | grep "uTargetBitRate" | awk -F '[=()]' '{print $2}' | xargs)
|
uTargetBitRate=$(echo "$output" | grep -A 32 "CHANNEL $i" | grep "uTargetBitRate" | awk -F '[=()]' '{print $2}' | xargs)
|
||||||
uMaxBitRate=$(echo "$output" | grep -A 32 "CHANNEL $i" | grep "uMaxBitRate" | awk -F '[=()]' '{print $2}' | xargs)
|
uMaxBitRate=$(echo "$output" | grep -A 32 "CHANNEL $i" | grep "uMaxBitRate" | awk -F '[=()]' '{print $2}' | xargs)
|
||||||
echo "Channel $i: rcMode=$rcMode, uTargetBitRate=$uTargetBitRate, uMaxBitRate=$uMaxBitRate"
|
echo "Channel $i: rcMode=$rcMode, uTargetBitRate=$uTargetBitRate, uMaxBitRate=$uMaxBitRate"
|
||||||
eval desired_rcMode=\$CH${i}_rcMode
|
eval desired_rcMode=\$VIDEO_${i}_ENC_PARAMETER
|
||||||
eval desired_uTargetBitRate=\$CH${i}_uTargetBitRate
|
eval desired_uTargetBitRate=\$VIDEO_${i}_TARGET_BITRATE
|
||||||
eval desired_uMaxBitRate=\$CH${i}_uMaxBitRate
|
eval desired_uMaxBitRate=\$VIDEO_${i}_MAX_BITRATE
|
||||||
if [ "$rcMode" != "$desired_rcMode" ]; then
|
if [ "$rcMode" != "$desired_rcMode" ]; then
|
||||||
echo "Channel $i: rcMode is different from desired value ($desired_rcMode)"
|
echo "Channel $i: rcMode is different from desired value ($desired_rcMode)"
|
||||||
exit_status=1
|
exit_status=1
|
||||||
@ -42,9 +42,9 @@ set_values() {
|
|||||||
uTargetBitRate=$(echo "$output" | grep -A 32 "CHANNEL $i" | grep "uTargetBitRate" | awk -F '[=()]' '{print $2}' | xargs)
|
uTargetBitRate=$(echo "$output" | grep -A 32 "CHANNEL $i" | grep "uTargetBitRate" | awk -F '[=()]' '{print $2}' | xargs)
|
||||||
uMaxBitRate=$(echo "$output" | grep -A 32 "CHANNEL $i" | grep "uMaxBitRate" | awk -F '[=()]' '{print $2}' | xargs)
|
uMaxBitRate=$(echo "$output" | grep -A 32 "CHANNEL $i" | grep "uMaxBitRate" | awk -F '[=()]' '{print $2}' | xargs)
|
||||||
|
|
||||||
eval desired_rcMode=\$CH${i}_rcMode
|
eval desired_rcMode=\$VIDEO_${i}_ENC_PARAMETER
|
||||||
eval desired_uTargetBitRate=\$CH${i}_uTargetBitRate
|
eval desired_uTargetBitRate=\$VIDEO_${i}_TARGET_BITRATE
|
||||||
eval desired_uMaxBitRate=\$CH${i}_uMaxBitRate
|
eval desired_uMaxBitRate=\$VIDEO_${i}_MAX_BITRATE
|
||||||
|
|
||||||
if [ "$rcMode" != "$desired_rcMode" ]; then
|
if [ "$rcMode" != "$desired_rcMode" ]; then
|
||||||
impdbg --enc_rc_s ${i}:44:4:$desired_rcMode
|
impdbg --enc_rc_s ${i}:44:4:$desired_rcMode
|
||||||
|
Loading…
Reference in New Issue
Block a user