Commit 283b26e2 authored by Alexander Smorkalov's avatar Alexander Smorkalov

Issue in NativeCameraView and JavaCameraView fixed.

In previous version getWidth() and getHeight() values were used instead method parameters.
parent 716e0192
...@@ -198,7 +198,7 @@ public class JavaCameraView extends CameraBridgeViewBase implements PreviewCallb ...@@ -198,7 +198,7 @@ public class JavaCameraView extends CameraBridgeViewBase implements PreviewCallb
*/ */
/* First step - initialize camera connection */ /* First step - initialize camera connection */
Log.d(TAG, "Connecting to camera"); Log.d(TAG, "Connecting to camera");
if (!initializeCamera(getWidth(), getHeight())) if (!initializeCamera(width, height))
return false; return false;
/* now we can start update thread */ /* now we can start update thread */
......
...@@ -37,7 +37,7 @@ public class NativeCameraView extends CameraBridgeViewBase { ...@@ -37,7 +37,7 @@ public class NativeCameraView extends CameraBridgeViewBase {
* 2. We need to start thread which will be getting frames * 2. We need to start thread which will be getting frames
*/ */
/* First step - initialize camera connection */ /* First step - initialize camera connection */
if (!initializeCamera(getWidth(), getHeight())) if (!initializeCamera(width, height))
return false; return false;
/* now we can start update thread */ /* now we can start update thread */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment