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_VIDEO_CODING_IMPL_H_ | 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ |
12 #define WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ | 12 #define WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ |
13 | 13 |
14 #include "webrtc/modules/video_coding/include/video_coding.h" | 14 #include "webrtc/modules/video_coding/include/video_coding.h" |
15 | 15 |
16 #include <memory> | 16 #include <memory> |
17 #include <string> | 17 #include <string> |
18 #include <vector> | 18 #include <vector> |
19 | 19 |
20 #include "webrtc/base/onetimeevent.h" | 20 #include "webrtc/base/onetimeevent.h" |
21 #include "webrtc/base/thread_annotations.h" | 21 #include "webrtc/base/thread_annotations.h" |
22 #include "webrtc/base/sequenced_task_checker.h" | 22 #include "webrtc/base/sequenced_task_checker.h" |
23 #include "webrtc/common_video/include/frame_callback.h" | 23 #include "webrtc/common_video/include/frame_callback.h" |
24 #include "webrtc/modules/video_coding/codec_database.h" | 24 #include "webrtc/modules/video_coding/codec_database.h" |
25 #include "webrtc/modules/video_coding/frame_buffer.h" | 25 #include "webrtc/modules/video_coding/frame_buffer.h" |
26 #include "webrtc/modules/video_coding/generic_decoder.h" | 26 #include "webrtc/modules/video_coding/generic_decoder.h" |
27 #include "webrtc/modules/video_coding/generic_encoder.h" | 27 #include "webrtc/modules/video_coding/generic_encoder.h" |
28 #include "webrtc/modules/video_coding/jitter_buffer.h" | 28 #include "webrtc/modules/video_coding/jitter_buffer.h" |
29 #include "webrtc/modules/video_coding/media_optimization.h" | 29 #include "webrtc/modules/video_coding/media_optimization.h" |
| 30 #include "webrtc/modules/video_coding/qp_parser.h" |
30 #include "webrtc/modules/video_coding/receiver.h" | 31 #include "webrtc/modules/video_coding/receiver.h" |
31 #include "webrtc/modules/video_coding/timing.h" | 32 #include "webrtc/modules/video_coding/timing.h" |
32 #include "webrtc/modules/video_coding/utility/qp_parser.h" | |
33 #include "webrtc/system_wrappers/include/clock.h" | 33 #include "webrtc/system_wrappers/include/clock.h" |
34 | 34 |
35 namespace webrtc { | 35 namespace webrtc { |
36 | 36 |
37 class VideoBitrateAllocator; | 37 class VideoBitrateAllocator; |
38 class VideoBitrateAllocationObserver; | 38 class VideoBitrateAllocationObserver; |
39 | 39 |
40 namespace vcm { | 40 namespace vcm { |
41 | 41 |
42 class VCMProcessTimer { | 42 class VCMProcessTimer { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 VCMProcessTimer _receiveStatsTimer; | 229 VCMProcessTimer _receiveStatsTimer; |
230 VCMProcessTimer _retransmissionTimer; | 230 VCMProcessTimer _retransmissionTimer; |
231 VCMProcessTimer _keyRequestTimer; | 231 VCMProcessTimer _keyRequestTimer; |
232 QpParser qp_parser_; | 232 QpParser qp_parser_; |
233 ThreadUnsafeOneTimeEvent first_frame_received_; | 233 ThreadUnsafeOneTimeEvent first_frame_received_; |
234 }; | 234 }; |
235 | 235 |
236 } // namespace vcm | 236 } // namespace vcm |
237 } // namespace webrtc | 237 } // namespace webrtc |
238 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ | 238 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ |
OLD | NEW |