David Venhoff cfcea9ee67 Initial commit
Based off b80915eb99
and compacted into a single commit so that it will fit on the uni git server
2025-08-11 13:05:09 +02:00

26 lines
511 B
C

/* 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