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/main/interface/video_coding.h" | 14 #include "webrtc/modules/video_coding/include/video_coding.h" |
15 | 15 |
16 #include <vector> | 16 #include <vector> |
17 | 17 |
18 #include "webrtc/base/thread_annotations.h" | 18 #include "webrtc/base/thread_annotations.h" |
19 #include "webrtc/base/thread_checker.h" | 19 #include "webrtc/base/thread_checker.h" |
20 #include "webrtc/modules/video_coding/main/source/codec_database.h" | 20 #include "webrtc/modules/video_coding/codec_database.h" |
21 #include "webrtc/modules/video_coding/main/source/frame_buffer.h" | 21 #include "webrtc/modules/video_coding/frame_buffer.h" |
22 #include "webrtc/modules/video_coding/main/source/generic_decoder.h" | 22 #include "webrtc/modules/video_coding/generic_decoder.h" |
23 #include "webrtc/modules/video_coding/main/source/generic_encoder.h" | 23 #include "webrtc/modules/video_coding/generic_encoder.h" |
24 #include "webrtc/modules/video_coding/main/source/jitter_buffer.h" | 24 #include "webrtc/modules/video_coding/jitter_buffer.h" |
25 #include "webrtc/modules/video_coding/main/source/media_optimization.h" | 25 #include "webrtc/modules/video_coding/media_optimization.h" |
26 #include "webrtc/modules/video_coding/main/source/receiver.h" | 26 #include "webrtc/modules/video_coding/receiver.h" |
27 #include "webrtc/modules/video_coding/main/source/timing.h" | 27 #include "webrtc/modules/video_coding/timing.h" |
28 #include "webrtc/modules/video_coding/utility/include/qp_parser.h" | 28 #include "webrtc/modules/video_coding/utility/include/qp_parser.h" |
29 #include "webrtc/system_wrappers/include/clock.h" | 29 #include "webrtc/system_wrappers/include/clock.h" |
30 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 30 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
31 | 31 |
32 namespace webrtc { | 32 namespace webrtc { |
33 | 33 |
34 class EncodedFrameObserver; | 34 class EncodedFrameObserver; |
35 | 35 |
36 namespace vcm { | 36 namespace vcm { |
37 | 37 |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 VCMCodecDataBase _codecDataBase GUARDED_BY(_receiveCritSect); | 228 VCMCodecDataBase _codecDataBase GUARDED_BY(_receiveCritSect); |
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 }; | 233 }; |
234 | 234 |
235 } // namespace vcm | 235 } // namespace vcm |
236 } // namespace webrtc | 236 } // namespace webrtc |
237 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ | 237 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ |
OLD | NEW |