| Index: webrtc/video_engine/vie_channel.cc
|
| diff --git a/webrtc/video_engine/vie_channel.cc b/webrtc/video_engine/vie_channel.cc
|
| index bd722cfeda37980c3a8c618cf0645affe169d633..a93f9436963ebe814f35e694dd0890b54f5b7153 100644
|
| --- a/webrtc/video_engine/vie_channel.cc
|
| +++ b/webrtc/video_engine/vie_channel.cc
|
| @@ -1032,6 +1032,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_)
|
|
|