| 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 |
| 11 #ifndef WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ | 11 #ifndef WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ |
| 12 #define WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ | 12 #define WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ |
| 13 | 13 |
| 14 #include <map> | 14 #include <map> |
| 15 #include <memory> | 15 #include <memory> |
| 16 #include <vector> | 16 #include <vector> |
| 17 | 17 |
| 18 #include "webrtc/call/bitrate_allocator.h" | 18 #include "webrtc/call/bitrate_allocator.h" |
| 19 #include "webrtc/base/criticalsection.h" | 19 #include "webrtc/base/criticalsection.h" |
| 20 #include "webrtc/call.h" | 20 #include "webrtc/call.h" |
| 21 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 21 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
| 22 #include "webrtc/video/encoded_frame_callback_adapter.h" | 22 #include "webrtc/video/encoded_frame_callback_adapter.h" |
| 23 #include "webrtc/video/encoder_state_feedback.h" | 23 #include "webrtc/video/encoder_state_feedback.h" |
| 24 #include "webrtc/video/payload_router.h" | 24 #include "webrtc/video/payload_router.h" |
| 25 #include "webrtc/video/send_delay_stats.h" | 25 #include "webrtc/video/send_delay_stats.h" |
| 26 #include "webrtc/video/send_statistics_proxy.h" | 26 #include "webrtc/video/send_statistics_proxy.h" |
| 27 #include "webrtc/video/video_capture_input.h" | 27 #include "webrtc/video/video_capture_input.h" |
| 28 #include "webrtc/video/vie_channel.h" | |
| 29 #include "webrtc/video/vie_encoder.h" | 28 #include "webrtc/video/vie_encoder.h" |
| 30 #include "webrtc/video_receive_stream.h" | 29 #include "webrtc/video_receive_stream.h" |
| 31 #include "webrtc/video_send_stream.h" | 30 #include "webrtc/video_send_stream.h" |
| 32 | 31 |
| 33 namespace webrtc { | 32 namespace webrtc { |
| 34 | 33 |
| 35 class BitrateAllocator; | 34 class BitrateAllocator; |
| 36 class CallStats; | 35 class CallStats; |
| 37 class CongestionController; | 36 class CongestionController; |
| 38 class ProcessThread; | 37 class ProcessThread; |
| 39 class RtpRtcp; | 38 class RtpRtcp; |
| 40 class ViEChannel; | |
| 41 class ViEEncoder; | 39 class ViEEncoder; |
| 42 class VieRemb; | 40 class VieRemb; |
| 43 | 41 |
| 44 namespace vcm { | 42 namespace vcm { |
| 45 class VideoSender; | 43 class VideoSender; |
| 46 } // namespace vcm | 44 } // namespace vcm |
| 47 | 45 |
| 48 namespace internal { | 46 namespace internal { |
| 49 | 47 |
| 50 class VideoSendStream : public webrtc::VideoSendStream, | 48 class VideoSendStream : public webrtc::VideoSendStream, |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 const std::unique_ptr<RtcpBandwidthObserver> bandwidth_observer_; | 141 const std::unique_ptr<RtcpBandwidthObserver> bandwidth_observer_; |
| 144 // RtpRtcp modules, declared here as they use other members on construction. | 142 // RtpRtcp modules, declared here as they use other members on construction. |
| 145 const std::vector<RtpRtcp*> rtp_rtcp_modules_; | 143 const std::vector<RtpRtcp*> rtp_rtcp_modules_; |
| 146 PayloadRouter payload_router_; | 144 PayloadRouter payload_router_; |
| 147 VideoCaptureInput input_; | 145 VideoCaptureInput input_; |
| 148 }; | 146 }; |
| 149 } // namespace internal | 147 } // namespace internal |
| 150 } // namespace webrtc | 148 } // namespace webrtc |
| 151 | 149 |
| 152 #endif // WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ | 150 #endif // WEBRTC_VIDEO_VIDEO_SEND_STREAM_H_ |
| OLD | NEW |