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

Side by Side Diff: webrtc/modules/video_coding/video_coding_impl.h

Issue 2969653002: Update includes for webrtc/{base => rtc_base} rename (1/3) (Closed)
Patch Set: Rebased onto 89c4a7e57d524b13fbe0c823a83a4c10c2e63bd0 Created 3 years, 5 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_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"
21 #include "webrtc/base/sequenced_task_checker.h"
22 #include "webrtc/base/thread_annotations.h"
23 #include "webrtc/base/thread_checker.h"
24 #include "webrtc/common_video/include/frame_callback.h" 20 #include "webrtc/common_video/include/frame_callback.h"
25 #include "webrtc/modules/video_coding/codec_database.h" 21 #include "webrtc/modules/video_coding/codec_database.h"
26 #include "webrtc/modules/video_coding/frame_buffer.h" 22 #include "webrtc/modules/video_coding/frame_buffer.h"
27 #include "webrtc/modules/video_coding/generic_decoder.h" 23 #include "webrtc/modules/video_coding/generic_decoder.h"
28 #include "webrtc/modules/video_coding/generic_encoder.h" 24 #include "webrtc/modules/video_coding/generic_encoder.h"
29 #include "webrtc/modules/video_coding/jitter_buffer.h" 25 #include "webrtc/modules/video_coding/jitter_buffer.h"
30 #include "webrtc/modules/video_coding/media_optimization.h" 26 #include "webrtc/modules/video_coding/media_optimization.h"
31 #include "webrtc/modules/video_coding/qp_parser.h" 27 #include "webrtc/modules/video_coding/qp_parser.h"
32 #include "webrtc/modules/video_coding/receiver.h" 28 #include "webrtc/modules/video_coding/receiver.h"
33 #include "webrtc/modules/video_coding/timing.h" 29 #include "webrtc/modules/video_coding/timing.h"
30 #include "webrtc/rtc_base/onetimeevent.h"
31 #include "webrtc/rtc_base/sequenced_task_checker.h"
32 #include "webrtc/rtc_base/thread_annotations.h"
33 #include "webrtc/rtc_base/thread_checker.h"
34 #include "webrtc/system_wrappers/include/clock.h" 34 #include "webrtc/system_wrappers/include/clock.h"
35 35
36 namespace webrtc { 36 namespace webrtc {
37 37
38 class VideoBitrateAllocator; 38 class VideoBitrateAllocator;
39 class VideoBitrateAllocationObserver; 39 class VideoBitrateAllocationObserver;
40 40
41 namespace vcm { 41 namespace vcm {
42 42
43 class VCMProcessTimer { 43 class VCMProcessTimer {
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 VCMProcessTimer _receiveStatsTimer; 226 VCMProcessTimer _receiveStatsTimer;
227 VCMProcessTimer _retransmissionTimer; 227 VCMProcessTimer _retransmissionTimer;
228 VCMProcessTimer _keyRequestTimer; 228 VCMProcessTimer _keyRequestTimer;
229 QpParser qp_parser_; 229 QpParser qp_parser_;
230 ThreadUnsafeOneTimeEvent first_frame_received_; 230 ThreadUnsafeOneTimeEvent first_frame_received_;
231 }; 231 };
232 232
233 } // namespace vcm 233 } // namespace vcm
234 } // namespace webrtc 234 } // namespace webrtc
235 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_ 235 #endif // WEBRTC_MODULES_VIDEO_CODING_VIDEO_CODING_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/video_codec_initializer.cc ('k') | webrtc/modules/video_coding/video_coding_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698