custom_video_enc_mpeg4.h
2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*****************************************************************************
* Filename:
* ---------
* custom_video_enc_mpeg4.h
*
* Project:
* --------
* MAUI
*
* Description:
* ------------
* This file is to be included by the file with the implementaton of frame
* rate table.
*
* Author:
* -------
* -------
*
*============================================================================
* HISTORY
* Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*------------------------------------------------------------------------------
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
*
*------------------------------------------------------------------------------
* Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*============================================================================
****************************************************************************/
#ifndef CUSTOM_VIDEO_ENC_MPEG4_H
#define CUSTOM_VIDEO_ENC_MPEG4_H
#include "custom_video_enc_if.h"
/******************************************************************************
*
******************************************************************************/
#define CUSTOM_VENC_MPEG4_UNKNOWN_WIDTH 0
#define CUSTOM_VENC_MPEG4_UNKNOWN_HEIGHT 0
#define CUSTOM_VENC_MPEG4_UNKNOWN_TABLE_ENTRIES 0xFFFF
#define CUSTOM_VENC_MPEG4_UNKNOWN_TABLE_INDEX 0xFFFF
/******************************************************************************
*
******************************************************************************/
typedef struct
{
kal_uint16 u2Width;
kal_uint16 u2Height;
kal_uint16 u2TableEntries;
kal_uint16 u2TableIndex;
CUSTOM_VENC_RESOLUTION_T eResolution;
CUSTOM_VENC_QUALITY_T eQuality;
CUSTOM_VENC_STORAGE_T eStorage;
CUSTOM_VENC_CODEC_T eCodec;
CUSTOM_VENC_ROTATE_T eRotate;
} CUSTOM_VENC_MPEG4_MGR_T;
/******************************************************************************
* Function prototypes
******************************************************************************/
extern CUSTOM_VENC_ERROR_T CustomVenc_GetMpeg4CtrlFunction(PFN_CUSTOM_VENC_CTRL *ppfnCustomVencCtrl);
#endif // CUSTOM_VIDEO_ENC_MPEG4_H