OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:avrt
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/media/audio/win/
avrt_wrapper_win.h
5
// The
avrt
namespace encapsulates the details needed to support MMCSS.
12
// MMCSS requires Windows Vista or higher and that the
Avrt
DLL is loaded.
21
#include <
avrt
.h>
25
namespace
avrt
{
namespace
27
// Loads the
Avrt
.dll which is available on Windows Vista and later.
36
} // namespace
avrt
avrt_wrapper_win.cc
9
namespace
avrt
{
namespace
23
// The
avrt
.dll is available on Windows Vista and later.
25
ExpandEnvironmentStrings(L"%WINDIR%\\system32\\
avrt
.dll", path,
64
} // namespace
avrt
audio_low_latency_input_win.cc
30
// Load the
Avrt
DLL if not already loaded. Required to support MMCSS.
31
bool avrt_init =
avrt
::Initialize();
32
DCHECK(avrt_init) << "Failed to load the
Avrt
.dll";
310
HANDLE mm_task =
avrt
::AvSetMmThreadCharacteristics(L"Pro Audio",
313
(mm_task &&
avrt
::AvSetMmThreadPriority(mm_task, AVRT_PRIORITY_CRITICAL));
449
if (mm_task && !
avrt
::AvRevertMmThreadCharacteristics(mm_task)) {
audio_low_latency_output_win.cc
109
// Load the
Avrt
DLL if not already loaded. Required to support MMCSS.
110
bool avrt_init =
avrt
::Initialize();
111
DCHECK(avrt_init) << "Failed to load the
avrt
.dll";
370
HANDLE mm_task =
avrt
::AvSetMmThreadCharacteristics(L"Pro Audio",
373
(mm_task &&
avrt
::AvSetMmThreadPriority(mm_task, AVRT_PRIORITY_CRITICAL));
429
if (mm_task && !
avrt
::AvRevertMmThreadCharacteristics(mm_task)) {
audio_unified_win.cc
144
// Load the
Avrt
DLL if not already loaded. Required to support MMCSS.
145
bool avrt_init =
avrt
::Initialize();
146
DCHECK(avrt_init) << "Failed to load the
avrt
.dll";
648
HANDLE mm_task =
avrt
::AvSetMmThreadCharacteristics(L"Pro Audio",
651
(mm_task &&
avrt
::AvSetMmThreadPriority(mm_task, AVRT_PRIORITY_CRITICAL));
724
if (mm_task && !
avrt
::AvRevertMmThreadCharacteristics(mm_task)) {
[
all
...]
/external/chromium_org/remoting/host/
audio_capturer_win.cc
8
#include <
avrt
.h>
Completed in 60 milliseconds