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

Unified Diff: Source/platform/audio/FFTFrame.h

Issue 176843021: Remove redundancies of multiply() in FFTFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | Source/platform/audio/FFTFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/FFTFrame.h
diff --git a/Source/platform/audio/FFTFrame.h b/Source/platform/audio/FFTFrame.h
index abc4e5c4f4d9fe9b51d8e82ac4dbc1f90b7c709d..5fdc97dc0562565bb50897724c9c5c42f900542e 100644
--- a/Source/platform/audio/FFTFrame.h
+++ b/Source/platform/audio/FFTFrame.h
@@ -66,7 +66,6 @@ public:
static void cleanup();
void doFFT(const float* data);
void doInverseFFT(float* data);
- void multiply(const FFTFrame& frame); // multiplies ourself with frame : effectively operator*=()
float* realData() const;
float* imagData() const;
@@ -82,6 +81,7 @@ public:
void doPaddedFFT(const float* data, size_t dataSize); // zero-padding with dataSize <= fftSize
double extractAverageGroupDelay();
void addConstantGroupDelay(double sampleFrameDelay);
+ void multiply(const FFTFrame&); // multiplies ourself with frame : effectively operator*=()
unsigned fftSize() const { return m_FFTSize; }
unsigned log2FFTSize() const { return m_log2FFTSize; }
« no previous file with comments | « no previous file | Source/platform/audio/FFTFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698