Yes, we've got the same kind of issue in our app. For the records, here is the problem and the solution. The problem lies in the Camera.startPreview : an error is reported in logcat : E/CameraService( 554): registerBuffers failed with status -38 followed by an exception : java.lang.RuntimeException: startPreview failed
The problem is solved by changing the surface holder type : mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS); On 1.5, commenting this line just hides the camera preview from the surface (we don't want it to display directly, we only use it to access to the video frame buffer), but does not crash. Spocky --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

