Home
last modified time | relevance | path

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

/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerOutput.cpp24 fOutputChannelInfo(0), in MixerOutput()
39 delete fOutputChannelInfo; in ~MixerOutput()
85 output_chan_info *oldInfo = fOutputChannelInfo; in UpdateOutputChannels()
89 fOutputChannelInfo = new output_chan_info[fOutputChannelCount]; in UpdateOutputChannels()
91 fOutputChannelInfo[i].channel_type = GetChannelType(i, fOutput.format.u.raw_audio.channel_mask); in UpdateOutputChannels()
92 fOutputChannelInfo[i].channel_gain = 1.0; in UpdateOutputChannels()
93 fOutputChannelInfo[i].source_count = 1; in UpdateOutputChannels()
94 fOutputChannelInfo[i].source_gain[0] = 1.0; in UpdateOutputChannels()
95 fOutputChannelInfo[i].source_type[0] = fOutputChannelInfo[i].channel_type; in UpdateOutputChannels()
98 fOutputChannelInfo[i].source_gain_cache[j] = 0.0; in UpdateOutputChannels()
[all …]
H A DMixerOutput.h95 output_chan_info *fOutputChannelInfo; //array variable
113 return fOutputChannelInfo[channel].channel_gain; in GetOutputChannelGain()
121 return fOutputChannelInfo[channel].source_count; in GetOutputChannelSourceCount()
131 ASSERT(source_index >= 0 && source_index < fOutputChannelInfo[channel].source_count); in GetOutputChannelSourceInfoAt()
132 *source_type = fOutputChannelInfo[channel].source_type[source_index]; in GetOutputChannelSourceInfoAt()
133 *source_gain = fOutputChannelInfo[channel].source_gain[source_index]; in GetOutputChannelSourceInfoAt()