OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HRTFDatabaseLoader
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/audio/
HRTFDatabaseLoader.cpp
33
#include "
HRTFDatabaseLoader
.h"
40
HRTFDatabaseLoader
*
HRTFDatabaseLoader
::s_loader = 0;
42
PassRefPtr<
HRTFDatabaseLoader
>
HRTFDatabaseLoader
::createAndLoadAsynchronouslyIfNecessary(double sampleRate)
46
RefPtr<
HRTFDatabaseLoader
> loader;
50
loader = adoptRef(new
HRTFDatabaseLoader
(sampleRate));
61
HRTFDatabaseLoader
::
HRTFDatabaseLoader
(double sampleRate)
70
HRTFDatabaseLoader
::~HRTFDatabaseLoader(
[
all
...]
HRTFDatabaseLoader.h
40
//
HRTFDatabaseLoader
will asynchronously load the default HRTFDatabase in a new thread.
42
class
HRTFDatabaseLoader
: public RefCounted<
HRTFDatabaseLoader
> {
44
// Lazily creates the singleton
HRTFDatabaseLoader
(if not already created) and starts loading asynchronously (when created the first time).
45
// Returns the singleton
HRTFDatabaseLoader
.
47
static PassRefPtr<
HRTFDatabaseLoader
> createAndLoadAsynchronouslyIfNecessary(double sampleRate);
49
// Returns the singleton
HRTFDatabaseLoader
.
50
static
HRTFDatabaseLoader
* loader() { return s_loader; }
53
~
HRTFDatabaseLoader
();
68
// This can be called from any thread, but it is the callers responsibilty to call this while the context (and thus
HRTFDatabaseLoader
)
[
all
...]
HRTFPanner.cpp
34
#include "
HRTFDatabaseLoader
.h"
96
HRTFDatabase* database =
HRTFDatabaseLoader
::defaultHRTFDatabase();
131
HRTFDatabase* database =
HRTFDatabaseLoader
::defaultHRTFDatabase();
/external/webkit/Source/WebCore/webaudio/
OfflineAudioDestinationNode.cpp
33
#include "
HRTFDatabaseLoader
.h"
114
// Synchronize with
HRTFDatabaseLoader
.
116
HRTFDatabaseLoader
* loader =
HRTFDatabaseLoader
::loader();
AudioContext.h
33
#include "
HRTFDatabaseLoader
.h"
280
RefPtr<
HRTFDatabaseLoader
> m_hrtfDatabaseLoader;
AudioContext.cpp
46
#include "
HRTFDatabaseLoader
.h"
101
m_hrtfDatabaseLoader =
HRTFDatabaseLoader
::createAndLoadAsynchronouslyIfNecessary(sampleRate());
122
// FIXME: the passed in sampleRate MUST match the hardware sample-rate since
HRTFDatabaseLoader
is a singleton.
123
m_hrtfDatabaseLoader =
HRTFDatabaseLoader
::createAndLoadAsynchronouslyIfNecessary(sampleRate);
Completed in 42 milliseconds