aboutsummaryrefslogtreecommitdiffstats
path: root/include/media/v4l2-tpg.h
diff options
context:
space:
mode:
authorRicardo Ribalda Delgado <ricardo.ribalda@gmail.com>2016-07-15 06:09:47 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-10-21 15:47:32 -0200
commit646895e9361af5ea501d0325f9b0251080a32854 (patch)
tree52c4ad2410e04ae309ce59cf2fece956424ede4b /include/media/v4l2-tpg.h
parent[media] Documentation: Add Ricardo Ribalda (diff)
downloadlinux-dev-646895e9361af5ea501d0325f9b0251080a32854.tar.xz
linux-dev-646895e9361af5ea501d0325f9b0251080a32854.zip
[media] vivid: Code refactor for color encoding
Replace is_yuv with color_enc Which can be used by other color encodings such us HSV. This change should ease the review of the following patches. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include/media/v4l2-tpg.h')
-rw-r--r--include/media/v4l2-tpg.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/media/v4l2-tpg.h b/include/media/v4l2-tpg.h
index 329bebfa930c..b4cb8f34cd87 100644
--- a/include/media/v4l2-tpg.h
+++ b/include/media/v4l2-tpg.h
@@ -87,6 +87,11 @@ enum tpg_move_mode {
TPG_MOVE_POS_FAST,
};
+enum tgp_color_enc {
+ TGP_COLOR_ENC_RGB,
+ TGP_COLOR_ENC_YCBCR,
+};
+
extern const char * const tpg_aspect_strings[];
#define TPG_MAX_PLANES 3
@@ -119,7 +124,7 @@ struct tpg_data {
u8 saturation;
s16 hue;
u32 fourcc;
- bool is_yuv;
+ enum tgp_color_enc color_enc;
u32 colorspace;
u32 xfer_func;
u32 ycbcr_enc;