android.hardware.Camera tells me, of lock() and unlock(), that I "probably do not need this method" if I "am not recording video." Well, I am recording video.
unlock() is supposed to be called "before calling android.media.MediaRecorder.setCamera(Camera)." That's simple enough; I can just put the unlock() call immediately before the setCamera() call. But what is the right time to call lock()? Immediately after setCamera()? After MediaRecorder.stop()? Or at some other time? How do I know when it's time to lock the Camera?