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

Unified Diff: third_party/WebKit/Source/platform/audio/Reverb.h

Issue 2732523003: Make ConvolverNode conform to spec (Closed)
Patch Set: Revert unneeded AudioNode.h change Created 3 years, 9 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
Index: third_party/WebKit/Source/platform/audio/Reverb.h
diff --git a/third_party/WebKit/Source/platform/audio/Reverb.h b/third_party/WebKit/Source/platform/audio/Reverb.h
index f29b8a42b624c4fc1b1c45fd26cfa76e77a31b6b..e720f271302eb87fa457e235844a0b4c1f7b92ba 100644
--- a/third_party/WebKit/Source/platform/audio/Reverb.h
+++ b/third_party/WebKit/Source/platform/audio/Reverb.h
@@ -74,6 +74,9 @@ class PLATFORM_EXPORT Reverb {
bool useBackgroundThreads);
size_t m_impulseResponseLength;
+ // The actual number of channels in the response. This can be less
+ // than the number of ReverbConvolver's.
+ unsigned m_numberOfChannels;
Vector<std::unique_ptr<ReverbConvolver>> m_convolvers;

Powered by Google App Engine
This is Rietveld 408576698