diff --git a/call/video_config.cc b/call/video_config.cc index 35fcd3e9ba..85140515f7 100644 --- a/call/video_config.cc +++ b/call/video_config.cc @@ -23,7 +23,8 @@ VideoStream::VideoStream() min_bitrate_bps(-1), target_bitrate_bps(-1), max_bitrate_bps(-1), - max_qp(-1) {} + max_qp(-1), + active(true) {} VideoStream::VideoStream(const VideoStream& other) = default; VideoStream::~VideoStream() = default; @@ -37,6 +38,7 @@ std::string VideoStream::ToString() const { ss << ", target_bitrate_bps:" << target_bitrate_bps; ss << ", max_bitrate_bps:" << max_bitrate_bps; ss << ", max_qp: " << max_qp; + ss << ", active: " << active; ss << ", temporal_layer_thresholds_bps: ["; for (size_t i = 0; i < temporal_layer_thresholds_bps.size(); ++i) {