Home
last modified time | relevance | path

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

/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerInput.cpp345 MixerInput::AddInputChannelDestination(int channel, int destination_type) in AddInputChannelDestination() argument
347 uint32 mask = ChannelTypeToChannelMask(destination_type); in AddInputChannelDestination()
357 if (-1 != GetInputChannelForDestination(destination_type)) { in AddInputChannelDestination()
359 "already assigned to channel %d\n", destination_type, in AddInputChannelDestination()
360 GetInputChannelForDestination(destination_type)); in AddInputChannelDestination()
373 MixerInput::RemoveInputChannelDestination(int channel, int destination_type) in RemoveInputChannelDestination() argument
375 uint32 mask = ChannelTypeToChannelMask(destination_type); in RemoveInputChannelDestination()
393 MixerInput::HasInputChannelDestination(int channel, int destination_type) in HasInputChannelDestination() argument
397 if (destination_type < 0 || destination_type >= MAX_CHANNEL_TYPES) in HasInputChannelDestination()
400 & ChannelTypeToChannelMask(destination_type); in HasInputChannelDestination()
[all …]
H A DMixerInput.h90 int destination_type; member
165 *type = fMixerChannelInfo[mixerChannel].destination_type; in GetMixerChannelInfo()