1/*
2 * Copyright (C) Texas Instruments - http://www.ti.com/
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ERROR_UTILS_H
18#define ERROR_UTILS_H
19
20///Header file where all the android error codes are defined
21#include <utils/Errors.h>
22
23///Header file where all the OMX error codes are defined
24#include "OMX_Core.h"
25
26
27extern "C"
28{
29///Header file where all the TI OSAL error codes are defined
30#include "timm_osal_error.h"
31};
32
33namespace android {
34
35///Generic class with static methods to convert any standard error type to Android error type
36class ErrorUtils
37{
38public:
39    ///Method to convert from POSIX to Android errors
40    static status_t posixToAndroidError(int error);
41
42    ///Method to convert from TI OSAL to Android errors
43    static status_t osalToAndroidError(TIMM_OSAL_ERRORTYPE error);
44
45    ///Method to convert from OMX to Android errors
46    static status_t omxToAndroidError(OMX_ERRORTYPE error);
47
48};
49
50};
51
52#endif /// ERROR_UTILS_H
53