OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DOWNSAMPLER
(Results
1 - 3
of
3
) sorted by null
/external/aac/libSBRenc/src/
resampler.h
118
/*
Downsampler
Structure */
127
}
DOWNSAMPLER
;
131
* \brief Initialized a given
downsampler
structure.
133
INT FDKaacEnc_InitDownsampler(
DOWNSAMPLER
*
DownSampler
, /*!< pointer to
downsampler
instance */
135
INT ratio); /*!<
downsampler
ratio */
139
*
downsampler
ratio.
141
INT FDKaacEnc_Downsample(
DOWNSAMPLER
*
DownSampler
, /*!< pointer to downsampler instance *
[
all
...]
sbr.h
112
DOWNSAMPLER
downSampler
;
137
DOWNSAMPLER
lfeDownSampler;
149
INT inputDataDelay; /* delay caused by
downsampler
, in/out buffer at sbrEncoder_EncodeFrame */
resampler.cpp
300
\brief Reset
downsampler
instance and clear delay lines
305
INT FDKaacEnc_InitDownsampler(
DOWNSAMPLER
*
DownSampler
, /*!< pointer to
downsampler
instance */
307
int ratio) /*!<
downsampler
ratio (only 2 supported at the momment) */
314
FDKmemclear(
DownSampler
->downFilter.states, sizeof(
DownSampler
->downFilter.states));
315
DownSampler
->downFilter.ptr = 0;
328
DownSampler
->downFilter.coeffa = currentSet->coeffa;
331
DownSampler
->downFilter.gain = currentSet->g
[
all
...]
Completed in 338 milliseconds