summaryrefslogtreecommitdiff
path: root/kvmd/validators
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2021-11-25 06:37:32 +0300
committerMaxim Devaev <[email protected]>2021-11-25 06:37:32 +0300
commitb27b4f14919ef45195b4378f78a09a9983e3fd53 (patch)
treebfb2f94baf00283ae06188a9c758392067761fc7 /kvmd/validators
parent1551f34bf67c0989ca1c7658adb4996c081bbd31 (diff)
changed h264 range to actual values
Diffstat (limited to 'kvmd/validators')
-rw-r--r--kvmd/validators/kvm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/validators/kvm.py b/kvmd/validators/kvm.py
index 17614e12..347f468b 100644
--- a/kvmd/validators/kvm.py
+++ b/kvmd/validators/kvm.py
@@ -77,7 +77,7 @@ def valid_stream_resolution(arg: Any) -> str:
def valid_stream_h264_bitrate(arg: Any) -> int:
- return int(valid_number(arg, min=100, max=16000, name="stream H264 bitrate"))
+ return int(valid_number(arg, min=25, max=25000, name="stream H264 bitrate"))
def valid_stream_h264_gop(arg: Any) -> int: