| Index: webrtc/video/audio_receive_stream.cc
 | 
| diff --git a/webrtc/video/audio_receive_stream.cc b/webrtc/video/audio_receive_stream.cc
 | 
| index f5383f43196231985077960c6e4ad4d34fec428d..04e0b0621db828ce3a397dc0ef03dd1e59b6e2b7 100644
 | 
| --- a/webrtc/video/audio_receive_stream.cc
 | 
| +++ b/webrtc/video/audio_receive_stream.cc
 | 
| @@ -34,6 +34,9 @@ std::string AudioReceiveStream::Config::Rtp::ToString() const {
 | 
|  std::string AudioReceiveStream::Config::ToString() const {
 | 
|    std::stringstream ss;
 | 
|    ss << "{rtp: " << rtp.ToString();
 | 
| +  ss << ", voe_channel_id: " << voe_channel_id;
 | 
| +  if (!sync_group.empty())
 | 
| +    ss << ", sync_group: " << sync_group;
 | 
|    ss << '}';
 | 
|    return ss.str();
 | 
|  }
 | 
| @@ -45,6 +48,7 @@ AudioReceiveStream::AudioReceiveStream(
 | 
|      : remote_bitrate_estimator_(remote_bitrate_estimator),
 | 
|        config_(config),
 | 
|        rtp_header_parser_(RtpHeaderParser::Create()) {
 | 
| +  DCHECK(config.voe_channel_id != -1);
 | 
|    DCHECK(remote_bitrate_estimator_ != nullptr);
 | 
|    DCHECK(rtp_header_parser_ != nullptr);
 | 
|    for (const auto& ext : config.rtp.extensions) {
 | 
| 
 |