החל מ-27 במרץ 2025, מומלץ להשתמש ב-android-latest-release
במקום ב-aosp-main
כדי ליצור תרומות ל-AOSP. מידע נוסף זמין במאמר שינויים ב-AOSP.
טיפול בשגיאות ובפלט
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
ניהול שגיאות
שיטות ממשק HIDL שמקיימות אינטראקציה עם המצלמה צריכות ליצור את
הסטטוס התואם למצלמה.
אם קוראים ל-
ICameraDeviceCallbacks::notify()
עם
ERROR_DEVICE
, אפשר לקרוא רק ל-method
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)."]]