Home | History | Annotate | Download | only in camera

Lines Matching full:stream

25 // Stream represents a single input or output stream for a camera device.
26 class Stream {
28 Stream(int id, camera3_stream_t *s);
29 ~Stream();
31 // validate that astream's parameters match this stream's parameters
45 // This stream is being reused. Used in stream configuration passes
52 // The camera device id this stream belongs to
54 // Handle to framework's stream, used as a cookie for buffers
56 // Stream type: CAMERA3_STREAM_* (see <hardware/camera3.h>)
58 // Width in pixels of the buffers in this stream
60 // Height in pixels of the buffers in this stream
66 // Max simultaneous in-flight buffers for this stream
68 // Buffers have been registered for this stream and are ready
70 // Array of handles to buffers currently in use by the stream
74 // Lock protecting the Stream object for modifications