From fc525ce1e82ee643138fbfbc4a82eb60e705eece Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 13 Feb 2017 17:45:28 +0200 Subject: vsp-lib: Fix reference frame generation for HSV input formats gen-image doesn't support processing HSV input frames. Fortunately the HSV tests don't require it either, when they take an HSV input frame they just pass it straight to the WPF. We can thus set the input format to RGB for reference frame generation. Signed-off-by: Laurent Pinchart --- scripts/vsp-lib.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/vsp-lib.sh b/scripts/vsp-lib.sh index 2073770..1fef249 100755 --- a/scripts/vsp-lib.sh +++ b/scripts/vsp-lib.sh @@ -103,6 +103,16 @@ reference_frame() { local alpha= local options= + # gen-image doesn't support processing HSV input images. The good news + # is that the HSV tests that take HSV images as inputs don't need to + # perform any processing. We can set the input format to RGB for HSB + # reference frame generation. + case $in_format in + HSV24 | HSV32) + in_format=ARGB32 + ;; + esac + # Start with the input format to compute the alpha value being used by # the RPF after unpacking. Keep in sync with generate_input_frame. case $in_format in -- cgit v1.2.3