• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* ------------------------------------------------------------------
2  * Copyright (C) 1998-2009 PacketVideo
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13  * express or implied.
14  * See the License for the specific language governing permissions
15  * and limitations under the License.
16  * -------------------------------------------------------------------
17  */
18 /*
19 ********************************************************************************
20 *
21 *      GSM AMR-NB speech codec   R98   Version 7.5.0   March 2, 2001
22 *                                R99   Version 3.2.0
23 *                                REL-4 Version 4.0.0
24 *
25 ********************************************************************************
26 *      File             : d_homing.h
27 *      Purpose          : Declarations of decoder homing function prototypes.
28 *
29 ********************************************************************************
30 */
31 
32 #ifndef d_homing_h
33 #define d_homing_h "$Id $"
34 
35 /*
36 *****************************************************************************
37 *                         INCLUDE FILES
38 *****************************************************************************
39 */
40 
41 #include "typedef.h"
42 #include "mode.h"
43 
44 /*
45 ********************************************************************************
46 *                         DECLARATION OF PROTOTYPES
47 ********************************************************************************
48 */
49 
50 Word16 decoder_homing_frame_test(Word16 input_frame[], enum Mode mode);
51 Word16 decoder_homing_frame_test_first(Word16 input_frame[], enum Mode mode);
52 
53 #endif
54