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

Unified Diff: Source/core/platform/audio/FFTFrame.cpp

Issue 14362037: Remove USE(GSTREAMER) and USE(WEBAUDIO_GSTREAMER) guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove GSTREAMER specific code Created 7 years, 8 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 | « Source/core/platform/audio/FFTFrame.h ('k') | Source/core/platform/audio/FFTFrameStub.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/audio/FFTFrame.cpp
diff --git a/Source/core/platform/audio/FFTFrame.cpp b/Source/core/platform/audio/FFTFrame.cpp
index 281595851c7c7b5a7c2b5db4490f5d8414325ecc..1f2bf6a70bf3e316bb910a8cc9c00b08387e1f1c 100644
--- a/Source/core/platform/audio/FFTFrame.cpp
+++ b/Source/core/platform/audio/FFTFrame.cpp
@@ -278,17 +278,6 @@ void FFTFrame::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
info.addMember(m_imagData, "imagData");
#endif // USE(WEBAUDIO_FFMPEG)
-#if USE(WEBAUDIO_GSTREAMER)
-#ifndef GST_API_VERSION_1
- // The GstFFTF32 structure is exposed publicly in GStreamer 0.10 only.
- info.addMember(m_fft, "fft");
- info.addMember(m_inverseFft, "inverseFft");
-#endif
- info.addMember(m_complexData, "complexData");
- info.addMember(m_realData, "realData");
- info.addMember(m_imagData, "imagData");
-#endif // USE(WEBAUDIO_GSTREAMER)
-
#if USE(WEBAUDIO_IPP)
int size = 0;
ippsDFTGetBufSize_R_32f(m_DFTSpec, &size);
« no previous file with comments | « Source/core/platform/audio/FFTFrame.h ('k') | Source/core/platform/audio/FFTFrameStub.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698