HomeKit Bridge integration: Adding h264_qsv as valid VIDEO_CODEC option (#145448)

This commit is contained in:
dalan 2025-05-23 00:52:58 +10:00 committed by GitHub
parent 917b467b85
commit 8f05a639f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ VIDEO_CODEC_LIBX264 = "libx264"
AUDIO_CODEC_OPUS = "libopus"
VIDEO_CODEC_H264_OMX = "h264_omx"
VIDEO_CODEC_H264_V4L2M2M = "h264_v4l2m2m"
VIDEO_CODEC_H264_QSV = "h264_qsv" # Intel Quick Sync Video
VIDEO_PROFILE_NAMES = ["baseline", "main", "high"]
AUDIO_CODEC_COPY = "copy"

View File

@ -112,6 +112,7 @@ from .const import (
TYPE_VALVE,
VIDEO_CODEC_COPY,
VIDEO_CODEC_H264_OMX,
VIDEO_CODEC_H264_QSV,
VIDEO_CODEC_H264_V4L2M2M,
VIDEO_CODEC_LIBX264,
)
@ -130,6 +131,7 @@ MAX_PORT = 65535
VALID_VIDEO_CODECS = [
VIDEO_CODEC_LIBX264,
VIDEO_CODEC_H264_OMX,
VIDEO_CODEC_H264_QSV,
VIDEO_CODEC_H264_V4L2M2M,
AUDIO_CODEC_COPY,
]