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#include "Status.h"
27
28
29extern "C"
30{
31///Header file where all the TI OSAL error codes are defined
32#include "timm_osal_error.h"
33};
34
35namespace Ti {
36namespace Utils {
37
38///Generic class with static methods to convert any standard error type to Android error type
39class ErrorUtils
40{
41public:
42    ///Method to convert from POSIX to Android errors
43    static status_t posixToAndroidError(int error);
44
45    ///Method to convert from TI OSAL to Android errors
46    static status_t osalToAndroidError(TIMM_OSAL_ERRORTYPE error);
47
48    ///Method to convert from OMX to Android errors
49    static status_t omxToAndroidError(OMX_ERRORTYPE error);
50
51};
52
53} // namespace Utils
54} // namespace Ti
55
56#endif /// ERROR_UTILS_H
57