Home
last modified time | relevance | path

Searched refs:AEChannel (Results 1 – 25 of 27) sorted by relevance

12

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/AudioEngine/Utils/
H A DAEChannelInfo.h24 explicit CAEChannelInfo(const enum AEChannel* rhs);
28 CAEChannelInfo& operator=(const enum AEChannel* rhs);
32 CAEChannelInfo& operator+=(const enum AEChannel& rhs);
33 CAEChannelInfo& operator-=(const enum AEChannel& rhs);
34 enum AEChannel operator[](unsigned int i) const;
41 static const char* GetChName(const enum AEChannel ch);
42 bool HasChannel(const enum AEChannel ch) const;
46 void ReplaceChannel(const enum AEChannel from, const enum AEChannel to);
52 enum AEChannel m_channels[AE_CH_MAX];
H A DAEChannelInfo.cpp21 CAEChannelInfo::CAEChannelInfo(const enum AEChannel* rhs) in CAEChannelInfo()
123 for (AEChannel& channel : m_channels) in Reset()
134 memcpy(m_channels, rhs.m_channels, sizeof(enum AEChannel) * rhs.m_channelCount); in operator =()
139 CAEChannelInfo& CAEChannelInfo::operator=(const enum AEChannel* rhs) in operator =()
161 static enum AEChannel layouts[AE_CH_LAYOUT_MAX][9] = { in operator =()
198 CAEChannelInfo& CAEChannelInfo::operator+=(const enum AEChannel& rhs) in operator +=()
207 CAEChannelInfo& CAEChannelInfo::operator-=(const enum AEChannel& rhs) in operator -=()
225 enum AEChannel CAEChannelInfo::operator[](unsigned int i) const in operator []()
271 const char* CAEChannelInfo::GetChName(const enum AEChannel ch) in GetChName()
304 bool CAEChannelInfo::HasChannel(const enum AEChannel ch) const in HasChannel()
[all …]
H A DAEUtil.h194 static uint64_t GetAVChannel(enum AEChannel aechannel);
195 static int GetAVChannelIndex(enum AEChannel aechannel, uint64_t layout);
H A DAEChannelData.h14 enum AEChannel enum
H A DAEUtil.cpp556 uint64_t CAEUtil::GetAVChannel(enum AEChannel aechannel) in GetAVChannel()
583 int CAEUtil::GetAVChannelIndex(enum AEChannel aechannel, uint64_t layout) in GetAVChannelIndex()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/AudioEngine/Engines/ActiveAE/
H A DActiveAESound.h32 void SetChannel(AEChannel channel) override { m_channel = channel; } in SetChannel()
33 AEChannel GetChannel() override { return m_channel; } in GetChannel()
60 AEChannel m_channel;
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/AudioEngine/Interfaces/
H A DAESound.h33 virtual void SetChannel(AEChannel channel) = 0;
36 virtual AEChannel GetChannel() = 0;
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/AudioEngine/Sinks/windows/
H A DAESinkFactoryWin.h70 static const enum AEChannel layoutsList[][16] =
106 static enum AEChannel layoutsByChCount[9][9] = {
126 static const enum AEChannel AEChannelNames[] = {AE_CH_RAW,
215 …static DWORD ChLayoutToChMask(const enum AEChannel * layout, unsigned int * numberOfChannels = NUL…
H A DAESinkFactoryWin.cpp76 …DWORD CAESinkFactoryWin::ChLayoutToChMask(const enum AEChannel * layout, unsigned int * numberOfCh… in ChLayoutToChMask()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/addons/interfaces/
H A DAudioEngine.h32 static AEChannel TranslateAEChannelToKodi(AudioEngineChannel channel);
33 static AudioEngineChannel TranslateAEChannelToAddon(AEChannel channel);
H A DAudioEngine.cpp69 AEChannel Interface_AudioEngine::TranslateAEChannelToKodi(AudioEngineChannel channel) in TranslateAEChannelToKodi()
123 AudioEngineChannel Interface_AudioEngine::TranslateAEChannelToAddon(AEChannel channel) in TranslateAEChannelToAddon()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/AudioEngine/Sinks/
H A DAESinkALSA.h54 static AEChannel ALSAChannelToAEChannel(unsigned int alsaChannel);
55 static unsigned int AEChannelToALSAChannel(AEChannel aeChannel);
H A DAESinkALSA.cpp33 static enum AEChannel LegacyALSAChannelMap[ALSA_MAX_CHANNELS + 1] = {
39 static enum AEChannel LegacyALSAChannelMap51Wide[ALSA_MAX_CHANNELS + 1] = {
45 static enum AEChannel ALSAChannelMapPassthrough[ALSA_MAX_CHANNELS + 1] = {
136 enum AEChannel* channelMap = LegacyALSAChannelMap; in GetChannelLayoutLegacy()
222 AEChannel CAESinkALSA::ALSAChannelToAEChannel(unsigned int alsaChannel) in ALSAChannelToAEChannel()
224 AEChannel aeChannel; in ALSAChannelToAEChannel()
252 unsigned int CAESinkALSA::AEChannelToALSAChannel(AEChannel aeChannel) in AEChannelToALSAChannel()
H A DAESinkPULSE.cpp370 static AEChannel PAChannelToAEChannel(pa_channel_position_t channel) in PAChannelToAEChannel()
372 AEChannel ae_channel; in PAChannelToAEChannel()
398 static pa_channel_position_t AEChannelToPAChannel(AEChannel ae_channel) in AEChannelToPAChannel()
446 AEChannel ch; in PAChannelToAEChannelMap()
H A DAESinkAUDIOTRACK.cpp41 static const AEChannel KnownChannels[] = {AE_CH_FL, AE_CH_FR, AE_CH_FC, AE_CH_LFE,
68 static AEChannel AUDIOTRACKChannelToAEChannel(int atChannel) in AUDIOTRACKChannelToAEChannel()
70 AEChannel aeChannel; in AUDIOTRACKChannelToAEChannel()
90 static int AEChannelToAUDIOTRACKChannel(AEChannel aeChannel) in AEChannelToAUDIOTRACKChannel()
H A DAESinkSNDIO.cpp21 static enum AEChannel channelMap[] =
H A DAESinkOSS.cpp31 static enum AEChannel OSSChannelMap[9] =
H A DAESinkDirectSound.cpp51 static const enum AEChannel AEChannelNamesDS[] = {AE_CH_FL, AE_CH_FR, AE_CH_FC, AE_CH_LFE, AE_CH_BL…
H A DAESinkDARWINIOS.mm26 static enum AEChannel CAChannelMap[CA_MAX_CHANNELS + 1] = {
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/RetroPlayer/audio/
H A DAudioTranslator.h33 static AEChannel TranslateAudioChannel(AudioChannel channel);
H A DAudioTranslator.cpp26 AEChannel CAudioTranslator::TranslateAudioChannel(AudioChannel channel) in TranslateAudioChannel()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/AudioEngine/Sinks/osx/
H A DAEDeviceEnumerationOSX.cpp21 static enum AEChannel CAChannelMap[CA_MAX_CHANNELS + 1] = {
644 enum AEChannel AEDeviceEnumerationOSX::caChannelToAEChannel(const AudioChannelLabel &CAChannelLabel… in caChannelToAEChannel()
646 enum AEChannel ret = AE_CH_NULL; in caChannelToAEChannel()
744 ret = (enum AEChannel)unknownChannel++; in caChannelToAEChannel()
811 enum AEChannel currentChannel; in GetAEChannelMap()
H A DAEDeviceEnumerationOSX.h188 enum AEChannel caChannelToAEChannel(const AudioChannelLabel &CAChannelLabel) const;
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/RetroPlayer/streams/
H A DRetroPlayerAudio.cpp63 AEChannel channel = CAudioTranslator::TranslateAudioChannel(*it); in OpenStream()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/VideoPlayer/DVDCodecs/Audio/
H A DDVDAudioCodecAndroidMediaCodec.cpp43 static const AEChannel KnownChannels[] = { AE_CH_FL, AE_CH_FR, AE_CH_FC, AE_CH_LFE, AE_CH_SL, AE_CH…

12