OLD | NEW |
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/include/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/include/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 { |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_ |
OLD | NEW |