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

Side by Side Diff: webrtc/modules/audio_coding/neteq/neteq_impl.h

Issue 3011943002: Move optional.h to webrtc/api/ (Closed)
Patch Set: Created 3 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) 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_CODING_NETEQ_NETEQ_IMPL_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_
12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ 12 #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_
13 13
14 #include <memory> 14 #include <memory>
15 #include <string> 15 #include <string>
16 16
17 #include "webrtc/api/optional.h"
17 #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" 18 #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h"
18 #include "webrtc/modules/audio_coding/neteq/defines.h" 19 #include "webrtc/modules/audio_coding/neteq/defines.h"
19 #include "webrtc/modules/audio_coding/neteq/include/neteq.h" 20 #include "webrtc/modules/audio_coding/neteq/include/neteq.h"
20 #include "webrtc/modules/audio_coding/neteq/packet.h" // Declare PacketList. 21 #include "webrtc/modules/audio_coding/neteq/packet.h" // Declare PacketList.
21 #include "webrtc/modules/audio_coding/neteq/random_vector.h" 22 #include "webrtc/modules/audio_coding/neteq/random_vector.h"
22 #include "webrtc/modules/audio_coding/neteq/rtcp.h" 23 #include "webrtc/modules/audio_coding/neteq/rtcp.h"
23 #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h" 24 #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h"
24 #include "webrtc/modules/audio_coding/neteq/tick_timer.h" 25 #include "webrtc/modules/audio_coding/neteq/tick_timer.h"
25 #include "webrtc/modules/include/module_common_types.h" 26 #include "webrtc/modules/include/module_common_types.h"
26 #include "webrtc/rtc_base/constructormagic.h" 27 #include "webrtc/rtc_base/constructormagic.h"
27 #include "webrtc/rtc_base/criticalsection.h" 28 #include "webrtc/rtc_base/criticalsection.h"
28 #include "webrtc/rtc_base/optional.h"
29 #include "webrtc/rtc_base/thread_annotations.h" 29 #include "webrtc/rtc_base/thread_annotations.h"
30 #include "webrtc/typedefs.h" 30 #include "webrtc/typedefs.h"
31 31
32 namespace webrtc { 32 namespace webrtc {
33 33
34 // Forward declarations. 34 // Forward declarations.
35 class Accelerate; 35 class Accelerate;
36 class BackgroundNoise; 36 class BackgroundNoise;
37 class BufferLevelFilter; 37 class BufferLevelFilter;
38 class ComfortNoise; 38 class ComfortNoise;
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 std::unique_ptr<TickTimer::Stopwatch> generated_noise_stopwatch_ 432 std::unique_ptr<TickTimer::Stopwatch> generated_noise_stopwatch_
433 GUARDED_BY(crit_sect_); 433 GUARDED_BY(crit_sect_);
434 std::vector<uint32_t> last_decoded_timestamps_ GUARDED_BY(crit_sect_); 434 std::vector<uint32_t> last_decoded_timestamps_ GUARDED_BY(crit_sect_);
435 435
436 private: 436 private:
437 RTC_DISALLOW_COPY_AND_ASSIGN(NetEqImpl); 437 RTC_DISALLOW_COPY_AND_ASSIGN(NetEqImpl);
438 }; 438 };
439 439
440 } // namespace webrtc 440 } // namespace webrtc
441 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_ 441 #endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h ('k') | webrtc/modules/audio_coding/neteq/packet_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698