34 lines
893 B
C
Executable File
34 lines
893 B
C
Executable File
/******************************************************************************
|
|
Copyright (C), 2001-2016, Allwinner Tech. Co., Ltd.
|
|
******************************************************************************
|
|
File Name : mpi_vdec_common.c
|
|
Version : Initial Draft
|
|
Author : Allwinner BU3-PD2 Team
|
|
Created : 2016/08/18
|
|
Last Modified :
|
|
Description : mpi functions implement
|
|
Function List :
|
|
History :
|
|
******************************************************************************/
|
|
#ifndef __MPI_VO_COMMON_H__
|
|
#define __MPI_VO_COMMON_H__
|
|
|
|
#include "plat_type.h"
|
|
#include "mm_common.h"
|
|
#include "mm_component.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
ERRORTYPE VO_Construct(void);
|
|
ERRORTYPE VO_Destruct(void);
|
|
MM_COMPONENTTYPE* VO_GetChnComp(MPP_CHN_S *pMppChn);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __MPI_VO_COMMON_H__ */
|
|
|