Home
last modified time | relevance | path

Searched refs:_audioChannel (Results 1 – 13 of 13) sorted by relevance

/dports/net/yate/yate-6.4.0-1/libs/miniwebrtc/
H A Dmodule_common_types.h780 _audioChannel(1), in AudioFrame()
864 _audioChannel = rhs._audioChannel;
878 assert((_audioChannel > 0) && (_audioChannel < 3));
880 (_audioChannel < 1))
896 assert((_audioChannel > 0) && (_audioChannel < 3)); in Append()
898 (_audioChannel < 1)) in Append()
902 if(_audioChannel != rhs._audioChannel) in Append()
938 assert((_audioChannel > 0) && (_audioChannel < 3));
944 if(_audioChannel != rhs._audioChannel)
1011 assert((_audioChannel > 0) && (_audioChannel < 3));
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/tgcalls/tgcalls/
H A DMediaManager.cpp382 _audioChannel->SetSendParameters(audioSendPrameters); in MediaManager()
396 _audioChannel->SetPlayout(true); in MediaManager()
454 _audioChannel->OnReadyToSend(false); in ~MediaManager()
455 _audioChannel->SetSend(false); in ~MediaManager()
458 _audioChannel->SetPlayout(false); in ~MediaManager()
460 _audioChannel->RemoveRecvStream(_ssrcAudio.incoming); in ~MediaManager()
461 _audioChannel->RemoveSendStream(_ssrcAudio.outgoing); in ~MediaManager()
463 _audioChannel->SetInterface(nullptr); in ~MediaManager()
509 if (_audioChannel) { in setIsConnected()
510 _audioChannel->OnReadyToSend(_isConnected); in setIsConnected()
[all …]
H A DMediaManager.h157 std::unique_ptr<cricket::VoiceMediaChannel> _audioChannel; variable
/dports/net/yate/yate-6.4.0-1/libs/miniwebrtc/audio/processing/
H A Daudio_processing_impl.cc264 if (frame->_audioChannel != num_input_channels_) { in ProcessStream()
278 frame->_audioChannel; in ProcessStream()
291 frame->_audioChannel = num_output_channels_; in ProcessStream()
370 frame->_audioChannel; in ProcessStream()
395 if (frame->_audioChannel != num_reverse_channels_) { in AnalyzeReverseStream()
409 frame->_audioChannel; in AnalyzeReverseStream()
H A Daudio_buffer.cc191 assert(frame->_audioChannel <= max_num_channels_); in DeinterleaveFrom()
194 num_channels_ = frame->_audioChannel; in DeinterleaveFrom()
223 assert(frame->_audioChannel == num_channels_); in InterleaveTo()
/dports/games/fheroes2/fheroes2-0.9.11/src/engine/
H A Dsmk_decoder.cpp109 _audioChannel.resize( channelCount ); in SMKVideoSequence()
115 std::vector<uint8_t> & wavData = _audioChannel[channelCount]; in SMKVideoSequence()
236 return _audioChannel; in getAudioChannels()
H A Dsmk_decoder.h63 std::vector<std::vector<uint8_t> > _audioChannel;
/dports/games/scummvm/scummvm-2.5.1/engines/buried/environ/
H A Dscene_common.cpp475 _audioChannel = -1; in InteractiveNewsNetwork()
516 if (_playingAudio && _audioChannel != -1) { in preExitRoom()
517 _vm->_sound->stopSoundEffect(_audioChannel); in preExitRoom()
518 _audioChannel = -1; in preExitRoom()
581 if (_playingAudio && _audioChannel != -1) { in mouseUp()
582 _vm->_sound->stopSoundEffect(_audioChannel); in mouseUp()
583 _audioChannel = -1; in mouseUp()
623_audioChannel = _vm->_sound->playSoundEffect(_vm->getFilePath(IDS_INN_MEDIA_FILENAME_BASE + mediaC… in mouseUp()
675 if (_playingAudio && _audioChannel != -1 && !_vm->_sound->isSoundEffectPlaying(_audioChannel)) { in timerCallback()
676 _audioChannel = -1; in timerCallback()
H A Dscene_common.h232 int _audioChannel; variable
/dports/games/scummvm/scummvm-2.5.1/engines/ags/plugins/core/
H A Dcore.h64 AudioChannel _audioChannel;
H A Dcore.cpp30 _audioChannel.AGS_EngineStartup(engine); in AGS_EngineStartup()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/tgcalls/tgcalls/v2/
H A DInstanceV2Impl.cpp689 _audioChannel->SetPayloadTypeDemuxingEnabled(false); in IncomingV2AudioChannel()
690_audioChannel->SetLocalContent(outgoingAudioDescription.get(), webrtc::SdpType::kOffer, nullptr); in IncomingV2AudioChannel()
691_audioChannel->SetRemoteContent(incomingAudioDescription.get(), webrtc::SdpType::kAnswer, nullptr); in IncomingV2AudioChannel()
699 _audioChannel->SignalSentPacket().connect(this, &IncomingV2AudioChannel::OnSentPacket_w); in IncomingV2AudioChannel()
702 _audioChannel->Enable(true); in IncomingV2AudioChannel()
706 _audioChannel->SignalSentPacket().disconnect(this); in ~IncomingV2AudioChannel()
707 _audioChannel->Enable(false); in ~IncomingV2AudioChannel()
708 _channelManager->DestroyVoiceChannel(_audioChannel); in ~IncomingV2AudioChannel()
709 _audioChannel = nullptr; in ~IncomingV2AudioChannel()
713 _audioChannel->media_channel()->SetOutputVolume(_ssrc, value); in setVolume()
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/tgcalls/tgcalls/group/
H A DGroupInstanceCustomImpl.cpp936_audioChannel = _channelManager->CreateVoiceChannel(_call, cricket::MediaConfig(), rtpTransport, _… in IncomingAudioChannel()
973_audioChannel->SetLocalContent(outgoingAudioDescription.get(), webrtc::SdpType::kOffer, nullptr); in IncomingAudioChannel()
974_audioChannel->SetRemoteContent(incomingAudioDescription.get(), webrtc::SdpType::kAnswer, nullptr); in IncomingAudioChannel()
975 _audioChannel->SetPayloadTypeDemuxingEnabled(false); in IncomingAudioChannel()
982_audioChannel->media_channel()->SetRawAudioSink(ssrc.networkSsrc, std::move(audioLevelSink)); in IncomingAudioChannel()
988 _audioChannel->Enable(true); in IncomingAudioChannel()
994 _channelManager->DestroyVoiceChannel(_audioChannel); in ~IncomingAudioChannel()
995 _audioChannel = nullptr; in ~IncomingAudioChannel()
1001 _audioChannel->media_channel()->SetOutputVolume(_ssrc.networkSsrc, value); in setVolume()
1022 cricket::VoiceChannel *_audioChannel = nullptr; member in tgcalls::__anon2cee46520111::IncomingAudioChannel