diff options
author | Ezequiel Garcia <ezequiel@collabora.com> | 2019-02-05 16:20:33 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-02-07 12:36:33 -0500 |
commit | a4d3d61254d3645d8de738102c3c473b176180a5 (patch) | |
tree | b12cdf1a4cdf71a68d02e92076c0077e7da8f93e /drivers/staging/media | |
parent | c2d88e7d66f9d327593e0d0f9d7f94755b637e5c (diff) | |
download | linux-a4d3d61254d3645d8de738102c3c473b176180a5.tar.bz2 |
media: v4l2-mem2mem: Rename v4l2_m2m_buf_copy_data to v4l2_m2m_buf_copy_metadata
The v4l2_m2m_buf_copy_data helper is used to copy the buffer
metadata, such as its timestamp and its flags.
Therefore, the v4l2_m2m_buf_copy_metadata name is more clear
and avoids confusion with a payload data copy.
Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: also fix cedrus_dec.c]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/staging/media')
-rw-r--r-- | drivers/staging/media/sunxi/cedrus/cedrus_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/sunxi/cedrus/cedrus_dec.c b/drivers/staging/media/sunxi/cedrus/cedrus_dec.c index 443fb037e1cf..4d6d602cdde6 100644 --- a/drivers/staging/media/sunxi/cedrus/cedrus_dec.c +++ b/drivers/staging/media/sunxi/cedrus/cedrus_dec.c @@ -50,7 +50,7 @@ void cedrus_device_run(void *priv) break; } - v4l2_m2m_buf_copy_data(run.src, run.dst, true); + v4l2_m2m_buf_copy_metadata(run.src, run.dst, true); dev->dec_ops[ctx->current_codec]->setup(ctx, &run); |