1 
2 /*
3  * Copyright (C) Texas Instruments - http://www.ti.com/
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21 /* =============================================================================
22 *             Texas Instruments OMAP(TM) Platform Software
23 *  (c) Copyright Texas Instruments, Incorporated.  All Rights Reserved.
24 *
25 *  Use of this software is controlled by the terms and conditions found
26 *  in the license agreement under which this software has been supplied.
27 * =========================================================================== */
28 /**
29 * @file OMX_VidDec_CustomCmd.h
30 *
31 * This is an header file for an video Mpeg4 decoder that is fully
32 * compliant with the OMX Video specification.
33 * This the file that the application that uses OMX would include
34 * in its code.
35 *
36 * @path $(CSLPATH)\
37 *
38 * @rev 0.1
39 */
40 /* -------------------------------------------------------------------------- */
41 
42 #ifndef OMX_VIDDEC_CUSTOMCMD_H
43 #define OMX_VIDDEC_CUSTOMCMD_H
44 #define VIDDEC_CUSTOMPARAM_PROCESSMODE "OMX.TI.VideoDecode.Param.ProcessMode"
45 #define VIDDEC_CUSTOMPARAM_H264BITSTREAMFORMAT "OMX.TI.VideoDecode.Param.H264BitStreamFormat"
46 #define VIDDEC_CUSTOMPARAM_WMVPROFILE "OMX.TI.VideoDecode.Param.WMVProfile"
47 #define VIDDEC_CUSTOMPARAM_WMVFILETYPE "OMX.TI.VideoDecode.Param.WMVFileType"
48 #define VIDDEC_CUSTOMPARAM_PARSERENABLED "OMX.TI.VideoDecode.Param.ParserEnabled"
49 #define VIDDEC_CUSTOMPARAM_ISNALBIGENDIAN "OMX.TI.VideoDecode.Param.IsNALBigEndian"
50 #define VIDDEC_CUSTOMCONFIG_DEBUG "OMX.TI.VideoDecode.Debug"
51 #ifdef VIDDEC_SPARK_CODE
52  #define VIDDEC_CUSTOMPARAM_ISSPARKINPUT "OMX.TI.VideoDecode.Param.IsSparkInput"
53 #endif
54 
55 /*------- Program Header Files ----------------------------------------*/
56 #include <OMX_Component.h>
57 
58 /*------- Structures ----------------------------------------*/
59 
60 #endif /* OMX_VIDDEC_CUSTOMCMD_H */
61