Lines Matching refs:attr
6818 mm_camera_channel_attr_t attr; in addVideoChannel() local
6819 memset(&attr, 0, sizeof(mm_camera_channel_attr_t)); in addVideoChannel()
6820 attr.notify_mode = MM_CAMERA_SUPER_BUF_NOTIFY_BURST; in addVideoChannel()
6821 attr.look_back = 0; //wait for future frame for liveshot in addVideoChannel()
6822 attr.post_frame_skip = mParameters.getZSLBurstInterval(); in addVideoChannel()
6823 attr.water_mark = 1; //hold min buffers possible in Q in addVideoChannel()
6824 attr.max_unmatched_frames = mParameters.getMaxUnmatchedFramesInQueue(); in addVideoChannel()
6825 rc = pChannel->init(&attr, snapshot_channel_cb_routine, this); in addVideoChannel()
6880 mm_camera_channel_attr_t attr; in addSnapshotChannel() local
6881 memset(&attr, 0, sizeof(mm_camera_channel_attr_t)); in addSnapshotChannel()
6882 attr.notify_mode = MM_CAMERA_SUPER_BUF_NOTIFY_CONTINUOUS; in addSnapshotChannel()
6883 attr.look_back = 0; //wait for future frame for liveshot in addSnapshotChannel()
6884 attr.post_frame_skip = mParameters.getZSLBurstInterval(); in addSnapshotChannel()
6885 attr.water_mark = 1; //hold min buffers possible in Q in addSnapshotChannel()
6886 attr.max_unmatched_frames = mParameters.getMaxUnmatchedFramesInQueue(); in addSnapshotChannel()
6887 attr.priority = MM_CAMERA_SUPER_BUF_PRIORITY_LOW; in addSnapshotChannel()
6888 rc = pChannel->init(&attr, snapshot_channel_cb_routine, this); in addSnapshotChannel()
6937 mm_camera_channel_attr_t attr; in addRawChannel() local
6938 memset(&attr, 0, sizeof(mm_camera_channel_attr_t)); in addRawChannel()
6939 attr.notify_mode = MM_CAMERA_SUPER_BUF_NOTIFY_BURST; in addRawChannel()
6940 attr.look_back = mParameters.getZSLBackLookCount(); in addRawChannel()
6941 attr.post_frame_skip = mParameters.getZSLBurstInterval(); in addRawChannel()
6942 attr.water_mark = 1; in addRawChannel()
6943 attr.max_unmatched_frames = mParameters.getMaxUnmatchedFramesInQueue(); in addRawChannel()
6944 rc = pChannel->init(&attr, raw_channel_cb_routine, this); in addRawChannel()
7019 mm_camera_channel_attr_t attr; in addZSLChannel() local
7020 memset(&attr, 0, sizeof(mm_camera_channel_attr_t)); in addZSLChannel()
7022 attr.notify_mode = MM_CAMERA_SUPER_BUF_NOTIFY_CONTINUOUS; in addZSLChannel()
7024 attr.notify_mode = MM_CAMERA_SUPER_BUF_NOTIFY_BURST; in addZSLChannel()
7026 attr.look_back = mParameters.getZSLBackLookCount(); in addZSLChannel()
7027 attr.post_frame_skip = mParameters.getZSLBurstInterval(); in addZSLChannel()
7029 attr.post_frame_skip++; in addZSLChannel()
7031 attr.water_mark = mParameters.getZSLQueueDepth(); in addZSLChannel()
7032 attr.max_unmatched_frames = mParameters.getMaxUnmatchedFramesInQueue(); in addZSLChannel()
7033 attr.user_expected_frame_id = in addZSLChannel()
7040 attr.enable_frame_sync = 1; in addZSLChannel()
7042 rc = pChannel->init(&attr, in addZSLChannel()
7145 mm_camera_channel_attr_t attr; in addCaptureChannel() local
7146 memset(&attr, 0, sizeof(mm_camera_channel_attr_t)); in addCaptureChannel()
7148 attr.notify_mode = MM_CAMERA_SUPER_BUF_NOTIFY_BURST; in addCaptureChannel()
7149 attr.look_back = mParameters.getZSLBackLookCount(); in addCaptureChannel()
7150 attr.water_mark = mParameters.getZSLQueueDepth(); in addCaptureChannel()
7152 attr.notify_mode = MM_CAMERA_SUPER_BUF_NOTIFY_CONTINUOUS; in addCaptureChannel()
7154 attr.max_unmatched_frames = mParameters.getMaxUnmatchedFramesInQueue(); in addCaptureChannel()
7156 rc = pChannel->init(&attr, in addCaptureChannel()
7615 mm_camera_channel_attr_t attr; in addReprocChannel() local
7616 memset(&attr, 0, sizeof(mm_camera_channel_attr_t)); in addReprocChannel()
7617 attr.notify_mode = MM_CAMERA_SUPER_BUF_NOTIFY_CONTINUOUS; in addReprocChannel()
7618 attr.max_unmatched_frames = mParameters.getMaxUnmatchedFramesInQueue(); in addReprocChannel()
7619 rc = pChannel->init(&attr, in addReprocChannel()