| Index: webrtc/video/video_send_stream.h
|
| diff --git a/webrtc/video/video_send_stream.h b/webrtc/video/video_send_stream.h
|
| index 4a58e6f9ad4f71b05a6e6330f655792bfde1ba67..41d01bb92d909b2fb00226c37dc999bc25002af4 100644
|
| --- a/webrtc/video/video_send_stream.h
|
| +++ b/webrtc/video/video_send_stream.h
|
| @@ -19,9 +19,12 @@
|
| #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
|
| #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
|
| #include "webrtc/video/encoded_frame_callback_adapter.h"
|
| +#include "webrtc/video/encoder_state_feedback.h"
|
| #include "webrtc/video/payload_router.h"
|
| #include "webrtc/video/send_statistics_proxy.h"
|
| #include "webrtc/video/video_capture_input.h"
|
| +#include "webrtc/video/vie_channel.h"
|
| +#include "webrtc/video/vie_encoder.h"
|
| #include "webrtc/video_receive_stream.h"
|
| #include "webrtc/video_send_stream.h"
|
|
|
| @@ -30,7 +33,6 @@ namespace webrtc {
|
| class BitrateAllocator;
|
| class CallStats;
|
| class CongestionController;
|
| -class EncoderStateFeedback;
|
| class ProcessThread;
|
| class ViEChannel;
|
| class ViEEncoder;
|
| @@ -75,6 +77,7 @@ class VideoSendStream : public webrtc::VideoSendStream,
|
| private:
|
| bool SetSendCodec(VideoCodec video_codec);
|
| void ConfigureSsrcs();
|
| + TransportFeedbackObserver* GetTransportFeedbackObserver() const;
|
|
|
| SendStatisticsProxy stats_proxy_;
|
| TransportAdapter transport_adapter_;
|
| @@ -88,19 +91,12 @@ class VideoSendStream : public webrtc::VideoSendStream,
|
| CongestionController* const congestion_controller_;
|
|
|
| OveruseFrameDetector overuse_detector_;
|
| - rtc::scoped_ptr<VideoCaptureInput> input_;
|
| PayloadRouter payload_router_;
|
| - rtc::scoped_ptr<ViEEncoder> vie_encoder_;
|
| - rtc::scoped_ptr<ViEChannel> vie_channel_;
|
| - // TODO(pbos): Make proper const.
|
| - // const after construction.
|
| - VideoCodingModule* vcm_;
|
| - rtc::scoped_ptr<EncoderStateFeedback> encoder_feedback_;
|
| -
|
| - // Used as a workaround to indicate that we should be using the configured
|
| - // start bitrate initially, instead of the one reported by VideoEngine (which
|
| - // defaults to too high).
|
| - bool use_config_bitrate_;
|
| + ViEEncoder vie_encoder_;
|
| + VideoCodingModule* const vcm_;
|
| + EncoderStateFeedback encoder_feedback_;
|
| + ViEChannel vie_channel_;
|
| + VideoCaptureInput input_;
|
| };
|
| } // namespace internal
|
| } // namespace webrtc
|
|
|