Home
last modified time | relevance | path

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

/packages/services/Car/evs/sampleDriver/
DEvsV4lCamera.cpp385 uint32_t v4l2cid = V4L2_CID_BASE; in setIntParameter() local
388 if (!convertToV4l2CID(id, v4l2cid)) { in setIntParameter()
392 v4l2_control control = {v4l2cid, value}; in setIntParameter()
408 uint32_t v4l2cid = V4L2_CID_BASE; in getIntParameter() local
411 if (!convertToV4l2CID(id, v4l2cid)) { in getIntParameter()
415 v4l2_control control = {v4l2cid, 0}; in getIntParameter()
829 bool EvsV4lCamera::convertToV4l2CID(CameraParam id, uint32_t& v4l2cid) { in convertToV4l2CID() argument
832 v4l2cid = V4L2_CID_BRIGHTNESS; in convertToV4l2CID()
835 v4l2cid = V4L2_CID_CONTRAST; in convertToV4l2CID()
838 v4l2cid = V4L2_CID_AUTO_WHITE_BALANCE; in convertToV4l2CID()
[all …]
DEvsV4lCamera.h115 inline bool convertToV4l2CID(CameraParam id, uint32_t& v4l2cid);