1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-10-07 10:09:34 +00:00
Files
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

27 lines
462 B
C

#ifndef __VCODEC_BW_H__
#define __VCODEC_BW_H__
#include <linux/types.h>
#include <linux/list.h>
#define DEFAULT_VENC_CONFIG -1000
#define MAX_VCODEC_FREQ 9999
enum vcodec_port_type {
VCODEC_PORT_BITSTREAM = 0,
VCODEC_PORT_PICTURE_Y = 1,
VCODEC_PORT_PICTURE_UV = 2,
VCODEC_PORT_PICTURE_ALL = 3,
VCODEC_PORT_RCPU = 4,
VCODEC_PORT_WORKING = 5,
VCODEC_PORT_LARB_SUM = 6
};
struct vcodec_port_bw {
int port_type;
u32 port_base_bw;
u32 larb;
};
#endif