mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
34 lines
497 B
C
34 lines
497 B
C
/*
|
|
* Copyright (C) 2022-2023 ArtinChip Technology Co., Ltd.
|
|
* Authors: Ning Fang <ning.fang@artinchip.com>
|
|
*/
|
|
|
|
#ifndef AIC_DEC_H
|
|
#define AIC_DEC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include <mpp_list.h>
|
|
|
|
struct framebuf_info {
|
|
unsigned int addr;
|
|
unsigned int align_addr;
|
|
int size;
|
|
};
|
|
|
|
struct framebuf_head {
|
|
struct mpp_list list;
|
|
struct framebuf_info buf_info;
|
|
};
|
|
|
|
void aic_dec_create();
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif //AIC_DEC_H
|