summaryrefslogtreecommitdiff
path: root/drivers/media/platform/sunxi/sun8i-rotate/sun8i-formats.h
blob: 697cd5fadd5fc3f83046d7d359c9518c06ef34d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (C) 2020 Jernej Skrabec <jernej.skrabec@siol.net> */

#ifndef _SUN8I_FORMATS_H_
#define _SUN8I_FORMATS_H_

#include <linux/videodev2.h>

#define ROTATE_FLAG_YUV    BIT(0)
#define ROTATE_FLAG_OUTPUT BIT(1)

struct rotate_format {
	u32 fourcc;
	u32 hw_format;
	int planes;
	int bpp[3];
	int hsub;
	int vsub;
	unsigned int flags;
};

const struct rotate_format *rotate_find_format(u32 pixelformat);
int rotate_enum_fmt(struct v4l2_fmtdesc *f, bool dst);

#endif