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 6b8edd0ac1ed076cfe812040b251582c64b90fc2..06c4604c27818334b6bf8f8f8fab3500f5d55fc3 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); |