summaryrefslogtreecommitdiff
path: root/kvmd
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2021-01-25 13:40:03 +0300
committerDevaev Maxim <[email protected]>2021-01-25 13:40:03 +0300
commit11a3079d2467faafef6879728b3aa34037406f52 (patch)
tree17eb6efb080e231b8adcc4f9a84954576243efef /kvmd
parent69faec54fceba768dab813e8ddf3838c8487e945 (diff)
changed h264 encoding number
Diffstat (limited to 'kvmd')
-rw-r--r--kvmd/apps/vnc/rfb/encodings.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/kvmd/apps/vnc/rfb/encodings.py b/kvmd/apps/vnc/rfb/encodings.py
index 9477baaf..d7d7d283 100644
--- a/kvmd/apps/vnc/rfb/encodings.py
+++ b/kvmd/apps/vnc/rfb/encodings.py
@@ -20,7 +20,6 @@
# ========================================================================== #
-import ctypes
import dataclasses
from typing import FrozenSet
@@ -40,7 +39,7 @@ class RfbEncodings:
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100],
))
- H264 = ctypes.c_int32(0xCAFE0101).value # Pi-KVM H264 Encoding
+ H264 = 50 # Pi-KVM H264 Encoding
@dataclasses.dataclass(frozen=True)