OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CoreAudioUtil
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/media/audio/win/
core_audio_util_win_unittest.cc
31
bool core_audio =
CoreAudioUtil
::IsSupported();
34
int capture_devices =
CoreAudioUtil
::NumberOfActiveDevices(eCapture);
35
int render_devices =
CoreAudioUtil
::NumberOfActiveDevices(eRender);
46
int render_devices =
CoreAudioUtil
::NumberOfActiveDevices(eRender);
48
int capture_devices =
CoreAudioUtil
::NumberOfActiveDevices(eCapture);
50
int total_devices =
CoreAudioUtil
::NumberOfActiveDevices(eAll);
59
CoreAudioUtil
::CreateDeviceEnumerator();
83
CoreAudioUtil
::CreateDefaultDevice(data[i].flow, data[i].role);
85
EXPECT_EQ(data[i].flow,
CoreAudioUtil
::GetDataFlow(audio_device));
89
audio_device =
CoreAudioUtil
::CreateDefaultDevice(eAll, eConsole)
[
all
...]
audio_device_listener_win_unittest.cc
33
if (!
CoreAudioUtil
::IsSupported())
68
if (!
CoreAudioUtil
::IsSupported())
87
if (!
CoreAudioUtil
::IsSupported())
core_audio_util_win.h
7
// Use media::
CoreAudioUtil
::IsSupported() for this purpose.
35
class MEDIA_EXPORT
CoreAudioUtil
{
228
CoreAudioUtil
() {}
229
~
CoreAudioUtil
() {}
230
DISALLOW_COPY_AND_ASSIGN(
CoreAudioUtil
);
audio_device_listener_win.cc
36
CoreAudioUtil
::CreateDefaultDevice(flow, role);
40
DVLOG(1) << "
CoreAudioUtil
::CreateDefaultDevice failed. No device?";
45
HRESULT hr =
CoreAudioUtil
::GetDeviceName(device, &device_name);
56
CHECK(
CoreAudioUtil
::IsSupported());
59
CoreAudioUtil
::CreateDeviceEnumerator());
164
CoreAudioUtil
::GetFriendlyName(new_device_id) : "No device")
core_audio_util_win.cc
153
bool
CoreAudioUtil
::IsSupported() {
188
base::TimeDelta
CoreAudioUtil
::RefererenceTimeToTimeDelta(REFERENCE_TIME time) {
193
AUDCLNT_SHAREMODE
CoreAudioUtil
::GetShareMode() {
200
int
CoreAudioUtil
::NumberOfActiveDevices(EDataFlow data_flow) {
228
ScopedComPtr<IMMDeviceEnumerator>
CoreAudioUtil
::CreateDeviceEnumerator() {
249
ScopedComPtr<IMMDevice>
CoreAudioUtil
::CreateDefaultDevice(EDataFlow data_flow,
284
std::string
CoreAudioUtil
::GetDefaultOutputDeviceID() {
290
ScopedComPtr<IMMDevice>
CoreAudioUtil
::CreateDevice(
310
HRESULT
CoreAudioUtil
::GetDeviceName(IMMDevice* device, AudioDeviceName* name) {
342
std::string
CoreAudioUtil
::GetAudioControllerID(IMMDevice* device
[
all
...]
audio_low_latency_output_win.cc
41
client =
CoreAudioUtil
::CreateDefaultClient(eRender, eConsole);
43
ScopedComPtr<IMMDevice> device(
CoreAudioUtil
::CreateDevice(device_id));
46
client =
CoreAudioUtil
::CreateClient(device);
49
if (!client || FAILED(
CoreAudioUtil
::GetSharedModeMixFormat(client, &format)))
98
format_.dwChannelMask =
CoreAudioUtil
::GetChannelConfig(device_id, eRender);
134
CoreAudioUtil
::DeviceIsDefault(eRender, device_role_, device_id_)) {
135
audio_client =
CoreAudioUtil
::CreateDefaultClient(eRender, device_role_);
137
ScopedComPtr<IMMDevice> device(
CoreAudioUtil
::CreateDevice(device_id_));
140
audio_client =
CoreAudioUtil
::CreateClient(device);
147
if (!
CoreAudioUtil
::IsFormatSupported(audio_client
[
all
...]
audio_manager_win.cc
131
// |
CoreAudioUtil
::IsSupported()| uses static variables to avoid doing
135
enumeration_type_(
CoreAudioUtil
::IsSupported() ?
332
return
CoreAudioUtil
::GetMatchingOutputDeviceID(input_device_id);
411
return
CoreAudioUtil
::GetDefaultOutputDeviceID();
441
HRESULT hr =
CoreAudioUtil
::GetPreferredAudioParameters(
472
//
CoreAudioUtil
::IsChannelLayoutSupported() overhead in most cases.
479
if (
CoreAudioUtil
::IsChannelLayoutSupported(
audio_low_latency_input_win_unittest.cc
158
if (!
CoreAudioUtil
::IsSupported()) {
440
if (!audio_manager->HasAudioOutputDevices() || !
CoreAudioUtil
::IsSupported())
audio_low_latency_output_win_unittest.cc
156
if (!
CoreAudioUtil
::IsSupported()) {
180
EXPECT_TRUE(SUCCEEDED(
CoreAudioUtil
::GetPreferredAudioParameters(
/external/chromium_org/ash/system/win/audio/
tray_audio_delegate_win.cc
103
media::
CoreAudioUtil
::CreateDefaultDevice(eRender, eConsole);
/external/chromium_org/media/audio/
audio_input_volume_unittest.cc
53
if (!
CoreAudioUtil
::IsSupported())
audio_low_latency_input_output_unittest.cc
232
if (!
CoreAudioUtil
::IsSupported()) {
/external/chromium_org/content/browser/
system_message_window_win.cc
47
bool core_audio_support = media::
CoreAudioUtil
::IsSupported();
/external/chromium_org/ash/system/tray/
system_tray.cc
199
if (media::
CoreAudioUtil
::IsSupported())
/external/chromium_org/content/browser/speech/
speech_recognizer_impl.cc
536
use_native_audio_params = media::
CoreAudioUtil
::IsSupported();
Completed in 148 milliseconds