| Index: media/cast/video_receiver/codecs/vp8/vp8_decoder.cc
|
| diff --git a/media/cast/video_receiver/codecs/vp8/vp8_decoder.cc b/media/cast/video_receiver/codecs/vp8/vp8_decoder.cc
|
| index 8ca6acfc15b1d5aa7405c140482eeea691801ef4..2650f4c9f0b39102258f829351b9a127c6848da3 100644
|
| --- a/media/cast/video_receiver/codecs/vp8/vp8_decoder.cc
|
| +++ b/media/cast/video_receiver/codecs/vp8/vp8_decoder.cc
|
| @@ -83,8 +83,10 @@ bool Vp8Decoder::Decode(const EncodedVideoFrame* encoded_frame,
|
| memcpy(decoded_frame->v_plane.data, img->planes[VPX_PLANE_V],
|
| decoded_frame->v_plane.length);
|
|
|
| - // Return frame.
|
| + cast_environment_->Logging()->InsertFrameEvent(kVideoFrameDecoded,
|
| + kFrameIdUnknown, encoded_frame->frame_id);
|
| VLOG(1) << "Decoded frame " << frame_id_int;
|
| +
|
| // Frame decoded - return frame to the user via callback.
|
| cast_environment_->PostTask(CastEnvironment::MAIN, FROM_HERE,
|
| base::Bind(frame_decoded_cb, base::Passed(&decoded_frame), render_time));
|
|
|