Home
last modified time | relevance | path

Searched refs:CtrlType (Results 1 – 5 of 5) sorted by relevance

/external/crosvm/devices/src/virtio/video/
Dcommand.rs113 ctrl_type: CtrlType,
290 VIRTIO_VIDEO_CONTROL_BITRATE => CtrlType::Bitrate, in from_reader()
291 VIRTIO_VIDEO_CONTROL_PROFILE => CtrlType::Profile, in from_reader()
292 VIRTIO_VIDEO_CONTROL_LEVEL => CtrlType::Level, in from_reader()
293 VIRTIO_VIDEO_CONTROL_FORCE_KEYFRAME => CtrlType::ForceKeyframe, in from_reader()
Derror.rs10 use crate::virtio::video::control::CtrlType;
32 UnsupportedControl(CtrlType),
Dcontrol.rs52 pub enum CtrlType { enum
/external/crosvm/devices/src/virtio/video/encoder/
Dmod.rs1054 return Err(VideoError::UnsupportedControl(CtrlType::Profile)); in query_control()
1078 return Err(VideoError::UnsupportedControl(CtrlType::Level)); in query_control()
1092 ctrl_type: CtrlType, in get_control() argument
1099 CtrlType::Bitrate => CtrlVal::Bitrate(stream.dst_bitrate), in get_control()
1100 CtrlType::Profile => CtrlVal::Profile(stream.dst_profile), in get_control()
1101 CtrlType::Level => { in get_control()
1117 CtrlType::ForceKeyframe => return Err(VideoError::UnsupportedControl(ctrl_type)), in get_control()
/external/crosvm/devices/src/virtio/video/decoder/
Dmod.rs17 use crate::virtio::video::control::{CtrlType, CtrlVal, QueryCtrlType};
722 ctrl_type: CtrlType, in get_control() argument
726 CtrlType::Profile => { in get_control()
743 CtrlType::Level => { in get_control()