OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HRTFDatabaseLoader
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader.h
42
//
HRTFDatabaseLoader
will asynchronously load the default HRTFDatabase in a new thread.
44
class PLATFORM_EXPORT
HRTFDatabaseLoader
: public RefCounted<
HRTFDatabaseLoader
> {
46
// Lazily creates a
HRTFDatabaseLoader
(if not already created) for the given sample-rate
48
// Returns the
HRTFDatabaseLoader
.
50
static PassRefPtr<
HRTFDatabaseLoader
> createAndLoadAsynchronouslyIfNecessary(float sampleRate);
53
~
HRTFDatabaseLoader
();
70
explicit
HRTFDatabaseLoader
(float sampleRate);
77
typedef HashMap<double,
HRTFDatabaseLoader
*> LoaderMap;
HRTFDatabaseLoader.cpp
33
#include "platform/audio/
HRTFDatabaseLoader
.h"
42
HRTFDatabaseLoader
::LoaderMap*
HRTFDatabaseLoader
::s_loaderMap = 0;
44
PassRefPtr<
HRTFDatabaseLoader
>
HRTFDatabaseLoader
::createAndLoadAsynchronouslyIfNecessary(float sampleRate)
48
RefPtr<
HRTFDatabaseLoader
> loader;
59
loader = adoptRef(new
HRTFDatabaseLoader
(sampleRate));
67
HRTFDatabaseLoader
::
HRTFDatabaseLoader
(float sampleRate)
73
HRTFDatabaseLoader
::~HRTFDatabaseLoader(
[
all
...]
Panner.h
38
class
HRTFDatabaseLoader
;
52
static PassOwnPtr<Panner> create(PanningModel, float sampleRate,
HRTFDatabaseLoader
*);
Panner.cpp
41
PassOwnPtr<Panner> Panner::create(PanningModel model, float sampleRate,
HRTFDatabaseLoader
* databaseLoader)
HRTFPanner.h
30
#include "platform/audio/
HRTFDatabaseLoader
.h"
37
HRTFPanner(float sampleRate,
HRTFDatabaseLoader
*);
57
RefPtr<
HRTFDatabaseLoader
> m_databaseLoader;
HRTFPanner.cpp
48
HRTFPanner::HRTFPanner(float sampleRate,
HRTFDatabaseLoader
* databaseLoader)
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OfflineAudioDestinationNode.cpp
33
#include "platform/audio/
HRTFDatabaseLoader
.h"
109
// Synchronize with
HRTFDatabaseLoader
.
111
HRTFDatabaseLoader
* loader = context()->
hrtfDatabaseLoader
();
AudioContext.h
33
#include "platform/audio/
HRTFDatabaseLoader
.h"
95
HRTFDatabaseLoader
*
hrtfDatabaseLoader
() const { return m_hrtfDatabaseLoader.get(); }
328
RefPtr<
HRTFDatabaseLoader
> m_hrtfDatabaseLoader;
AudioContext.cpp
136
m_hrtfDatabaseLoader =
HRTFDatabaseLoader
::createAndLoadAsynchronouslyIfNecessary(sampleRate());
155
m_hrtfDatabaseLoader =
HRTFDatabaseLoader
::createAndLoadAsynchronouslyIfNecessary(sampleRate);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk
117
third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader
.cpp \
[
all
...]
blink_platform.target.darwin-mips.mk
116
third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader
.cpp \
[
all
...]
blink_platform.target.darwin-x86.mk
116
third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader
.cpp \
[
all
...]
blink_platform.target.linux-arm.mk
117
third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader
.cpp \
[
all
...]
blink_platform.target.linux-mips.mk
116
third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader
.cpp \
[
all
...]
blink_platform.target.linux-x86.mk
116
third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader
.cpp \
[
all
...]
Completed in 1237 milliseconds