From f8db175ae48fcb438c90625b40a7c366a8d0f253 Mon Sep 17 00:00:00 2001 From: Michalis Dimopoulos Date: Mon, 18 May 2026 13:01:42 +0200 Subject: [PATCH] fix: missing OutputFormat.YUV444P10LE format for FFMPEG QSV decoders --- fluster/decoders/ffmpeg.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fluster/decoders/ffmpeg.py b/fluster/decoders/ffmpeg.py index 7fa9f78a..41e3151f 100644 --- a/fluster/decoders/ffmpeg.py +++ b/fluster/decoders/ffmpeg.py @@ -524,6 +524,8 @@ class FFmpegQsvDecoder(FFmpegDecoder): OutputFormat.YUV422P10LE: "y210le", OutputFormat.YUV444P: "vuyx", OutputFormat.YUV444P10LE: "xv30le", + OutputFormat.YUV444P14LE: "xv36", + # No native support for GBRP14LE } def __init__(self) -> None: