HomeSort by relevance Sort by last modified time
    Searched refs:SoundSystemInterface (Results 1 - 15 of 15) sorted by null

  /external/webrtc/webrtc/sound/
platformsoundsystem.h 16 class SoundSystemInterface;
19 SoundSystemInterface *CreatePlatformSoundSystem();
soundsystemfactory.h 18 class SoundSystemInterface;
20 typedef rtc::ReferenceCountedSingletonFactory<SoundSystemInterface>
23 typedef rtc::rcsf_ptr<SoundSystemInterface> SoundSystemHandle;
soundsysteminterface.cc 11 #include "webrtc/sound/soundsysteminterface.h"
17 void SoundSystemInterface::ClearSoundDeviceLocatorList(
18 SoundSystemInterface::SoundDeviceLocatorList *devices) {
platformsoundsystem.cc 22 SoundSystemInterface *CreatePlatformSoundSystem() {
soundsysteminterface.h 31 class SoundSystemInterface {
78 virtual ~SoundSystemInterface() {}
104 SoundSystemInterface() {}
107 RTC_DISALLOW_COPY_AND_ASSIGN(SoundSystemInterface);
soundsystemproxy.h 14 #include "webrtc/sound/soundsysteminterface.h"
22 class SoundSystemProxy : public SoundSystemInterface {
42 SoundSystemInterface *wrapped_;
nullsoundsystem.h 14 #include "webrtc/sound/soundsysteminterface.h"
24 class NullSoundSystem : public SoundSystemInterface {
26 static SoundSystemInterface *Create() {
nullsoundsystem.cc 47 *volume = SoundSystemInterface::kMinVolume;
80 *volume = SoundSystemInterface::kMinVolume;
109 SoundSystemInterface::SoundDeviceLocatorList *devices) {
118 SoundSystemInterface::SoundDeviceLocatorList *devices) {
automaticallychosensoundsystem_unittest.cc 26 static SoundSystemInterface *Create() {
39 static SoundSystemInterface *Create() {
56 static SoundSystemInterface *Create() {
71 static SoundSystemInterface *Create() {
86 static SoundSystemInterface *Create() {
101 static SoundSystemInterface *Create() {
automaticallychosensoundsystem.h 14 #include "webrtc/sound/soundsysteminterface.h"
23 typedef SoundSystemInterface *(*SoundSystemCreator)();
40 rtc::scoped_ptr<SoundSystemInterface> sound_systems_[kNumSoundSystems];
alsasoundsystem.h 15 #include "webrtc/sound/soundsysteminterface.h"
26 class AlsaSoundSystem : public SoundSystemInterface {
31 static SoundSystemInterface *Create() {
pulseaudiosoundsystem.h 17 #include "webrtc/sound/soundsysteminterface.h"
31 class PulseAudioSoundSystem : public SoundSystemInterface {
36 static SoundSystemInterface *Create() {
pulseaudiosoundsystem.cc 33 // Lookup table from the rtc format enum in soundsysteminterface.h to
36 // The order here must match the order in soundsysteminterface.h
91 // We just linearly map the 0-255 scale of SoundSystemInterface onto
95 volume / SoundSystemInterface::kMaxVolume;
99 return SoundSystemInterface::kMinVolume +
100 (SoundSystemInterface::kMaxVolume - SoundSystemInterface::kMinVolume) *
156 if (!(flags_ & SoundSystemInterface::FLAG_REPORT_LATENCY)) {
280 // PA UI. To get a single volume for SoundSystemInterface we just take the
285 // Now map onto the SoundSystemInterface range
    [all...]
alsasoundsystem.cc 29 // Lookup table from the rtc format enum in soundsysteminterface.h to
32 // The order here must match the order in soundsysteminterface.h
38 // The order here must match the order in soundsysteminterface.h
100 // already and the current clients of SoundSystemInterface do not run
139 if (!(flags_ & SoundSystemInterface::FLAG_REPORT_LATENCY)) {
368 // No client of SoundSystemInterface does this, so let's not support it.
669 // SoundSystemInterface only supports interleaved audio.
  /external/webrtc/talk/media/devices/
linuxdevicemanager.cc 37 #include "webrtc/sound/soundsysteminterface.h"
105 rtc::SoundSystemInterface::SoundDeviceLocatorList list;
121 for (rtc::SoundSystemInterface::SoundDeviceLocatorList::iterator i = list.begin();
126 rtc::SoundSystemInterface::ClearSoundDeviceLocatorList(&list);

Completed in 332 milliseconds