Skip to content

Commit

Permalink
decoders: gstreamer: Add mapping for GBRP10LE pixel format
Browse files Browse the repository at this point in the history
ARGON AV1 test suite use GBR_10LE as output format, for GStreamer
decoders map it to GBR_10LE.

Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
  • Loading branch information
Benjamin Gaignard authored and mdimopoulos committed Dec 10, 2024
1 parent 664f6f2 commit c994fdd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fluster/decoders/gstreamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down

0 comments on commit c994fdd

Please sign in to comment.