OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mixable
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/interface/
audio_conference_mixer.h
60
bool
mixable
) = 0;
61
//
mixable
is set to true if a participant is a candidate for mixing.
63
bool&
mixable
) = 0;
70
const bool
mixable
) = 0;
71
//
mixable
is set to true if the participant is mixed anonymously.
73
bool&
mixable
) = 0;
/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/
audio_conference_mixer_impl.h
80
bool
mixable
) OVERRIDE;
82
bool&
mixable
) OVERRIDE;
85
MixerParticipant& participant, const bool
mixable
) OVERRIDE;
87
MixerParticipant& participant, bool&
mixable
) OVERRIDE;
audio_conference_mixer_impl.cc
469
bool
mixable
) {
470
if (!
mixable
) {
481
if(!(
mixable
^ isMixed)) {
483
"
Mixable
is aready %s",
488
if(
mixable
) {
496
mixable
? "add" : "remove");
518
bool&
mixable
) {
520
mixable
= IsParticipantInList(participant, &_participantList);
543
const bool
mixable
= RemoveParticipantFromList(participant,
local
545
if(!
mixable
) {
[
all
...]
/external/chromium_org/third_party/webrtc/voice_engine/
output_mixer.h
62
bool
mixable
);
65
bool
mixable
);
output_mixer.cc
241
bool
mixable
)
243
return _mixerModule.SetMixabilityStatus(participant,
mixable
);
248
bool
mixable
)
250
return _mixerModule.SetAnonymousMixabilityStatus(participant,
mixable
);
Completed in 33 milliseconds