Home
last modified time | relevance | path

Searched refs:V4L2ExtCtrl (Results 1 – 3 of 3) sorted by relevance

/external/v4l2_codec2/common/include/v4l2_codec2/common/
DV4L2Device.h37 struct V4L2ExtCtrl { struct
38 V4L2ExtCtrl(uint32_t id);
39 V4L2ExtCtrl(uint32_t id, int32_t val);
453 bool setExtCtrls(uint32_t ctrlClass, std::vector<V4L2ExtCtrl> ctrls);
/external/v4l2_codec2/components/
DV4L2Encoder.cpp157 {V4L2ExtCtrl(V4L2_CID_MPEG_VIDEO_BITRATE, bitrate)})) { in setBitrate()
292 {V4L2ExtCtrl(V4L2_CID_MPEG_VIDEO_FORCE_KEY_FRAME)})) { in handleEncodeRequest()
572 {V4L2ExtCtrl(V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE, 1)})) { in configureDevice()
581 mDevice->setExtCtrls(V4L2_CTRL_CLASS_MPEG, {V4L2ExtCtrl(V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE, 1), in configureDevice()
582 V4L2ExtCtrl(V4L2_CID_MPEG_VIDEO_GOP_SIZE, 0)}); in configureDevice()
601 {V4L2ExtCtrl(V4L2_CID_MPEG_VIDEO_PREPEND_SPSPPS_TO_IDR, 1)})) { in configureH264()
610 std::vector<V4L2ExtCtrl> h264Ctrls; in configureH264()
/external/v4l2_codec2/common/
DV4L2Device.cpp73 V4L2ExtCtrl::V4L2ExtCtrl(uint32_t id) { in V4L2ExtCtrl() function in android::V4L2ExtCtrl
78 V4L2ExtCtrl::V4L2ExtCtrl(uint32_t id, int32_t val) : V4L2ExtCtrl(id) { in V4L2ExtCtrl() function in android::V4L2ExtCtrl
1890 bool V4L2Device::setExtCtrls(uint32_t ctrlClass, std::vector<V4L2ExtCtrl> ctrls) { in setExtCtrls()