revise installing a license file
[platform/adaptation/ap_samsung/libomxil-e3250-v4l2.git] / openmax / component / video / enc / h264 / Exynos_OMX_H264enc.h
1 /*
2  *
3  * Copyright 2012 Samsung Electronics S.LSI Co. LTD
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 /*
19  * @file        Exynos_OMX_H264enc.h
20  * @brief
21  * @author      SeungBeom Kim (sbcrux.kim@samsung.com)
22  * @version     2.0.0
23  * @history
24  *   2012.02.20 : Create
25  */
26
27 #ifndef EXYNOS_OMX_H264_ENC_COMPONENT
28 #define EXYNOS_OMX_H264_ENC_COMPONENT
29
30 #include "Exynos_OMX_Def.h"
31 #include "OMX_Component.h"
32 #include "OMX_Video.h"
33
34 #include "ExynosVideoApi.h"
35
36 typedef struct _EXTRA_DATA
37 {
38     OMX_PTR pHeaderSPS;
39     OMX_U32 SPSLen;
40     OMX_PTR pHeaderPPS;
41     OMX_U32 PPSLen;
42 } EXTRA_DATA;
43
44 typedef struct _EXYNOS_MFC_H264ENC_HANDLE
45 {
46     OMX_HANDLETYPE hMFCHandle;
47     OMX_BOOL       bShareableBuf;
48     OMX_U32 indexTimestamp;
49     OMX_U32 outputIndexTimestamp;
50     OMX_BOOL bConfiguredMFCSrc;
51     OMX_BOOL bConfiguredMFCDst;
52     OMX_BOOL                   bPrependSpsPpsToIdr;
53     EXTRA_DATA headerData;
54
55     ExynosVideoDecOps *pEncOps;
56     ExynosVideoDecBufferOps *pInbufOps;
57     ExynosVideoDecBufferOps *pOutbufOps;
58     ExynosVideoEncParam      encParam;
59 } EXYNOS_MFC_H264ENC_HANDLE;
60
61 typedef struct _EXYNOS_H264ENC_HANDLE
62 {
63     /* OMX Codec specific */
64     OMX_VIDEO_PARAM_AVCTYPE AVCComponent[ALL_PORT_NUM];
65     OMX_VIDEO_PARAM_ERRORCORRECTIONTYPE errorCorrectionType[ALL_PORT_NUM];
66     OMX_VIDEO_PARAM_AVCSLICEFMO AVCSliceFmo;
67     /* SEC MFC Codec specific */
68     EXYNOS_MFC_H264ENC_HANDLE hMFCH264Handle;
69
70     OMX_BOOL bSourceStart;
71     OMX_BOOL bDestinationStart;
72     OMX_HANDLETYPE hSourceStartEvent;
73     OMX_HANDLETYPE hDestinationStartEvent;
74 } EXYNOS_H264ENC_HANDLE;
75
76 #ifdef __cplusplus
77 extern "C" {
78 #endif
79
80 OSCL_EXPORT_REF OMX_ERRORTYPE Exynos_OMX_ComponentInit(OMX_HANDLETYPE hComponent, OMX_STRING componentName);
81 OMX_ERRORTYPE Exynos_OMX_ComponentDeinit(OMX_HANDLETYPE hComponent);
82
83 #ifdef __cplusplus
84 };
85 #endif
86
87 #endif