Searched refs:CtrlType (Results 1 – 5 of 5) sorted by relevance
/external/crosvm/devices/src/virtio/video/ |
D | command.rs | 113 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()
|
D | error.rs | 10 use crate::virtio::video::control::CtrlType; 32 UnsupportedControl(CtrlType),
|
D | control.rs | 52 pub enum CtrlType { enum
|
/external/crosvm/devices/src/virtio/video/encoder/ |
D | mod.rs | 1054 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/ |
D | mod.rs | 17 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()
|