Index: webrtc/config.h |
diff --git a/webrtc/config.h b/webrtc/config.h |
index 0e8b769b69701febc27edd524cfcf77703dca170..378eaeffa585bd3c5da2e7dae7b22401e5df90a8 100644 |
--- a/webrtc/config.h |
+++ b/webrtc/config.h |
@@ -125,7 +125,7 @@ struct VideoStream { |
std::vector<int> temporal_layer_thresholds_bps; |
}; |
-struct VideoEncoderConfig { |
+class VideoEncoderConfig { |
public: |
// These are reference counted to permit copying VideoEncoderConfig and be |
// kept alive until all encoder_specific_settings go out of scope. |
@@ -143,7 +143,7 @@ struct VideoEncoderConfig { |
virtual void FillVideoCodecH264(VideoCodecH264* h264_settings) const; |
private: |
virtual ~EncoderSpecificSettings() {} |
- friend struct VideoEncoderConfig; |
+ friend class VideoEncoderConfig; |
}; |
class H264EncoderSpecificSettings : public EncoderSpecificSettings { |
@@ -179,6 +179,21 @@ struct VideoEncoderConfig { |
kScreen, |
}; |
+ class VideoStreamFactoryInterface : public rtc::RefCountInterface { |
+ public: |
+ // An implementation should return a std::vector<VideoStream> with the |
+ // wanted VideoStream settings for the given video resolution. |
+ // The size of the vector may not be larger than |
+ // |encoder_config.number_of_streams|. |
+ virtual std::vector<VideoStream> CreateEncoderStreams( |
+ int width, |
+ int height, |
+ const VideoEncoderConfig& encoder_config) = 0; |
+ |
+ protected: |
+ virtual ~VideoStreamFactoryInterface() {} |
+ }; |
+ |
VideoEncoderConfig& operator=(VideoEncoderConfig&&) = default; |
VideoEncoderConfig& operator=(const VideoEncoderConfig&) = delete; |
@@ -190,7 +205,7 @@ struct VideoEncoderConfig { |
~VideoEncoderConfig(); |
std::string ToString() const; |
- std::vector<VideoStream> streams; |
+ rtc::scoped_refptr<VideoStreamFactoryInterface> video_stream_factory; |
std::vector<SpatialLayer> spatial_layers; |
ContentType content_type; |
rtc::scoped_refptr<const EncoderSpecificSettings> encoder_specific_settings; |
@@ -200,7 +215,10 @@ struct VideoEncoderConfig { |
// maintaining a higher bitrate estimate. Padding will however not be sent |
// unless the estimated bandwidth indicates that the link can handle it. |
int min_transmit_bitrate_bps; |
- bool expect_encode_from_texture; |
+ int max_bitrate_bps; |
+ |
+ // Max number of encoded VideoStreams to produce. |
+ size_t number_of_streams; |
private: |
// Access to the copy constructor is private to force use of the Copy() |