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

Side by Side Diff: webrtc/modules/video_coding/main/source/jitter_buffer.h

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month 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_VIDEO_CODING_MAIN_SOURCE_JITTER_BUFFER_H_ 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_MAIN_SOURCE_JITTER_BUFFER_H_
12 #define WEBRTC_MODULES_VIDEO_CODING_MAIN_SOURCE_JITTER_BUFFER_H_ 12 #define WEBRTC_MODULES_VIDEO_CODING_MAIN_SOURCE_JITTER_BUFFER_H_
13 13
14 #include <list> 14 #include <list>
15 #include <map> 15 #include <map>
16 #include <set> 16 #include <set>
17 #include <vector> 17 #include <vector>
18 18
19 #include "webrtc/base/constructormagic.h" 19 #include "webrtc/base/constructormagic.h"
20 #include "webrtc/base/thread_annotations.h" 20 #include "webrtc/base/thread_annotations.h"
21 #include "webrtc/modules/interface/module_common_types.h" 21 #include "webrtc/modules/interface/module_common_types.h"
22 #include "webrtc/modules/video_coding/main/interface/video_coding.h" 22 #include "webrtc/modules/video_coding/main/interface/video_coding.h"
23 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" 23 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h"
24 #include "webrtc/modules/video_coding/main/source/decoding_state.h" 24 #include "webrtc/modules/video_coding/main/source/decoding_state.h"
25 #include "webrtc/modules/video_coding/main/source/inter_frame_delay.h" 25 #include "webrtc/modules/video_coding/main/source/inter_frame_delay.h"
26 #include "webrtc/modules/video_coding/main/source/jitter_buffer_common.h" 26 #include "webrtc/modules/video_coding/main/source/jitter_buffer_common.h"
27 #include "webrtc/modules/video_coding/main/source/jitter_estimator.h" 27 #include "webrtc/modules/video_coding/main/source/jitter_estimator.h"
28 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" 28 #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
29 #include "webrtc/typedefs.h" 29 #include "webrtc/typedefs.h"
30 30
31 namespace webrtc { 31 namespace webrtc {
32 32
33 enum VCMNackMode { 33 enum VCMNackMode {
34 kNack, 34 kNack,
35 kNoNack 35 kNoNack
36 }; 36 };
37 37
38 // forward declarations 38 // forward declarations
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 // Estimated rolling average of packets per frame 387 // Estimated rolling average of packets per frame
388 float average_packets_per_frame_; 388 float average_packets_per_frame_;
389 // average_packets_per_frame converges fast if we have fewer than this many 389 // average_packets_per_frame converges fast if we have fewer than this many
390 // frames. 390 // frames.
391 int frame_counter_; 391 int frame_counter_;
392 RTC_DISALLOW_COPY_AND_ASSIGN(VCMJitterBuffer); 392 RTC_DISALLOW_COPY_AND_ASSIGN(VCMJitterBuffer);
393 }; 393 };
394 } // namespace webrtc 394 } // namespace webrtc
395 395
396 #endif // WEBRTC_MODULES_VIDEO_CODING_MAIN_SOURCE_JITTER_BUFFER_H_ 396 #endif // WEBRTC_MODULES_VIDEO_CODING_MAIN_SOURCE_JITTER_BUFFER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/main/source/generic_encoder.cc ('k') | webrtc/modules/video_coding/main/source/jitter_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698