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 Pathname: ./include/apply_ms_synt.h
21
22------------------------------------------------------------------------------
23 REVISION HISTORY
24
25 Who:                       Date:
26 Description:
27------------------------------------------------------------------------------
28 INCLUDE DESCRIPTION
29
30 This file includes the function declaration for apply_ms_synt().
31
32------------------------------------------------------------------------------
33*/
34
35/*----------------------------------------------------------------------------
36; CONTINUE ONLY IF NOT ALREADY DEFINED
37----------------------------------------------------------------------------*/
38#ifndef APPLY_MS_SYNT_H
39#define APPLY_MS_SYNT_H
40
41/*----------------------------------------------------------------------------
42; INCLUDES
43----------------------------------------------------------------------------*/
44#include "pv_audio_type_defs.h"
45#include "s_frameinfo.h"
46
47/*----------------------------------------------------------------------------
48; MACROS
49; Define module specific macros here
50----------------------------------------------------------------------------*/
51
52/*----------------------------------------------------------------------------
53; DEFINES
54; Include all pre-processor statements here.
55----------------------------------------------------------------------------*/
56
57/*----------------------------------------------------------------------------
58; EXTERNAL VARIABLES REFERENCES
59; Declare variables used in this module but defined elsewhere
60----------------------------------------------------------------------------*/
61
62/*----------------------------------------------------------------------------
63; SIMPLE TYPEDEF'S
64----------------------------------------------------------------------------*/
65
66/*----------------------------------------------------------------------------
67; ENUMERATED TYPEDEF'S
68----------------------------------------------------------------------------*/
69
70/*----------------------------------------------------------------------------
71; STRUCTURES TYPEDEF'S
72----------------------------------------------------------------------------*/
73
74/*----------------------------------------------------------------------------
75; GLOBAL FUNCTION DEFINITIONS
76; Function Prototype declaration
77----------------------------------------------------------------------------*/
78
79void apply_ms_synt(
80    const FrameInfo * const pFrameInfo,
81    const Int        group[],
82    const Bool       mask_map[],
83    const Int        codebook_map[],
84    Int32      coefLeft[],
85    Int32      coefRight[],
86    Int        q_formatLeft[MAXBANDS],
87    Int        q_formatRight[MAXBANDS]);
88
89/*----------------------------------------------------------------------------
90; END
91----------------------------------------------------------------------------*/
92#endif
93
94
95