From c994fdd709ee641976dbbba286d0bd09234c715f Mon Sep 17 00:00:00 2001 From: Benjamin Gaignard Date: Mon, 9 Dec 2024 17:58:08 +0100 Subject: [PATCH] decoders: gstreamer: Add mapping for GBRP10LE pixel format ARGON AV1 test suite use GBR_10LE as output format, for GStreamer decoders map it to GBR_10LE. Signed-off-by: Benjamin Gaignard --- fluster/decoders/gstreamer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fluster/decoders/gstreamer.py b/fluster/decoders/gstreamer.py index 63f4e33..cc92d09 100644 --- a/fluster/decoders/gstreamer.py +++ b/fluster/decoders/gstreamer.py @@ -70,6 +70,7 @@ def output_format_to_gst(output_format: OutputFormat) -> str: OutputFormat.YUV444P: "Y444", OutputFormat.YUV444P10LE: "Y444_10LE", OutputFormat.YUV444P12LE: "Y444_12LE", + OutputFormat.GBRP10LE: "GBR_10LE", } if output_format not in mapping: raise Exception(f"No matching output format found in GStreamer for {output_format}")