Index: media/video/capture/android/video_capture_device_android.cc |
diff --git a/media/video/capture/android/video_capture_device_android.cc b/media/video/capture/android/video_capture_device_android.cc |
index 4110753ae63326fe8d2dfac81ac042a4f439f863..38a9c82db01450d34779b19fe98cdb8df6df29fd 100644 |
--- a/media/video/capture/android/video_capture_device_android.cc |
+++ b/media/video/capture/android/video_capture_device_android.cc |
@@ -228,9 +228,13 @@ void VideoCaptureDeviceAndroid::OnFrameAvailable( |
if (expected_next_frame_time_ <= current_time) { |
expected_next_frame_time_ += frame_interval_; |
- client_->OnIncomingCapturedFrame( |
- reinterpret_cast<uint8*>(buffer), length, base::Time::Now(), |
- rotation, flip_vert, flip_horiz, current_settings_); |
+ client_->OnIncomingCapturedFrame(reinterpret_cast<uint8*>(buffer), |
+ length, |
+ base::Time::Now(), |
+ rotation, |
+ flip_vert, |
+ flip_horiz, |
+ current_settings_); |
} |
env->ReleaseByteArrayElements(data, buffer, JNI_ABORT); |