Home
last modified time | relevance | path

Searched refs:PI__IPD (Results 1 – 2 of 2) sorted by relevance

/external/aac/libSACdec/src/
Dsac_smoothing.cpp257 while (tmpL > phaseLeftSmooth__FDK[pb] + PI__IPD) tmpL -= PI__IPD << 1; in SpatialDecSmoothOPD()
258 while (tmpL < phaseLeftSmooth__FDK[pb] - PI__IPD) tmpL += PI__IPD << 1; in SpatialDecSmoothOPD()
259 while (tmpR > phaseRightSmooth__FDK[pb] + PI__IPD) tmpR -= PI__IPD << 1; in SpatialDecSmoothOPD()
260 while (tmpR < phaseRightSmooth__FDK[pb] - PI__IPD) tmpR += PI__IPD << 1; in SpatialDecSmoothOPD()
272 while (tmp > PI__IPD) tmp -= PI__IPD << 1; in SpatialDecSmoothOPD()
273 while (tmp < -PI__IPD) tmp += PI__IPD << 1; in SpatialDecSmoothOPD()
276 PI__IPD)) { in SpatialDecSmoothOPD()
281 while (phaseLeftSmooth__FDK[pb] > PI__IPD << 1) in SpatialDecSmoothOPD()
282 phaseLeftSmooth__FDK[pb] -= PI__IPD << 1; in SpatialDecSmoothOPD()
284 phaseLeftSmooth__FDK[pb] += PI__IPD << 1; in SpatialDecSmoothOPD()
[all …]
Dsac_rom.h157 #define PI__IPD (FL2FXCONST_DBL(3.1415926535897932f / (float)(1 << IPD_SCALE))) macro