summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/blink/HRTFDatabaseLoader.h
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-09-23 02:10:26 +0000
committerMoonchild <moonchild@palemoon.org>2020-09-23 08:29:06 +0000
commit04479387a21dd0bbf6006e27ec49101d1f2380a4 (patch)
tree119ed09dcef670f24f7bea2a1f1bedb3134d9e34 /dom/media/webaudio/blink/HRTFDatabaseLoader.h
parentb0c271c7f974ff533729ad63c4e5d6f9f0ca0d25 (diff)
downloadUXP-04479387a21dd0bbf6006e27ec49101d1f2380a4.tar
UXP-04479387a21dd0bbf6006e27ec49101d1f2380a4.tar.gz
UXP-04479387a21dd0bbf6006e27ec49101d1f2380a4.tar.lz
UXP-04479387a21dd0bbf6006e27ec49101d1f2380a4.tar.xz
UXP-04479387a21dd0bbf6006e27ec49101d1f2380a4.zip
[webaudio] Keep track of whether the HRTF database has already been loaded.
This DiD measure ensures that our async HRTF database loading is completed before we actually try to use it. If not done, database() simply returns null.
Diffstat (limited to 'dom/media/webaudio/blink/HRTFDatabaseLoader.h')
-rw-r--r--dom/media/webaudio/blink/HRTFDatabaseLoader.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/dom/media/webaudio/blink/HRTFDatabaseLoader.h b/dom/media/webaudio/blink/HRTFDatabaseLoader.h
index 50a875b18..4dfbd4fc8 100644
--- a/dom/media/webaudio/blink/HRTFDatabaseLoader.h
+++ b/dom/media/webaudio/blink/HRTFDatabaseLoader.h
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2010 Google Inc. All rights reserved.
+ * Copyright (C) 2020 M. Straver. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -85,7 +86,12 @@ public:
// on any thread except m_databaseLoaderThread.
void waitForLoaderThreadCompletion();
- HRTFDatabase* database() { return m_hrtfDatabase.get(); }
+ HRTFDatabase* database() {
+ if (!m_databaseLoaded) {
+ return nullptr;
+ }
+ return m_hrtfDatabase.get();
+ }
float databaseSampleRate() const { return m_databaseSampleRate; }
@@ -141,6 +147,7 @@ private:
PRThread* m_databaseLoaderThread;
float m_databaseSampleRate;
+ mozilla::Atomic<bool> m_databaseLoaded;
};
} // namespace WebCore