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

Unified Diff: webrtc/modules/audio_processing/utility/lapped_transform.h

Issue 1846903004: Moved ring-buffer related files from common_audio to audio_processing (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Corrected order of includes Created 4 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: webrtc/modules/audio_processing/utility/lapped_transform.h
diff --git a/webrtc/common_audio/lapped_transform.h b/webrtc/modules/audio_processing/utility/lapped_transform.h
similarity index 92%
rename from webrtc/common_audio/lapped_transform.h
rename to webrtc/modules/audio_processing/utility/lapped_transform.h
index 832735991befd208a516a304a7d64eca5292f3f8..b2d3aa78715ff1b2f57060af0881a483f3fb3571 100644
--- a/webrtc/common_audio/lapped_transform.h
+++ b/webrtc/modules/audio_processing/utility/lapped_transform.h
@@ -8,14 +8,14 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#ifndef WEBRTC_COMMON_AUDIO_LAPPED_TRANSFORM_H_
-#define WEBRTC_COMMON_AUDIO_LAPPED_TRANSFORM_H_
+#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_UTILITY_LAPPED_TRANSFORM_H_
+#define WEBRTC_MODULES_AUDIO_PROCESSING_UTILITY_LAPPED_TRANSFORM_H_
#include <complex>
#include <memory>
-#include "webrtc/common_audio/blocker.h"
#include "webrtc/common_audio/real_fourier.h"
+#include "webrtc/modules/audio_processing/utility/blocker.h"
#include "webrtc/system_wrappers/include/aligned_array.h"
namespace webrtc {
@@ -35,7 +35,8 @@ class LappedTransform {
virtual ~Callback() {}
virtual void ProcessAudioBlock(const std::complex<float>* const* in_block,
- size_t num_in_channels, size_t frames,
+ size_t num_in_channels,
+ size_t frames,
size_t num_out_channels,
std::complex<float>* const* out_block) = 0;
};
@@ -121,5 +122,4 @@ class LappedTransform {
} // namespace webrtc
-#endif // WEBRTC_COMMON_AUDIO_LAPPED_TRANSFORM_H_
-
+#endif // WEBRTC_MODULES_AUDIO_PROCESSING_UTILITY_LAPPED_TRANSFORM_H_

Powered by Google App Engine
This is Rietveld 408576698