summaryrefslogtreecommitdiff
path: root/omx/videodecode/omx_videodec_common/inc/omx_video_decoder_componenttable.h
diff options
context:
space:
mode:
Diffstat (limited to 'omx/videodecode/omx_videodec_common/inc/omx_video_decoder_componenttable.h')
-rw-r--r--omx/videodecode/omx_videodec_common/inc/omx_video_decoder_componenttable.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/omx/videodecode/omx_videodec_common/inc/omx_video_decoder_componenttable.h b/omx/videodecode/omx_videodec_common/inc/omx_video_decoder_componenttable.h
deleted file mode 100644
index b3638db..0000000
--- a/omx/videodecode/omx_videodec_common/inc/omx_video_decoder_componenttable.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) Texas Instruments - http://www.ti.com/
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef _OMX_VIDEO_DECODER_COMPONENTTABLE_H_
-#define _OMX_VIDEO_DECODER_COMPONENTTABLE_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <stdio.h>
-#include <OMX_Video.h>
-
-typedef struct OMXDecoderComponentList {
- /*Component role to be specified here*/
- OMX_U8 cRole[OMX_MAX_STRINGNAME_SIZE];
-
- /*! Video Coding Type Format */
- OMX_VIDEO_CODINGTYPE eCompressionFormat;
-
- /*! Function pointer to the component Init function of decoder */
- OMX_ERRORTYPE (*fpDecoderComponentInit)(OMX_HANDLETYPE hComponent);
-
-} OMXDecoderComponentList;
-
-/* external definition for the Decoder Component List*/
-extern OMXDecoderComponentList DecoderList[];
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _OMX_VIDEO_DECODER_COMPONENTTABLE_H_ */
-