OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HRTFDatabaseLoader
(Results
1 - 2
of
2
) 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
...]
Completed in 1606 milliseconds