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

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

Issue 2969653002: Update includes for webrtc/{base => rtc_base} rename (1/3) (Closed)
Patch Set: Rebased onto 89c4a7e57d524b13fbe0c823a83a4c10c2e63bd0 Created 3 years, 5 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_ 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_
13 13
14 #include <list> 14 #include <list>
15 #include <memory> 15 #include <memory>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/base/criticalsection.h"
19 #include "webrtc/base/function_view.h"
20 #include "webrtc/base/gtest_prod_util.h"
21 #include "webrtc/base/ignore_wundef.h"
22 #include "webrtc/base/protobuf_utils.h"
23 #include "webrtc/base/swap_queue.h"
24 #include "webrtc/base/thread_annotations.h"
25 #include "webrtc/modules/audio_processing/audio_buffer.h" 18 #include "webrtc/modules/audio_processing/audio_buffer.h"
26 #include "webrtc/modules/audio_processing/include/aec_dump.h" 19 #include "webrtc/modules/audio_processing/include/aec_dump.h"
27 #include "webrtc/modules/audio_processing/include/audio_processing.h" 20 #include "webrtc/modules/audio_processing/include/audio_processing.h"
28 #include "webrtc/modules/audio_processing/render_queue_item_verifier.h" 21 #include "webrtc/modules/audio_processing/render_queue_item_verifier.h"
29 #include "webrtc/modules/audio_processing/rms_level.h" 22 #include "webrtc/modules/audio_processing/rms_level.h"
23 #include "webrtc/rtc_base/criticalsection.h"
24 #include "webrtc/rtc_base/function_view.h"
25 #include "webrtc/rtc_base/gtest_prod_util.h"
26 #include "webrtc/rtc_base/ignore_wundef.h"
27 #include "webrtc/rtc_base/protobuf_utils.h"
28 #include "webrtc/rtc_base/swap_queue.h"
29 #include "webrtc/rtc_base/thread_annotations.h"
30 #include "webrtc/system_wrappers/include/file_wrapper.h" 30 #include "webrtc/system_wrappers/include/file_wrapper.h"
31 31
32 #ifdef WEBRTC_AUDIOPROC_DEBUG_DUMP 32 #ifdef WEBRTC_AUDIOPROC_DEBUG_DUMP
33 // *.pb.h files are generated at build-time by the protobuf compiler. 33 // *.pb.h files are generated at build-time by the protobuf compiler.
34 RTC_PUSH_IGNORING_WUNDEF() 34 RTC_PUSH_IGNORING_WUNDEF()
35 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD 35 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
36 #include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h" 36 #include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h"
37 #else 37 #else
38 #include "webrtc/modules/audio_processing/debug.pb.h" 38 #include "webrtc/modules/audio_processing/debug.pb.h"
39 #endif 39 #endif
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 std::unique_ptr< 473 std::unique_ptr<
474 SwapQueue<std::vector<int16_t>, RenderQueueItemVerifier<int16_t>>> 474 SwapQueue<std::vector<int16_t>, RenderQueueItemVerifier<int16_t>>>
475 agc_render_signal_queue_; 475 agc_render_signal_queue_;
476 std::unique_ptr<SwapQueue<std::vector<float>, RenderQueueItemVerifier<float>>> 476 std::unique_ptr<SwapQueue<std::vector<float>, RenderQueueItemVerifier<float>>>
477 red_render_signal_queue_; 477 red_render_signal_queue_;
478 }; 478 };
479 479
480 } // namespace webrtc 480 } // namespace webrtc
481 481
482 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_ 482 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_PROCESSING_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/audio_buffer.cc ('k') | webrtc/modules/audio_processing/audio_processing_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698