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

Side by Side Diff: webrtc/modules/audio_processing/splitting_filter.h

Issue 2288133002: Fix Chromium clang plugin warnings (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 28 matching lines...) Expand all
39 // Splitting filter which is able to split into and merge from 2 or 3 frequency 39 // Splitting filter which is able to split into and merge from 2 or 3 frequency
40 // bands. The number of channels needs to be provided at construction time. 40 // bands. The number of channels needs to be provided at construction time.
41 // 41 //
42 // For each block, Analysis() is called to split into bands and then Synthesis() 42 // For each block, Analysis() is called to split into bands and then Synthesis()
43 // to merge these bands again. The input and output signals are contained in 43 // to merge these bands again. The input and output signals are contained in
44 // IFChannelBuffers and for the different bands an array of IFChannelBuffers is 44 // IFChannelBuffers and for the different bands an array of IFChannelBuffers is
45 // used. 45 // used.
46 class SplittingFilter { 46 class SplittingFilter {
47 public: 47 public:
48 SplittingFilter(size_t num_channels, size_t num_bands, size_t num_frames); 48 SplittingFilter(size_t num_channels, size_t num_bands, size_t num_frames);
49 ~SplittingFilter();
49 50
50 void Analysis(const IFChannelBuffer* data, IFChannelBuffer* bands); 51 void Analysis(const IFChannelBuffer* data, IFChannelBuffer* bands);
51 void Synthesis(const IFChannelBuffer* bands, IFChannelBuffer* data); 52 void Synthesis(const IFChannelBuffer* bands, IFChannelBuffer* data);
52 53
53 private: 54 private:
54 // Two-band analysis and synthesis work for 640 samples or less. 55 // Two-band analysis and synthesis work for 640 samples or less.
55 void TwoBandsAnalysis(const IFChannelBuffer* data, IFChannelBuffer* bands); 56 void TwoBandsAnalysis(const IFChannelBuffer* data, IFChannelBuffer* bands);
56 void TwoBandsSynthesis(const IFChannelBuffer* bands, IFChannelBuffer* data); 57 void TwoBandsSynthesis(const IFChannelBuffer* bands, IFChannelBuffer* data);
57 void ThreeBandsAnalysis(const IFChannelBuffer* data, IFChannelBuffer* bands); 58 void ThreeBandsAnalysis(const IFChannelBuffer* data, IFChannelBuffer* bands);
58 void ThreeBandsSynthesis(const IFChannelBuffer* bands, IFChannelBuffer* data); 59 void ThreeBandsSynthesis(const IFChannelBuffer* bands, IFChannelBuffer* data);
59 void InitBuffers(); 60 void InitBuffers();
60 61
61 const size_t num_bands_; 62 const size_t num_bands_;
62 std::vector<TwoBandsStates> two_bands_states_; 63 std::vector<TwoBandsStates> two_bands_states_;
63 std::vector<std::unique_ptr<ThreeBandFilterBank>> three_band_filter_banks_; 64 std::vector<std::unique_ptr<ThreeBandFilterBank>> three_band_filter_banks_;
64 }; 65 };
65 66
66 } // namespace webrtc 67 } // namespace webrtc
67 68
68 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_SPLITTING_FILTER_H_ 69 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_SPLITTING_FILTER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/modules/audio_processing/splitting_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698