exynos_omx has moved from hardware/samsung_slsi/exynos5
[GitHub/LineageOS/android_hardware_samsung_slsi_openmax.git] / osal / Exynos_OSAL_ETC.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_OSAL_ETC.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_OSAL_ETC
28 #define Exynos_OSAL_ETC
29
30 #include "OMX_Types.h"
31
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 OMX_PTR Exynos_OSAL_Strcpy(OMX_PTR dest, OMX_PTR src);
38 OMX_S32 Exynos_OSAL_Strncmp(OMX_PTR str1, OMX_PTR str2, size_t num);
39 OMX_S32 Exynos_OSAL_Strcmp(OMX_PTR str1, OMX_PTR str2);
40 OMX_PTR Exynos_OSAL_Strcat(OMX_PTR dest, OMX_PTR src);
41 size_t Exynos_OSAL_Strlen(const char *str);
42 ssize_t getline(char **ppLine, size_t *len, FILE *stream);
43
44 /* perf */
45 typedef enum _PERF_ID_TYPE {
46 PERF_ID_CSC = 0,
47 PERF_ID_DEC,
48 PERF_ID_ENC,
49 PERF_ID_USER,
50 PERF_ID_MAX,
51 } PERF_ID_TYPE;
52
53 void Exynos_OSAL_PerfInit(PERF_ID_TYPE id);
54 void Exynos_OSAL_PerfStart(PERF_ID_TYPE id);
55 void Exynos_OSAL_PerfStop(PERF_ID_TYPE id);
56 OMX_U32 Exynos_OSAL_PerfFrame(PERF_ID_TYPE id);
57 OMX_U32 Exynos_OSAL_PerfTotal(PERF_ID_TYPE id);
58 OMX_U32 Exynos_OSAL_PerfFrameCount(PERF_ID_TYPE id);
59 int Exynos_OSAL_PerfOver30ms(PERF_ID_TYPE id);
60 void Exynos_OSAL_PerfPrint(OMX_STRING prefix, PERF_ID_TYPE id);
61
62 #ifdef __cplusplus
63 }
64 #endif
65
66 #endif