Home
last modified time | relevance | path

Searched refs:shotMode (Results 1 – 2 of 2) sorted by relevance

/hardware/samsung_slsi/exynos5/include/
DExynosCamera.h164 int shotMode; member
927 bool setShotMode(int shotMode);
/hardware/samsung_slsi/exynos5/libcamera/
DExynosCamera.cpp196 shotMode = ExynosCamera::SHOT_MODE_SINGLE; in ExynosCameraInfo()
4695 bool ExynosCamera::setShotMode(int shotMode) in setShotMode() argument
4697 if (shotMode < SHOT_MODE_SINGLE || SHOT_MODE_SELF < shotMode) { in setShotMode()
4698 ALOGE("ERR(%s):Invalid shotMode (%d)", __func__, shotMode); in setShotMode()
4702 if (m_curCameraInfo->shotMode != shotMode) { in setShotMode()
4703 m_curCameraInfo->shotMode = shotMode; in setShotMode()
4706 … if (exynos_v4l2_s_ctrl(m_previewDev->fd, V4L2_CID_IS_CAMERA_SHOT_MODE_NORMAL, shotMode) < 0) { in setShotMode()
4718 return m_curCameraInfo->shotMode; in getShotMode()