Lines Matching refs:frame

235             PREVIEW_FRAME_SYNC = 0x1, ///SYNC implies that the frame needs to be explicitly returned after consuming in order to be filled by camera again
236 PREVIEW_FRAME = 0x2 , ///Preview frame includes viewfinder and snapshot frames
237 IMAGE_FRAME_SYNC = 0x4, ///Image Frame is the image capture output frame
241 FRAME_DATA_SYNC = 0x40, ///Any extra data assosicated with the frame. Always synced with the frame
245 ALL_FRAMES = 0xFFFF ///Maximum of 16 frame types supported
275 CameraFrame(const CameraFrame &frame) :
276 mCookie(frame.mCookie),
277 mCookie2(frame.mCookie2),
278 mBuffer(frame.mBuffer),
279 mFrameType(frame.mFrameType),
280 mTimestamp(frame.mTimestamp),
281 mWidth(frame.mWidth),
282 mHeight(frame.mHeight),
283 mOffset(frame.mOffset),
284 mAlignment(frame.mAlignment),
285 mFd(frame.mFd),
286 mLength(frame.mLength),
287 mFrameMask(frame.mFrameMask),
288 mQuirks(frame.mQuirks) {
290 mYuv[0] = frame.mYuv[0];
291 mYuv[1] = frame.mYuv[1];
330 ///@remarks Future enum related to display, like frame displayed event, could be added here
417 /// MSB 16 bits is for events and LSB 16 bits is for frame notifications
418 /// FrameProvider and EventProvider classes act as helpers to event/frame
436 * Interace class abstraction for Camera Adapter to act as a frame provider
624 void copyAndSendPictureFrame(CameraFrame* frame, int32_t msgType);
625 void copyAndSendPreviewFrame(CameraFrame* frame, int32_t msgType);
978 * message is sent with the corresponding frame. Every record frame must be released
994 * Release a record frame previously returned by CAMERA_MSG_VIDEO_FRAME.