summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)