Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
HRTFDatabaseLoader is not an absolute condition to run audioContext
https://bugs.webkit.org/show_bug.cgi?id=138829 Reviewed by Jer Noble. This patch is a port of the following Blink revision by <keonho07.kim@samsung.com>: <https://src.chromium.org/viewvc/blink?revision=167887&view=revision> * Modules/webaudio/AudioContext.cpp: (WebCore::AudioContext::AudioContext): (WebCore::AudioContext::isRunnable): Deleted. * Modules/webaudio/AudioContext.h: (WebCore::AudioContext::hrtfDatabaseLoader): Deleted. * Modules/webaudio/AudioDestinationNode.cpp: (WebCore::AudioDestinationNode::render): * Modules/webaudio/OfflineAudioDestinationNode.cpp: (WebCore::OfflineAudioDestinationNode::offlineRender): * Modules/webaudio/PannerNode.cpp: (WebCore::PannerNode::PannerNode): (WebCore::PannerNode::process): (WebCore::PannerNode::initialize): (WebCore::PannerNode::setPanningModel): * Modules/webaudio/PannerNode.h: * Modules/webaudio/RealtimeAnalyser.cpp: * Modules/webaudio/RealtimeAnalyser.h: * platform/audio/HRTFDatabaseLoader.cpp: (WebCore::HRTFDatabaseLoader::createAndLoadAsynchronouslyIfNecessary): Canonical link: https://commits.webkit.org/156680@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@176259 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
59 additions
and 45 deletions.
- +31 −0 Source/WebCore/ChangeLog
- +0 −18 Source/WebCore/Modules/webaudio/AudioContext.cpp
- +0 −8 Source/WebCore/Modules/webaudio/AudioContext.h
- +1 −1 Source/WebCore/Modules/webaudio/AudioDestinationNode.cpp
- +6 −10 Source/WebCore/Modules/webaudio/OfflineAudioDestinationNode.cpp
- +15 −3 Source/WebCore/Modules/webaudio/PannerNode.cpp
- +4 −0 Source/WebCore/Modules/webaudio/PannerNode.h
- +0 −1 Source/WebCore/Modules/webaudio/RealtimeAnalyser.cpp
- +1 −1 Source/WebCore/Modules/webaudio/RealtimeAnalyser.h
- +1 −3 Source/WebCore/platform/audio/HRTFDatabaseLoader.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -30,7 +30,6 @@ | ||
|
||
#include "AudioBus.h" | ||
#include "AudioUtilities.h" | ||
#include "VectorMath.h" | ||
#include <algorithm> | ||
#include <complex> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters