diff options
author | Dafna Hirschfeld <dafna3@gmail.com> | 2019-03-07 00:13:31 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-03-25 20:44:54 +0300 |
commit | bdbfd992bb9f19817911205cb7173cc6328de2a3 (patch) | |
tree | 6161dcfdd69ed22c2bb176976e4ab48e82fe0b77 /drivers/media/platform/vicodec/codec-fwht.h | |
parent | 30364c41bd27ff28bc600a5080558b3b11c008ba (diff) | |
download | linux-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.h | 1 |
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; }; |