| Index: webrtc/video_send_stream.h
|
| diff --git a/webrtc/video_send_stream.h b/webrtc/video_send_stream.h
|
| index 886367f0a50fb3d94b269a4208a1ed27be4d0828..b79f6dd30e7909454aa6fb471e8d3ee5a0da178f 100644
|
| --- a/webrtc/video_send_stream.h
|
| +++ b/webrtc/video_send_stream.h
|
| @@ -41,7 +41,10 @@ class VideoCaptureInput {
|
| class VideoSendStream {
|
| public:
|
| struct StreamStats {
|
| + std::string ToString() const;
|
| +
|
| FrameCounts frame_counts;
|
| + bool is_rtx = false;
|
| int width = 0;
|
| int height = 0;
|
| // TODO(holmer): Move bitrate_bps out to the webrtc::Call layer.
|
| @@ -55,6 +58,7 @@ class VideoSendStream {
|
| };
|
|
|
| struct Stats {
|
| + std::string ToString(int64_t time_ms) const;
|
| std::string encoder_implementation_name = "unknown";
|
| int input_frame_rate = 0;
|
| int encode_frame_rate = 0;
|
|
|