ตั้งแต่วันที่ 27 มีนาคม 2025 เป็นต้นไป เราขอแนะนำให้ใช้ android-latest-release
แทน aosp-main
เพื่อสร้างและมีส่วนร่วมใน AOSP โปรดดูข้อมูลเพิ่มเติมที่หัวข้อการเปลี่ยนแปลงใน AOSP
การจัดการข้อผิดพลาดและสตรีม
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
การจัดการข้อผิดพลาด
เมธอดอินเทอร์เฟซ HIDL ที่โต้ตอบกับกล้องต้องสร้าง
สถานะเฉพาะกล้องที่เกี่ยวข้อง
หากเรียกใช้
ICameraDeviceCallbacks::notify()
ด้วย
ERROR_DEVICE
ระบบจะเรียกใช้ได้เฉพาะเมธอด
ICameraDeviceSession::close()
เท่านั้น ส่วนวิธีการอื่นๆ ทั้งหมดจะแสดงผลเป็น
INTERNAL_ERROR
ต้องรายงานข้อผิดพลาดชั่วคราวในการจับภาพผ่าน
ICameraDeviceCallbacks::notify()
พร้อม
รหัสข้อผิดพลาดที่เหมาะสม ในแต่ละกรณีที่เกิดความล้มเหลวชั่วคราว HAL ยังคงต้องเรียกใช้
ICameraDeviceCallbacks::processCaptureResult()
ด้วย
ผลการจับภาพที่เหมาะสม
การจัดการสตรีม
ไคลเอ็นต์ HAL ต้องกำหนดค่าสตรีมกล้องโดยเรียกใช้
ICameraDeviceSession::configurestreams()
ตัวอย่างเนื้อหาและโค้ดในหน้าเว็บนี้ขึ้นอยู่กับใบอนุญาตที่อธิบายไว้ในใบอนุญาตการใช้เนื้อหา Java และ OpenJDK เป็นเครื่องหมายการค้าหรือเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-06-18 UTC
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-06-18 UTC"],[],[],null,["# Error and stream handling\n\nError management\n----------------\n\nHIDL interface methods that interact with the camera must generate\nthe corresponding camera-specific\n[status](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/common/1.0/types.hal).\n\nIf\n[`ICameraDeviceCallbacks::notify()`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/device/3.2/ICameraDeviceCallback.hal#133) is called with\n[`ERROR_DEVICE`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/device/3.2/types.hal#575), only the\n[`ICameraDeviceSession::close()`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/device/3.2/ICameraDeviceSession.hal#406) method can be called\nsuccessfully. All other methods will return\n[`INTERNAL_ERROR`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/common/1.0/types.hal#69).\n\nTransient errors in image capture must be reported through\n[`ICameraDeviceCallbacks::notify()`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/device/3.2/ICameraDeviceCallback.hal#133) with the appropriate\n[error code](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/device/3.2/types.hal#568). In each transient failure case, the HAL must still call\n[`ICameraDeviceCallbacks::processCaptureResult()`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/device/3.2/ICameraDeviceCallback.hal#109) with an\nappropriate\n[capture result](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/device/3.2/types.hal#846).\n\nStream management\n-----------------\n\nHAL clients must configure camera streams by calling\n[`ICameraDeviceSession::configurestreams()`](https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/android16-release/camera/device/3.2/ICameraDeviceSession.hal#167)."]]