mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-12 16:19:53 +00:00
V4L/DVB: v4l2-mediabus.h: add two helper functions
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
66e9df07d3
commit
3a21ceed7f
@ -58,4 +58,24 @@ struct v4l2_mbus_framefmt {
|
||||
enum v4l2_colorspace colorspace;
|
||||
};
|
||||
|
||||
static inline void v4l2_fill_pix_format(struct v4l2_pix_format *pix_fmt,
|
||||
const struct v4l2_mbus_framefmt *mbus_fmt)
|
||||
{
|
||||
pix_fmt->width = mbus_fmt->width;
|
||||
pix_fmt->height = mbus_fmt->height;
|
||||
pix_fmt->field = mbus_fmt->field;
|
||||
pix_fmt->colorspace = mbus_fmt->colorspace;
|
||||
}
|
||||
|
||||
static inline void v4l2_fill_mbus_format(struct v4l2_mbus_framefmt *mbus_fmt,
|
||||
const struct v4l2_pix_format *pix_fmt,
|
||||
enum v4l2_mbus_pixelcode code)
|
||||
{
|
||||
mbus_fmt->width = pix_fmt->width;
|
||||
mbus_fmt->height = pix_fmt->height;
|
||||
mbus_fmt->field = pix_fmt->field;
|
||||
mbus_fmt->colorspace = pix_fmt->colorspace;
|
||||
mbus_fmt->code = code;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user