camera2_stream_ops 結構參考資料

camera2_stream_ops 結構參考資料

#include < camera2.h >

資料欄位

int(*  dequeue_buffer )(const struct camera2_stream_ops *w, buffer_handle_t **buffer)
 
int(*  enqueue_buffer (const struct camera2_stream_ops *w, int64_t timestamp, buffer_handle_t *buffer)
 
int(*  cancel_buffer )(const struct camera2_stream_ops *w, buffer_handle_t *buffer)
 
int(*  set_crop )(const struct camera2_stream_ops *w, int left, int top, int right, int bottom)
 

詳細說明

輸出圖片串流佇列介面。這些方法會在 allocate_stream() 中提供給 HAL 裝置,用於與該串流的 gralloc 緩衝區佇列互動。只有在 allocate_stream 傳回後,才能呼叫這些方法。

定義位於檔案 camera2.h 的第 73 行。

欄位說明文件

int(* cancel_buffer)(const struct camera2_stream_ops *w, buffer_handle_t *buffer)

將緩衝區傳回至佇列,但不將其標示為已填滿。

定義位於檔案 camera2.h 102 行。

int(* dequeue_buffer)(const struct camera2_stream_ops *w, buffer_handle_t **buffer)

取得要從佇列填入的緩衝區。緩衝區的大小和格式會針對特定串流 (在 allocate_stream 中定義) 固定,而步幅應從平台 gralloc 模組中查詢。系統會根據 allocate_stream 提供的用法標記分配 gralloc 緩衝區,並將其鎖定供使用。

定義位於檔案 camera2.h 81 行。

int(* enqueue_buffer)(const struct camera2_stream_ops *w, int64_t timestamp, buffer_handle_t *buffer)

將已填滿的緩衝區推送至供使用者使用的串流。

時間戳記代表圖像第一列曝光開始的時間,必須來自單調時鐘,並以奈秒為單位。不同相機之間或同一相機的連續例項之間,不必比較時間戳記。不過,同一部攝影機的串流必須可相互比較。如果單次擷取作業會為多個串流產生緩衝區,則每個串流的緩衝區都必須有相同的時間戳記,且該時間戳記必須與輸出影格中繼資料中的時間戳記相符。

定義位於檔案 camera2.h 96 行。

int(* set_crop)(const struct camera2_stream_ops *w, int left, int top, int right, int bottom)

為後續排入佇列的緩衝區設定裁剪視窗。參數是以相對於緩衝區寬度和高度的像素為單位。

定義位於檔案 camera2.h 的第 108 行


這個結構體的說明文件是由下列檔案產生: