OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 19 matching lines...) Expand all Loading... |
30 class ChannelGroup; | 30 class ChannelGroup; |
31 class CpuOveruseObserver; | 31 class CpuOveruseObserver; |
32 class ProcessThread; | 32 class ProcessThread; |
33 class ViEChannel; | 33 class ViEChannel; |
34 class ViEEncoder; | 34 class ViEEncoder; |
35 | 35 |
36 namespace internal { | 36 namespace internal { |
37 | 37 |
38 class VideoSendStream : public webrtc::VideoSendStream { | 38 class VideoSendStream : public webrtc::VideoSendStream { |
39 public: | 39 public: |
40 VideoSendStream(newapi::Transport* transport, | 40 VideoSendStream(CpuOveruseObserver* overuse_observer, |
41 CpuOveruseObserver* overuse_observer, | |
42 int num_cpu_cores, | 41 int num_cpu_cores, |
43 ProcessThread* module_process_thread, | 42 ProcessThread* module_process_thread, |
44 ChannelGroup* channel_group, | 43 ChannelGroup* channel_group, |
45 int channel_id, | 44 int channel_id, |
46 const VideoSendStream::Config& config, | 45 const VideoSendStream::Config& config, |
47 const VideoEncoderConfig& encoder_config, | 46 const VideoEncoderConfig& encoder_config, |
48 const std::map<uint32_t, RtpState>& suspended_ssrcs); | 47 const std::map<uint32_t, RtpState>& suspended_ssrcs); |
49 | 48 |
50 ~VideoSendStream() override; | 49 ~VideoSendStream() override; |
51 | 50 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 // start bitrate initially, instead of the one reported by VideoEngine (which | 85 // start bitrate initially, instead of the one reported by VideoEngine (which |
87 // defaults to too high). | 86 // defaults to too high). |
88 bool use_config_bitrate_; | 87 bool use_config_bitrate_; |
89 | 88 |
90 SendStatisticsProxy stats_proxy_; | 89 SendStatisticsProxy stats_proxy_; |
91 }; | 90 }; |
92 } // namespace internal | 91 } // namespace internal |
93 } // namespace webrtc | 92 } // namespace webrtc |
94 | 93 |
95 #endif // WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ | 94 #endif // WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ |
OLD | NEW |