Searched refs:mulRL (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/av/media/libaudioprocessing/ |
H A D | AudioResamplerSinc.cpp | 148 int32_t mulRL(int left, int32_t in, uint32_t vRL) in mulRL() function 438 out[0] += 2 * mulRL(1, l, vRL); in filterCoefficient() 439 out[1] += 2 * mulRL(0, r, vRL); in filterCoefficient()
|
H A D | AudioResamplerFirOps.h | 66 int32_t mulRL(int left, int32_t in, uint32_t vRL)
|
H A D | AudioMixerBase.cpp | 1253 int32_t l = mulRL(1, rl, vrl); in process__oneTrack16BitsStereoNoResampling() 1254 int32_t r = mulRL(0, rl, vrl); in process__oneTrack16BitsStereoNoResampling() 1268 int32_t l = mulRL(1, rl, vrl) >> 12; in process__oneTrack16BitsStereoNoResampling() 1269 int32_t r = mulRL(0, rl, vrl) >> 12; in process__oneTrack16BitsStereoNoResampling() 1279 int32_t l = mulRL(1, rl, vrl) >> 12; in process__oneTrack16BitsStereoNoResampling() 1280 int32_t r = mulRL(0, rl, vrl) >> 12; in process__oneTrack16BitsStereoNoResampling()
|
H A D | AudioResamplerFirProcess.h | 61 return 2 * mulRL(0, value, volume); // Note: only use top 16b in volumeAdjust()
|
/aosp12/system/media/audio_utils/include/audio_utils/ |
H A D | primitives.h | 1240 int32_t mulRL(int left, uint32_t inRL, uint32_t vRL) in mulRL() function
|