AWB not sure

I was involved in an Android camera issue in Logcat. After starting and exiting the application using QCAR and the camera, the android gives errors for logcat. The following error, and the same errors continue to be issued continuously until I turn off the Android device.

09-24 15:25:45.467: E/mm-camera(194): c2d_thread_handle_process_buf_event:265 failed: pp_buf_mgr_get_buf() 

Does anyone know what causes this error? I am using the new Android Nexus7, and the Android OS version is 4.3.

+7
android android-camera qcar-sdk
source share
1 answer

Have you released a camera instance in your application? For example, can you launch a standard camera application after exiting your own?

If you do not call Camera.release () in the onPause application onPause , then the camera will continue to work, and Unfortunately, at the lower levels of the Nexus 7 stack stack, there are a lot of errors related errors at log level E.

+3
source share

All Articles