summaryrefslogtreecommitdiff
path: root/omx/videodecode/omx_videodec_common/src/omx_video_decoder_componenttable.c
diff options
context:
space:
mode:
Diffstat (limited to 'omx/videodecode/omx_videodec_common/src/omx_video_decoder_componenttable.c')
-rw-r--r--omx/videodecode/omx_videodec_common/src/omx_video_decoder_componenttable.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/omx/videodecode/omx_videodec_common/src/omx_video_decoder_componenttable.c b/omx/videodecode/omx_videodec_common/src/omx_video_decoder_componenttable.c
deleted file mode 100644
index 94bf1fd..0000000
--- a/omx/videodecode/omx_videodec_common/src/omx_video_decoder_componenttable.c
+++ /dev/null
@@ -1,33 +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.
- */
-
-#include <omx_video_decoder_componenttable.h>
-
-
-extern OMX_ERRORTYPE OMXH264VD_Init(OMX_HANDLETYPE hComponent);
-extern OMX_ERRORTYPE OMXMPEG4VD_Init(OMX_HANDLETYPE hComponent);
-extern OMX_ERRORTYPE OMXH263VD_Init(OMX_HANDLETYPE hComponent);
-extern OMX_ERRORTYPE OMXMPEG2VD_Init(OMX_HANDLETYPE hComponent);
-
-OMXDecoderComponentList DecoderList[] =
-{
- { "video_decoder.avc", OMX_VIDEO_CodingAVC, OMXH264VD_Init }, /*! H264 Decoder */
- {"video_decoder.mpeg4", OMX_VIDEO_CodingMPEG4, OMXMPEG4VD_Init},
- { "video_decoder.h263", OMX_VIDEO_CodingH263, OMXH263VD_Init }, /*! H263 Decoder */
- { "video_decoder.mpeg2", OMX_VIDEO_CodingMPEG2, OMXMPEG2VD_Init }, /*! MPEG2 Decoder */
- { "NULL", 0, NULL }
-};
-