summaryrefslogtreecommitdiff
path: root/drivers/media/platform/vicodec/codec-fwht.h
diff options
context:
space:
mode:
authorDafna Hirschfeld <dafna3@gmail.com>2019-03-07 00:13:31 +0300
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-03-25 20:44:54 +0300
commitbdbfd992bb9f19817911205cb7173cc6328de2a3 (patch)
tree6161dcfdd69ed22c2bb176976e4ab48e82fe0b77 /drivers/media/platform/vicodec/codec-fwht.h
parent30364c41bd27ff28bc600a5080558b3b11c008ba (diff)
downloadlinux-bdbfd992bb9f19817911205cb7173cc6328de2a3.tar.xz
media: vicodec: add field 'buf' to fwht_raw_frame
Add the field 'buf' to fwht_raw_frame to indicate the start of the raw frame buffer. This field will be used to copy the capture buffer to the reference buffer in the next patch. Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/platform/vicodec/codec-fwht.h')
-rw-r--r--drivers/media/platform/vicodec/codec-fwht.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/platform/vicodec/codec-fwht.h b/drivers/media/platform/vicodec/codec-fwht.h
index c410512d47c5..8f0b790839f8 100644
--- a/drivers/media/platform/vicodec/codec-fwht.h
+++ b/drivers/media/platform/vicodec/codec-fwht.h
@@ -124,6 +124,7 @@ struct fwht_raw_frame {
unsigned int luma_alpha_step;
unsigned int chroma_step;
unsigned int components_num;
+ u8 *buf;
u8 *luma, *cb, *cr, *alpha;
};