Skip to content

Commit

Permalink
Remove unnecessary logging of preview formats
Browse files Browse the repository at this point in the history
See comment in #13094
  • Loading branch information
hrydgard committed Jul 5, 2020
1 parent 7e55272 commit 036191c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions android/src/org/ppsspp/ppsspp/CameraHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,6 @@ void startCamera() {
mCamera = Camera.open(cameraId);
Camera.Parameters param = mCamera.getParameters();

List<Integer> supportedPreviewFormats = param.getSupportedPreviewFormats();
for (int i = 0; i < supportedPreviewFormats.size(); i++) {
Log.i(TAG, "Supported preview format: " + i);
}

// Set preview size
List<Camera.Size> previewSizes = param.getSupportedPreviewSizes();
mPreviewSize = null;
Expand Down

0 comments on commit 036191c

Please sign in to comment.