could you give me some android camera stream logs?
时间: 2023-12-14 08:40:18 浏览: 99
Sure! Here's an example of Android camera stream logs:
```
D/CameraManagerGlobal: Connecting to camera service
I/CameraManager: Using legacy camera HAL.
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
I/Camera: CameraDeviceState:CAMERA_STATE_OPENING
I/Camera: CameraDeviceState:CAMERA_STATE_OPENED
W/Camera: CameraService::connect call from pid 1234; forcing disconnect()
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
I/Camera: CameraDeviceState:CAMERA_STATE_IDLE
I/Camera: CameraDeviceState:CAMERA_STATE_PREVIEW
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
I/Camera: CameraDeviceState:CAMERA_STATE_RECORDING
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
I/Camera: CameraDeviceState:CAMERA_STATE_PREVIEW
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
D/Camera: app passed NULL surface
I/Camera: CameraDeviceState:CAMERA_STATE_IDLE
I/Camera: CameraDeviceState:CAMERA_STATE_CLOSED
```
These logs show the various states of the camera device, including connecting to the camera service, opening the camera, setting up the preview stream, and recording video. The "app passed NULL surface" messages indicate that the app did not provide a valid surface for displaying the camera preview.
阅读全文