Home
last modified time | relevance | path

Searched refs:GetMixerChannelCount (Results 1 – 3 of 3) sorted by relevance

/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerInput.h56 int GetMixerChannelCount();
119 MixerInput::GetMixerChannelCount() in GetMixerChannelCount() function
H A DAudioMixer.cpp1382 …if (fCore->Settings()->UseBalanceControl() && input->GetMixerChannelCount() == 2 && 1 /*channel ma… in GetParameterValue()
1390 if (*ioSize < input->GetMixerChannelCount() * sizeof(float)) in GetParameterValue()
1392 *ioSize = input->GetMixerChannelCount() * sizeof(float); in GetParameterValue()
1393 for (int chan = 0; chan < input->GetMixerChannelCount(); chan++) in GetParameterValue()
1609 …if (fCore->Settings()->UseBalanceControl() && input->GetMixerChannelCount() == 2 && 1 /*channel ma… in SetParameterValue()
1621 if (size < input->GetMixerChannelCount() * sizeof(float)) in SetParameterValue()
1623 for (int chan = 0; chan < input->GetMixerChannelCount(); chan++) in SetParameterValue()
1770 && in->GetMixerChannelCount() == 2 && 1 in UpdateParameterWeb()
1783 ->SetChannelCount(in->GetMixerChannelCount()); in UpdateParameterWeb()
H A DMixerCore.cpp605 int count = input->GetMixerChannelCount(); in _MixThread()