| Index: webrtc/api/androidvideotracksource.cc
|
| diff --git a/webrtc/api/androidvideotracksource.cc b/webrtc/api/androidvideotracksource.cc
|
| index 9242e5faf9baf13bb46fbf164288a61ffe06a0e5..b9f5d8b32f57e3fcf65b179b9a8cc80e8d23a2e9 100644
|
| --- a/webrtc/api/androidvideotracksource.cc
|
| +++ b/webrtc/api/androidvideotracksource.cc
|
| @@ -95,9 +95,8 @@ void AndroidVideoTrackSource::OnByteBufferFrameCaptured(const void* frame_data,
|
| buffer->MutableDataU(), buffer->StrideU(),
|
| buffer->width(), buffer->height());
|
|
|
| - OnFrame(cricket::WebRtcVideoFrame(
|
| - buffer, static_cast<webrtc::VideoRotation>(rotation),
|
| - translated_camera_time_us));
|
| + OnFrame(VideoFrame(buffer, static_cast<webrtc::VideoRotation>(rotation),
|
| + translated_camera_time_us));
|
| }
|
|
|
| void AndroidVideoTrackSource::OnTextureFrameCaptured(
|
| @@ -147,7 +146,7 @@ void AndroidVideoTrackSource::OnTextureFrameCaptured(
|
| matrix.Rotate(static_cast<webrtc::VideoRotation>(rotation));
|
| }
|
|
|
| - OnFrame(cricket::WebRtcVideoFrame(
|
| + OnFrame(VideoFrame(
|
| surface_texture_helper_->CreateTextureFrame(
|
| adapted_width, adapted_height,
|
| webrtc_jni::NativeHandleImpl(handle.oes_texture_id, matrix)),
|
|
|