Index: webrtc/audio/audio_receive_stream.cc |
diff --git a/webrtc/audio/audio_receive_stream.cc b/webrtc/audio/audio_receive_stream.cc |
index e2f8f148365dc466d994f7870d747a39c9e56ef8..560970f43380e5201fd4a486c274e3ba0fd5c7a6 100644 |
--- a/webrtc/audio/audio_receive_stream.cc |
+++ b/webrtc/audio/audio_receive_stream.cc |
@@ -186,7 +186,9 @@ webrtc::AudioReceiveStream::Stats AudioReceiveStream::GetStats() const { |
stats.fraction_lost = Q8ToFloat(call_stats.fractionLost); |
stats.capture_start_ntp_time_ms = call_stats.capture_start_ntp_time_ms_; |
if (codec_inst.pltype != -1) { |
+ RTC_DCHECK_GE(codec_inst.pltype, 0); |
stats.codec_name = codec_inst.plname; |
+ stats.codec_payload_type = rtc::Optional<uint32_t>(codec_inst.pltype); |
} |
stats.ext_seqnum = call_stats.extendedMax; |
if (codec_inst.plfreq / 1000 > 0) { |