Index: webrtc/video/vie_channel.cc |
diff --git a/webrtc/video/vie_channel.cc b/webrtc/video/vie_channel.cc |
index 6e2406a9bdb80fdcd94607e93d07936dce8d73c4..e39ffbf6a9e4304e245a3e42eb505185c30f9ac5 100644 |
--- a/webrtc/video/vie_channel.cc |
+++ b/webrtc/video/vie_channel.cc |
@@ -983,6 +983,12 @@ void ViEChannel::OnIncomingPayloadType(int payload_type) { |
receive_stats_callback_->OnIncomingPayloadType(payload_type); |
} |
+void ViEChannel::OnDecoderImplementationName(const char* implementation_name) { |
+ CriticalSectionScoped cs(crit_.get()); |
+ if (receive_stats_callback_) |
+ receive_stats_callback_->OnDecoderImplementationName(implementation_name); |
+} |
+ |
void ViEChannel::OnReceiveRatesUpdated(uint32_t bit_rate, uint32_t frame_rate) { |
CriticalSectionScoped cs(crit_.get()); |
if (receive_stats_callback_) |