summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrijesh.singh <brijesh.singh@24075187-2e39-4e88-bbb8-bc8aa768f540>2011-01-18 17:01:29 +0000
committerbrijesh.singh <brijesh.singh@24075187-2e39-4e88-bbb8-bc8aa768f540>2011-01-18 17:01:29 +0000
commit5e84170122b7d98528eda026637e305c44f60fce (patch)
tree8b2e698f1c03ddcd43186ceec347953b92818f64
parentaa1c282a911ac53854f511dff6b8adcc50c44ba2 (diff)
remove unused gstticodecs_omap3530_dv400.c file
git-svn-id: https://gstreamer.ti.com/svn/gstreamer_ti/trunk@894 24075187-2e39-4e88-bbb8-bc8aa768f540
-rw-r--r--gstreamer_ti/ti_build/ticodecplugin/src/gstticodecs_omap3530_dv400.c97
1 files changed, 0 insertions, 97 deletions
diff --git a/gstreamer_ti/ti_build/ticodecplugin/src/gstticodecs_omap3530_dv400.c b/gstreamer_ti/ti_build/ticodecplugin/src/gstticodecs_omap3530_dv400.c
deleted file mode 100644
index cd715d6..0000000
--- a/gstreamer_ti/ti_build/ticodecplugin/src/gstticodecs_omap3530_dv400.c
+++ /dev/null
@@ -1,97 +0,0 @@
-/*
- * gstticodecs_omap3530.c
- *
- * This file provides information for available codecs on the OMAP3530 platform.
- *
- * Original Author:
- * Don Darling, Texas Instruments, Inc.
- *
- * Copyright (C) 2008-2010 Texas Instruments Incorporated - http://www.ti.com/
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation version 2.1 of the License.
- *
- * This program is distributed #as is# WITHOUT ANY WARRANTY of any kind,
- * whether express or implied; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- */
-
-#include "gstticodecs.h"
-
-/* Declaration of the production engine and decoders shipped with the DVSDK */
-static Char codecServer[] = "codecServer";
-
-/* NULL terminated list of speech decoders in the engine to use in the demo */
-GstTICodec gst_ticodec_codecs[] = {
-
- /* Audio Decoders */
- {
- "AAC Audio Decoder", /* String name of codec used by plugin */
- "aachedec", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- }, {
- "MPEG1L2 Audio Decoder", /* String name of codec used by plugin */
- "mp3dec", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- }, {
- "MPEG1L3 Audio Decoder", /* String name of codec used by plugin */
- "mp3dec", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- },
-
- /* Video Decoders */
- {
- "H.264 Video Decoder", /* String name of codec used by plugin */
- "h264dec", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- }, {
- "MPEG4 Video Decoder", /* String name of codec used by plugin */
- "mpeg4dec", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- }, {
- "MPEG2 Video Decoder", /* String name of codec used by plugin */
- "mpeg2dec", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- },
-
- /* Image Decoders */
- {
- "JPEG Image Decoder", /* String name of codec used by plugin */
- "jpegdec", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- },
-
- /* Video Encoders */
- {
- "H.264 Video Encoder", /* String name of codec used by plugin */
- "h264enc", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- }, {
- "MPEG4 Video Encoder", /* String name of codec used by plugin */
- "mpeg4enc", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- },
-
- /* Image Encoders */
- {
- "JPEG Image Encoder", /* String name of codec used by plugin */
- "jpegenc", /* String name of codec used by CE */
- codecServer /* Engine that contains this codec */
- },
-
- { NULL }
-};
-
-
-/******************************************************************************
- * Custom ViM Settings for editing this file
- ******************************************************************************/
-#if 0
- Tabs (use 4 spaces for indentation)
- vim:set tabstop=4: /* Use 4 spaces for tabs */
- vim:set shiftwidth=4: /* Use 4 spaces for >> operations */
- vim:set expandtab: /* Expand tabs into white spaces */
-#endif