diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-09-13 00:20:08 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-09-13 00:39:16 +0300 |
commit | 0b0156f964c8e6d27b1215c381917662372f3a0f (patch) | |
tree | 63e0475084f55a9bbab031570036e442fb6f560d /scripts/vsp-lib.sh | |
parent | 2b6bed2f2caed1193e00f8c355e7dab52e9f5ded (diff) |
vsp-lib: Don't average chroma when generating test input frames
This avoids double-averaging due to chroma interpolation at the RPF.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'scripts/vsp-lib.sh')
-rwxr-xr-x | scripts/vsp-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vsp-lib.sh b/scripts/vsp-lib.sh index 04ab7b5..6ce701a 100755 --- a/scripts/vsp-lib.sh +++ b/scripts/vsp-lib.sh @@ -653,7 +653,7 @@ generate_input_frame() { ;; esac - $(format_v4l2_is_yuv $format) && options="$options -i YUV444M" + $(format_v4l2_is_yuv $format) && options="$options -C -i YUV444M" $genimage -f $format -s $size -a $alpha $options -o $file \ frames/frame-reference-1024x768.pnm |