Lines Matching full:device
22 * functionality expected from an emulated physical camera device:
23 * - Obtaining and setting camera device parameters
37 * functionality expected from an emulated physical camera device:
38 * - Obtaining and setting camera device parameters
56 * Emulated camera device abstract interface
60 /* Connects to the camera device.
67 /* Disconnects from the camera device.
77 /* Starts the camera device.
78 * This method tells the camera device to start capturing frames of the given
92 /* Stops the camera device.
93 * This method tells the camera device to stop capturing frames. Note that
105 * Emulated camera device public API
111 * properties of the physical device (list of supported pixel formats, frame
119 /* Starts delivering frames captured from the camera device.
121 * the camera device, and will deliver the pulled frames back to the emulated
123 * connected instance of this class with a started camera device. If it is
124 * called on a disconnected instance, or camera device has not been started,
139 /* Stops delivering frames captured from the camera device.
148 * started camera device. If it is called on a disconnected instance, or
149 * camera device has not been started, this method must return a failure.
161 /* Gets width of the frame obtained from the physical device.
163 * Width of the frame obtained from the physical device. Note that value
164 * returned from this method is valid only in case if camera device has been
169 LOGE_IF(!isStarted(), "%s: Device is not started", __FUNCTION__);
173 /* Gets height of the frame obtained from the physical device.
175 * Height of the frame obtained from the physical device. Note that value
176 * returned from this method is valid only in case if camera device has been
181 LOGE_IF(!isStarted(), "%s: Device is not started", __FUNCTION__);
188 * is valid only in case if camera device has been started.
192 LOGE_IF(!isStarted(), "%s: Device is not started", __FUNCTION__);
199 * method is valid only in case if camera device has been started.
203 LOGE_IF(!isStarted(), "%s: Device is not started", __FUNCTION__);
207 /* Gets pixel format of the frame that camera device streams to this class.
210 * - Original format, as reported by the actual camera device. Values for
215 * Since emulated camera device gets its data from the actual device, it gets
220 * it's applicable only when camera device is ready to stream frames.
225 * method is valid only in case if camera device has been started.
229 LOGE_IF(!isStarted(), "%s: Device is not started", __FUNCTION__);
252 * Emulated camera device private API
270 * Typicaly when emulated camera device starts capturing frames from the
271 * actual device, it does that in a worker thread created in StartCapturing,
311 /* Encapsulates a worker thread used by the emulated camera device.
399 /* Simply dispatch the call to the containing camera device. */
408 /* Containing camera device object. */
474 /* Defines possible states of the emulated camera device object.
481 /* Object has been connected to the physical device. */
483 /* Camera device has been started. */