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

Side by Side Diff: webrtc/video/video_stream_encoder.h

Issue 3007553002: Removing dependencies on stub headers within WebRTC. (Closed)
Patch Set: Created 3 years, 3 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
« no previous file with comments | « webrtc/video/video_send_stream_tests.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 14 matching lines...) Expand all
25 #include "webrtc/modules/video_coding/include/video_coding_defines.h" 25 #include "webrtc/modules/video_coding/include/video_coding_defines.h"
26 #include "webrtc/modules/video_coding/utility/quality_scaler.h" 26 #include "webrtc/modules/video_coding/utility/quality_scaler.h"
27 #include "webrtc/modules/video_coding/video_coding_impl.h" 27 #include "webrtc/modules/video_coding/video_coding_impl.h"
28 #include "webrtc/rtc_base/criticalsection.h" 28 #include "webrtc/rtc_base/criticalsection.h"
29 #include "webrtc/rtc_base/event.h" 29 #include "webrtc/rtc_base/event.h"
30 #include "webrtc/rtc_base/sequenced_task_checker.h" 30 #include "webrtc/rtc_base/sequenced_task_checker.h"
31 #include "webrtc/rtc_base/task_queue.h" 31 #include "webrtc/rtc_base/task_queue.h"
32 #include "webrtc/system_wrappers/include/atomic32.h" 32 #include "webrtc/system_wrappers/include/atomic32.h"
33 #include "webrtc/typedefs.h" 33 #include "webrtc/typedefs.h"
34 #include "webrtc/video/overuse_frame_detector.h" 34 #include "webrtc/video/overuse_frame_detector.h"
35 #include "webrtc/video_send_stream.h" 35 #include "webrtc/call/video_send_stream.h"
36 36
37 namespace webrtc { 37 namespace webrtc {
38 38
39 class ProcessThread; 39 class ProcessThread;
40 class SendStatisticsProxy; 40 class SendStatisticsProxy;
41 class VideoBitrateAllocationObserver; 41 class VideoBitrateAllocationObserver;
42 42
43 // VideoStreamEncoder represent a video encoder that accepts raw video frames as 43 // VideoStreamEncoder represent a video encoder that accepts raw video frames as
44 // input and produces an encoded bit stream. 44 // input and produces an encoded bit stream.
45 // Usage: 45 // Usage:
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 // All public methods are proxied to |encoder_queue_|. It must must be 307 // All public methods are proxied to |encoder_queue_|. It must must be
308 // destroyed first to make sure no tasks are run that use other members. 308 // destroyed first to make sure no tasks are run that use other members.
309 rtc::TaskQueue encoder_queue_; 309 rtc::TaskQueue encoder_queue_;
310 310
311 RTC_DISALLOW_COPY_AND_ASSIGN(VideoStreamEncoder); 311 RTC_DISALLOW_COPY_AND_ASSIGN(VideoStreamEncoder);
312 }; 312 };
313 313
314 } // namespace webrtc 314 } // namespace webrtc
315 315
316 #endif // WEBRTC_VIDEO_VIDEO_STREAM_ENCODER_H_ 316 #endif // WEBRTC_VIDEO_VIDEO_STREAM_ENCODER_H_
OLDNEW
« no previous file with comments | « webrtc/video/video_send_stream_tests.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698