Home
last modified time | relevance | path

Searched refs:MAX_NUM_CHANNELS (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libeffects/downmix/tests/
Ddownmixtest.cpp29 #define MAX_NUM_CHANNELS 8 macro
122 std::vector<float> outFloat(FRAME_LENGTH * MAX_NUM_CHANNELS); in DownmixExecute()
123 std::vector<float> inFloat(FRAME_LENGTH * MAX_NUM_CHANNELS); in DownmixExecute()
136 std::vector<short> inS16(FRAME_LENGTH * MAX_NUM_CHANNELS); in DownmixExecute()
137 std::vector<short> outS16(FRAME_LENGTH * MAX_NUM_CHANNELS); in DownmixExecute()
/frameworks/av/media/libaudioprocessing/
DAudioMixerBase.cpp75 return audio_channel_count_from_out_mask(channelMask) <= MAX_NUM_CHANNELS; in isValidChannelMask()
711 mOutputTemp.reset(new int32_t[MAX_NUM_CHANNELS * mFrameCount]); in process__validate()
714 mResampleTemp.reset(new int32_t[MAX_NUM_CHANNELS * mFrameCount]); in process__validate()
794 memset(temp, 0, outFrameCount * MAX_NUM_CHANNELS * sizeof(int32_t)); in track__genericResample()
1097 int32_t outTemp[BLOCKSIZE * MAX_NUM_CHANNELS] __attribute__((aligned(32))); in process__genericNoResampling()
1614 LOG_ALWAYS_FATAL_IF(channelCount > MAX_NUM_CHANNELS); in getTrackHook()
1731 LOG_ALWAYS_FATAL_IF(channelCount > MAX_NUM_CHANNELS); in getProcessHook()
/frameworks/av/media/libaudioprocessing/include/media/
DAudioMixerBase.h48 static constexpr uint32_t MAX_NUM_CHANNELS = FCC_LIMIT;
/frameworks/av/services/audioflinger/fastpath/
DFastMixer.cpp225 LOG_ALWAYS_FATAL_IF(mSinkChannelCount > AudioMixer::MAX_NUM_CHANNELS); in onStateChange()