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

Side by Side Diff: talk/media/webrtc/webrtcvideoengine2.h

Issue 1287913004: Revert "Remove CpuMonitor and related, unused, code." (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 4 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 | « no previous file | webrtc/base/BUILD.gn » ('j') | 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 * libjingle 2 * libjingle
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 18 matching lines...) Expand all
29 #define TALK_MEDIA_WEBRTC_WEBRTCVIDEOENGINE2_H_ 29 #define TALK_MEDIA_WEBRTC_WEBRTCVIDEOENGINE2_H_
30 30
31 #include <map> 31 #include <map>
32 #include <string> 32 #include <string>
33 #include <vector> 33 #include <vector>
34 34
35 #include "talk/media/base/mediaengine.h" 35 #include "talk/media/base/mediaengine.h"
36 #include "talk/media/webrtc/webrtcvideochannelfactory.h" 36 #include "talk/media/webrtc/webrtcvideochannelfactory.h"
37 #include "talk/media/webrtc/webrtcvideodecoderfactory.h" 37 #include "talk/media/webrtc/webrtcvideodecoderfactory.h"
38 #include "talk/media/webrtc/webrtcvideoencoderfactory.h" 38 #include "talk/media/webrtc/webrtcvideoencoderfactory.h"
39 #include "webrtc/base/cpumonitor.h"
39 #include "webrtc/base/criticalsection.h" 40 #include "webrtc/base/criticalsection.h"
40 #include "webrtc/base/scoped_ptr.h" 41 #include "webrtc/base/scoped_ptr.h"
41 #include "webrtc/base/thread_annotations.h" 42 #include "webrtc/base/thread_annotations.h"
42 #include "webrtc/base/thread_checker.h" 43 #include "webrtc/base/thread_checker.h"
43 #include "webrtc/call.h" 44 #include "webrtc/call.h"
44 #include "webrtc/transport.h" 45 #include "webrtc/transport.h"
45 #include "webrtc/video_frame.h" 46 #include "webrtc/video_frame.h"
46 #include "webrtc/video_receive_stream.h" 47 #include "webrtc/video_receive_stream.h"
47 #include "webrtc/video_renderer.h" 48 #include "webrtc/video_renderer.h"
48 #include "webrtc/video_send_stream.h" 49 #include "webrtc/video_send_stream.h"
49 50
50 namespace webrtc { 51 namespace webrtc {
51 class VideoDecoder; 52 class VideoDecoder;
52 class VideoEncoder; 53 class VideoEncoder;
53 } 54 }
54 55
55 namespace rtc { 56 namespace rtc {
57 class CpuMonitor;
56 class Thread; 58 class Thread;
57 } // namespace rtc 59 } // namespace rtc
58 60
59 namespace cricket { 61 namespace cricket {
60 62
61 class VideoCapturer; 63 class VideoCapturer;
62 class VideoFrame; 64 class VideoFrame;
63 class VideoProcessor; 65 class VideoProcessor;
64 class VideoRenderer; 66 class VideoRenderer;
65 class VoiceMediaChannel; 67 class VoiceMediaChannel;
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 WebRtcVideoDecoderFactory* const external_decoder_factory_; 537 WebRtcVideoDecoderFactory* const external_decoder_factory_;
536 std::vector<VideoCodecSettings> recv_codecs_; 538 std::vector<VideoCodecSettings> recv_codecs_;
537 std::vector<webrtc::RtpExtension> recv_rtp_extensions_; 539 std::vector<webrtc::RtpExtension> recv_rtp_extensions_;
538 webrtc::Call::Config::BitrateConfig bitrate_config_; 540 webrtc::Call::Config::BitrateConfig bitrate_config_;
539 VideoOptions options_; 541 VideoOptions options_;
540 }; 542 };
541 543
542 } // namespace cricket 544 } // namespace cricket
543 545
544 #endif // TALK_MEDIA_WEBRTC_WEBRTCVIDEOENGINE2_H_ 546 #endif // TALK_MEDIA_WEBRTC_WEBRTCVIDEOENGINE2_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698