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

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

Issue 2496153002: Delete all of the video_processing module but the denoiser code. (Closed)
Patch Set: Remove left-over source files frame_preprocessor.* Created 4 years 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_stream_decoder.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
11 #ifndef WEBRTC_VIDEO_VIE_ENCODER_H_ 11 #ifndef WEBRTC_VIDEO_VIE_ENCODER_H_
12 #define WEBRTC_VIDEO_VIE_ENCODER_H_ 12 #define WEBRTC_VIDEO_VIE_ENCODER_H_
13 13
14 #include <memory> 14 #include <memory>
15 #include <string> 15 #include <string>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/base/criticalsection.h" 18 #include "webrtc/base/criticalsection.h"
19 #include "webrtc/base/event.h" 19 #include "webrtc/base/event.h"
20 #include "webrtc/base/sequenced_task_checker.h" 20 #include "webrtc/base/sequenced_task_checker.h"
21 #include "webrtc/base/task_queue.h" 21 #include "webrtc/base/task_queue.h"
22 #include "webrtc/call.h" 22 #include "webrtc/call.h"
23 #include "webrtc/common_types.h" 23 #include "webrtc/common_types.h"
24 #include "webrtc/common_video/include/video_bitrate_allocator.h" 24 #include "webrtc/common_video/include/video_bitrate_allocator.h"
25 #include "webrtc/common_video/rotation.h" 25 #include "webrtc/common_video/rotation.h"
26 #include "webrtc/media/base/videosinkinterface.h" 26 #include "webrtc/media/base/videosinkinterface.h"
27 #include "webrtc/modules/video_coding/include/video_coding_defines.h" 27 #include "webrtc/modules/video_coding/include/video_coding_defines.h"
28 #include "webrtc/modules/video_coding/utility/quality_scaler.h" 28 #include "webrtc/modules/video_coding/utility/quality_scaler.h"
29 #include "webrtc/modules/video_coding/video_coding_impl.h" 29 #include "webrtc/modules/video_coding/video_coding_impl.h"
30 #include "webrtc/modules/video_processing/include/video_processing.h"
31 #include "webrtc/system_wrappers/include/atomic32.h" 30 #include "webrtc/system_wrappers/include/atomic32.h"
32 #include "webrtc/video/overuse_frame_detector.h" 31 #include "webrtc/video/overuse_frame_detector.h"
33 #include "webrtc/video_encoder.h" 32 #include "webrtc/video_encoder.h"
34 #include "webrtc/video_send_stream.h" 33 #include "webrtc/video_send_stream.h"
35 #include "webrtc/typedefs.h" 34 #include "webrtc/typedefs.h"
36 35
37 namespace webrtc { 36 namespace webrtc {
38 37
39 class ProcessThread; 38 class ProcessThread;
40 class SendStatisticsProxy; 39 class SendStatisticsProxy;
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 // All public methods are proxied to |encoder_queue_|. It must must be 236 // All public methods are proxied to |encoder_queue_|. It must must be
238 // destroyed first to make sure no tasks are run that use other members. 237 // destroyed first to make sure no tasks are run that use other members.
239 rtc::TaskQueue encoder_queue_; 238 rtc::TaskQueue encoder_queue_;
240 239
241 RTC_DISALLOW_COPY_AND_ASSIGN(ViEEncoder); 240 RTC_DISALLOW_COPY_AND_ASSIGN(ViEEncoder);
242 }; 241 };
243 242
244 } // namespace webrtc 243 } // namespace webrtc
245 244
246 #endif // WEBRTC_VIDEO_VIE_ENCODER_H_ 245 #endif // WEBRTC_VIDEO_VIE_ENCODER_H_
OLDNEW
« no previous file with comments | « webrtc/video/video_stream_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698