36 lines
1009 B
C
36 lines
1009 B
C
|
/******************************************************************************
|
||
|
Copyright (C), 2001-2016, Allwinner Tech. Co., Ltd.
|
||
|
******************************************************************************
|
||
|
File Name : VdecStream.h
|
||
|
Version : Initial Draft
|
||
|
Author : Allwinner BU3-PD2 Team
|
||
|
Created : 2016/08/12
|
||
|
Last Modified :
|
||
|
Description : common struct definition in VdecComp and MPIVdec.
|
||
|
Function List :
|
||
|
History :
|
||
|
******************************************************************************/
|
||
|
#ifndef _VIDEOFRAMEINFONODE_H_
|
||
|
#define _VIDEOFRAMEINFONODE_H_
|
||
|
|
||
|
#include <plat_type.h>
|
||
|
|
||
|
#include "mm_comm_video.h"
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif /* End of #ifdef __cplusplus */
|
||
|
|
||
|
typedef struct VideoFrameInfoNode
|
||
|
{
|
||
|
VIDEO_FRAME_INFO_S VFrame;
|
||
|
int mResult; // Save the encoding result of the frame
|
||
|
struct list_head mList;
|
||
|
}VideoFrameInfoNode;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* End of #ifdef __cplusplus */
|
||
|
|
||
|
#endif /* _VIDEOFRAMEINFONODE_H_ */
|
||
|
|