Hello,
We recently ran into a codec error issue in our Android implementation. This prompted me to check how framesReceived are counted. W3C stats document says these are the frames received by the network before decoding.
I am looking at ReceiveStatisticsProxy::OnDecodedFrame(), which counts decoded key frames and delta frames. In WebRtcVideoReceiveChannel::WebRtcVideoReceiveStream::GetVideoReceiverInfo() you have:
info.frames_received = stats.frame_counts.key_frames + stats.frame_counts.delta_frames;
This then propagates to CreateInboundRTPStreamStatsFromVideoReceiverInfo().
This is probably not a big deal, but is my description correct?
Thank you.
Jozsef