• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_G729Dec_ComponentThread.h
30  *
31  * This header file contains data and function prototypes for G729 DECODER OMX
32  *
33  * @path  $(OMAPSW_MPU)\linux\audio\src\openmax_il\g729_dec\inc
34  *
35  * @rev  0.1
36  */
37 /* -----------------------------------------------------------------------------
38  *!
39  *! Revision History
40  *! ===================================
41  *! Date         Author(s)            Version  Description
42  *! ---------    -------------------  -------  ---------------------------------
43  *! 03-Jan-2007  A.Donjon             0.1      Code update for G729 DECODER
44  *!
45  *!
46  * ================================================================================= */
47 /* ------compilation control switches -------------------------*/
48 
49 #ifndef OMX_G729_COMPONENTTHREAD__H
50 #define OMX_G729_COMPONENTTHREAD__H
51 
52 /* ======================================================================= */
53 /**
54  * @def    EXIT_COMPONENT_THRD              Define Exit Componet Value
55  */
56 /* ======================================================================= */
57 #define EXIT_COMPONENT_THRD  10
58 
59 /****************************************************************
60  *  INCLUDE FILES
61  ****************************************************************/
62 /* ----- system and platform files ----------------------------*/
63 /*-------program files ----------------------------------------*/
64 
65 /****************************************************************
66  * EXTERNAL REFERENCES NOTE : only use if not found in header file
67  ****************************************************************/
68 /*--------data declarations -----------------------------------*/
69 /*--------function prototypes ---------------------------------*/
70 
71 /****************************************************************
72  * PUBLIC DECLARATIONS Defined here, used elsewhere
73  ****************************************************************/
74 /*--------data declarations -----------------------------------*/
75 
76 /*--------function prototypes ---------------------------------*/
77 
78 /****************************************************************
79  * PRIVATE DECLARATIONS Defined here, used only here
80  ****************************************************************/
81 /*--------data declarations -----------------------------------*/
82 /*--------function prototypes ---------------------------------*/
83 
84 
85 void* G729DEC_ComponentThread (void* pThreadData);
86 
87 #endif
88