1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
/****************************************************************************
(C) Copyright Fraunhofer IIS (2005)
All Rights Reserved
Please be advised that this software and/or program delivery is
Confidential Information of Fraunhofer and subject to and covered by the
Fraunhofer IIS Software Evaluation Agreement
between Google Inc. and Fraunhofer
effective and in full force since March 1, 2012.
You may use this software and/or program only under the terms and
conditions described in the above mentioned Fraunhofer IIS Software
Evaluation Agreement. Any other and/or further use requires a separate agreement.
This software and/or program is protected by copyright law and international
treaties. Any reproduction or distribution of this software and/or program,
or any portion of it, may result in severe civil and criminal penalties, and
will be prosecuted to the maximum extent possible under law.
$Id$
*******************************************************************************/
/*!
\file
\brief Sbr decoder $Revision: 36841 $
*/
#ifndef __SBR_DEC_H
#define __SBR_DEC_H
#include "sbrdecoder.h"
#include "lpp_tran.h"
#include "qmf.h"
#include "env_calc.h"
#include "FDK_audio.h"
#include "sbrdec_drc.h"
#define SACDEC_ALIGNMENT_FIX
typedef struct
{
QMF_FILTER_BANK AnalysiscQMF;
QMF_FILTER_BANK SynthesisQMF;
SBR_CALCULATE_ENVELOPE SbrCalculateEnvelope;
SBR_LPP_TRANS LppTrans;
QMF_SCALE_FACTOR sbrScaleFactor;
QMF_SCALE_FACTOR sbrScaleFactorRight;
/*! Delayed spectral data needed for the dynamic framing of SBR. Not required in case of CLDFB */
FIXP_DBL * pSbrOverlapBuffer;
/* References to workbuffers */
FIXP_DBL * WorkBuffer1;
FIXP_DBL * WorkBuffer2;
/* QMF filter states */
FIXP_QAS anaQmfStates[(320)];
FIXP_QSS * pSynQmfStates;
/* Reference pointer arrays for QMF time slots,
mixed among overlap and current slots. */
FIXP_DBL * QmfBufferReal[(((1024)/(32))+(6))];
FIXP_DBL * QmfBufferImag[(((1024)/(32))+(6))];
int useLP;
/* QMF domain extension time slot reference pointer array */
SBRDEC_DRC_CHANNEL sbrDrcChannel;
} SBR_DEC;
typedef SBR_DEC *HANDLE_SBR_DEC;
typedef struct
{
SBR_FRAME_DATA frameData[(1)+1];
SBR_PREV_FRAME_DATA prevFrameData;
SBR_DEC SbrDec;
}
SBR_CHANNEL;
typedef SBR_CHANNEL *HANDLE_SBR_CHANNEL;
void
SbrDecodeAndProcess (HANDLE_SBR_DEC hSbrDec,
INT_PCM *timeIn,
HANDLE_SBR_HEADER_DATA hHeaderData,
HANDLE_SBR_FRAME_DATA hFrameData,
HANDLE_SBR_PREV_FRAME_DATA hPrevFrameData,
int applyProcessing,
int channelNr
, UCHAR useLP
);
void
SbrConstructTimeOutput (HANDLE_SBR_DEC hSbrDec, /*!< handle to Decoder channel */
INT_PCM *timeOut, /*!< pointer to output time signal */
HANDLE_SBR_HEADER_DATA hHeaderData,/*!< Static control data */
HANDLE_SBR_PREV_FRAME_DATA hPrevFrameData, /*!< Some control data of last frame */
int channelNr
,UCHAR useLP
);
void
sbr_dec (HANDLE_SBR_DEC hSbrDec, /*!< handle to Decoder channel */
INT_PCM *timeIn, /*!< pointer to input time signal */
INT_PCM *timeOut, /*!< pointer to output time signal */
HANDLE_SBR_DEC hSbrDecRight, /*!< handle to Decoder channel right */
INT_PCM *timeOutRight, /*!< pointer to output time signal */
const int strideIn, /*!< Time data traversal strideIn */
const int strideOut, /*!< Time data traversal strideOut */
HANDLE_SBR_HEADER_DATA hHeaderData,/*!< Static control data */
HANDLE_SBR_FRAME_DATA hFrameData, /*!< Control data of current frame */
HANDLE_SBR_PREV_FRAME_DATA hPrevFrameData, /*!< Some control data of last frame */
const int applyProcessing, /*!< Flag for SBR operation */
HANDLE_PS_DEC h_ps_d,
const UINT flags
);
SBR_ERROR
createSbrDec (SBR_CHANNEL * hSbrChannel,
HANDLE_SBR_HEADER_DATA hHeaderData,
TRANSPOSER_SETTINGS *pSettings,
const int downsampleFac,
const UINT qmfFlags,
const UINT flags,
const int overlap,
int chan);
int
deleteSbrDec (SBR_CHANNEL * hSbrChannel);
SBR_ERROR
resetSbrDec (HANDLE_SBR_DEC hSbrDec,
HANDLE_SBR_HEADER_DATA hHeaderData,
HANDLE_SBR_PREV_FRAME_DATA hPrevFrameData,
const int useLP,
const int downsampleFac);
#endif
|