Chromium Code Reviews| Index: content/renderer/media/webrtc/media_stream_remote_video_source.cc |
| diff --git a/content/renderer/media/webrtc/media_stream_remote_video_source.cc b/content/renderer/media/webrtc/media_stream_remote_video_source.cc |
| index 39865aae545aedc0aa05f2e324957c2c56945394..0f865cf2706a4283f9c0cbe3790499fb6edd7590 100644 |
| --- a/content/renderer/media/webrtc/media_stream_remote_video_source.cc |
| +++ b/content/renderer/media/webrtc/media_stream_remote_video_source.cc |
| @@ -64,9 +64,7 @@ void MediaStreamRemoteVideoSource::RenderFrame( |
| scoped_refptr<media::VideoFrame> video_frame; |
| if (frame->GetNativeHandle() != NULL) { |
| - NativeHandleImpl* handle = |
| - static_cast<NativeHandleImpl*>(frame->GetNativeHandle()); |
| - video_frame = static_cast<media::VideoFrame*>(handle->GetHandle()); |
| + video_frame = static_cast<media::VideoFrame*>(frame->GetNativeHandle()); |
|
Ami GONE FROM CHROMIUM
2014/04/30 03:03:43
urr, wat?
What happened in this thunk?
hshi1
2014/04/30 18:05:19
I actually don't think this change is correct, we
|
| video_frame->set_timestamp(timestamp); |
| } else { |
| gfx::Size size(frame->GetWidth(), frame->GetHeight()); |