OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SoundSystemInterface
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/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
DISALLOW_COPY_AND_ASSIGN(
SoundSystemInterface
);
nullsoundsystem.h
14
#include "webrtc/sound/
soundsysteminterface
.h"
24
class NullSoundSystem : public
SoundSystemInterface
{
26
static
SoundSystemInterface
*Create() {
soundsystemproxy.h
14
#include "webrtc/sound/
soundsysteminterface
.h"
22
class SoundSystemProxy : public
SoundSystemInterface
{
42
SoundSystemInterface
*wrapped_;
nullsoundsystem.cc
49
*volume =
SoundSystemInterface
::kMinVolume;
83
*volume =
SoundSystemInterface
::kMinVolume;
112
SoundSystemInterface
::SoundDeviceLocatorList *devices) {
121
SoundSystemInterface
::SoundDeviceLocatorList *devices) {
automaticallychosensoundsystem_unittest.cc
24
static
SoundSystemInterface
*Create() {
37
static
SoundSystemInterface
*Create() {
54
static
SoundSystemInterface
*Create() {
69
static
SoundSystemInterface
*Create() {
84
static
SoundSystemInterface
*Create() {
99
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
29
// Lookup table from the rtc format enum in
soundsysteminterface
.h to
32
// The order here must match the order in
soundsysteminterface
.h
87
// We just linearly map the 0-255 scale of
SoundSystemInterface
onto
91
volume /
SoundSystemInterface
::kMaxVolume;
95
return
SoundSystemInterface
::kMinVolume +
96
(
SoundSystemInterface
::kMaxVolume -
SoundSystemInterface
::kMinVolume) *
152
if (!(flags_ &
SoundSystemInterface
::FLAG_REPORT_LATENCY)) {
287
// PA UI. To get a single volume for
SoundSystemInterface
we just take the
292
// Now map onto the
SoundSystemInterface
range
[
all
...]
alsasoundsystem.cc
25
// Lookup table from the rtc format enum in
soundsysteminterface
.h to
28
// The order here must match the order in
soundsysteminterface
.h
34
// The order here must match the order in
soundsysteminterface
.h
96
// already and the current clients of
SoundSystemInterface
do not run
135
if (!(flags_ &
SoundSystemInterface
::FLAG_REPORT_LATENCY)) {
366
// No client of
SoundSystemInterface
does this, so let's not support it.
672
//
SoundSystemInterface
only supports interleaved audio.
/external/chromium_org/third_party/libjingle/source/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 123 milliseconds