Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: Source/modules/webaudio/AudioListener.h

Issue 393363002: Move handle of HRTFDatabaseLoader to AudioListener. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move all HRTF loader functionality to AudioListener. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/modules/webaudio/AudioListener.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioListener.h
diff --git a/Source/modules/webaudio/AudioListener.h b/Source/modules/webaudio/AudioListener.h
index 9c42aa705d82879a27e06bc6ed5d299e4fa833dc..5862b49a30508b690438e83d3dca77c1c3b98110 100644
--- a/Source/modules/webaudio/AudioListener.h
+++ b/Source/modules/webaudio/AudioListener.h
@@ -38,6 +38,7 @@
namespace blink {
+class HRTFDatabaseLoader;
class PannerNode;
// AudioListener maintains the state of the listener in the audio scene as defined in the OpenAL specification.
@@ -79,6 +80,12 @@ public:
void addPanner(PannerNode*);
void removePanner(PannerNode*);
+ // HRTF DB loader
+ HRTFDatabaseLoader* hrtfDatabaseLoader() { return m_hrtfDatabaseLoader.get(); }
+ void createAndLoadHRTFDatabaseLoader(float);
+ bool isHRTFDatabaseLoaded();
+ void waitForHRTFDatabaseLoaderThreadCompletion();
+
void trace(Visitor*) { }
private:
@@ -100,9 +107,10 @@ private:
// Synchronize a panner's process() with setting of the state of the listener.
mutable Mutex m_listenerLock;
-
// List for pannerNodes in context.
Vector<PannerNode*> m_panners;
+ // HRTF DB loader for panner node.
+ RefPtr<HRTFDatabaseLoader> m_hrtfDatabaseLoader;
};
} // WebCore
« no previous file with comments | « no previous file | Source/modules/webaudio/AudioListener.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698