OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:peakdiff
(Results
1 - 2
of
2
) sorted by null
/external/opencore/codecs_v2/audio/aac/dec/src/
ps_pwr_transient_detection.cpp
197
Int32
peakDiff
;
295
peakDiff
= *ptr_PrevPeakDiff;
300
peakDiff
-=
peakDiff
>> 2;
310
peakDiff
+= ((accu - *aPower) >> 2);
315
*(ptr_PrevPeakDiff++) =
peakDiff
;
321
peakDiff
+=
peakDiff
>> 1; /* transient impact factor == 1.5 */
323
if (
peakDiff
<= nrg)
329
pv_div(nrg,
peakDiff
, &result)
[
all
...]
/frameworks/base/media/libstagefright/codecs/aacdec/
ps_pwr_transient_detection.cpp
197
Int32
peakDiff
;
295
peakDiff
= *ptr_PrevPeakDiff;
300
peakDiff
-=
peakDiff
>> 2;
310
peakDiff
+= ((accu - *aPower) >> 2);
315
*(ptr_PrevPeakDiff++) =
peakDiff
;
321
peakDiff
+=
peakDiff
>> 1; /* transient impact factor == 1.5 */
323
if (
peakDiff
<= nrg)
329
pv_div(nrg,
peakDiff
, &result)
[
all
...]
Completed in 66 milliseconds