| Index: webrtc/video/video_send_stream.h
|
| diff --git a/webrtc/video/video_send_stream.h b/webrtc/video/video_send_stream.h
|
| index fa6a7a7c16d247269845d8f1aeccc2764c86af50..d7b027a1ca6436d17904918721f849b6d0930238 100644
|
| --- a/webrtc/video/video_send_stream.h
|
| +++ b/webrtc/video/video_send_stream.h
|
| @@ -50,7 +50,7 @@ class VideoSendStream : public webrtc::VideoSendStream,
|
| public webrtc::CpuOveruseObserver,
|
| public webrtc::BitrateAllocatorObserver,
|
| public webrtc::VCMProtectionCallback,
|
| - protected webrtc::EncodedImageCallback {
|
| + public VideoEncoderSink {
|
| public:
|
| VideoSendStream(int num_cpu_cores,
|
| ProcessThread* module_process_thread,
|
| @@ -99,17 +99,18 @@ class VideoSendStream : public webrtc::VideoSendStream,
|
| private:
|
| struct EncoderSettings {
|
| VideoCodec video_codec;
|
| - int min_transmit_bitrate_bps;
|
| - std::vector<VideoStream> streams;
|
| + VideoEncoderConfig config;
|
| };
|
|
|
| - // Implements EncodedImageCallback. The implementation routes encoded frames
|
| + // Implements VideoEncoderSink. The implementation routes encoded frames
|
| // to the |payload_router_| and |config.pre_encode_callback| if set.
|
| // Called on an arbitrary encoder callback thread.
|
| int32_t Encoded(const EncodedImage& encoded_image,
|
| const CodecSpecificInfo* codec_specific_info,
|
| const RTPFragmentationHeader* fragmentation) override;
|
|
|
| + void OnEncoderActivityChanged(bool active) override;
|
| +
|
| static bool EncoderThreadFunction(void* obj);
|
| void EncoderProcess();
|
|
|
|
|