Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. int rr = 0;
  2. if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
  3. rr = (mLastRotation * 90 + 90) % 360;
  4. rr = (360 - rr) % 360;
  5. } else {
  6. rr = (mLastRotation * 90 + 90) % 360;
  7. }
  8. System.out.println("DEBUG 4: " + rr);
  9. video_recorder.setOrientationHint(rr);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement