import exynos 7570 bsp
[GitHub/LineageOS/android_hardware_samsung_slsi_openmax.git] / component / video / enc / vp8 / library_register.h
CommitLineData
a9bdc01e
T
1/*
2 *
3 * Copyright 2013 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 library_register.h
20 * @brief
21 * @author SeungBeom Kim (sbcrux.kim@samsung.com)
22 * Taehwan Kim (t_h.kim@samsung.com)
23 * @version 2.0.0
24 * @history
25 * 2013.02.14 : Create
26 */
27
28#ifndef EXYNOS_OMX_VP8_ENC_REG
29#define EXYNOS_OMX_VP8_ENC_REG
30
31#include "Exynos_OMX_Def.h"
32#include "OMX_Component.h"
33#include "Exynos_OMX_Component_Register.h"
34
35
36#define OSCL_EXPORT_REF __attribute__((visibility("default")))
37#define MAX_COMPONENT_NUM 1
38#define MAX_COMPONENT_ROLE_NUM 1
39
40/* VP8 */
41#define EXYNOS_OMX_COMPONENT_VP8_ENC "OMX.Exynos.VP8.Encoder"
42#define EXYNOS_OMX_COMPONENT_VP8_ENC_ROLE "video_encoder.vp8"
43
44
45#ifdef __cplusplus
46extern "C" {
47#endif
48
49OSCL_EXPORT_REF int Exynos_OMX_COMPONENT_Library_Register(ExynosRegisterComponentType **ppExynosComponent);
50
51#ifdef __cplusplus
52};
53#endif
54
55#endif
56