Home
last modified time | relevance | path

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

/external/crosvm/devices/src/virtio/video/encoder/
Dmod.rs91 dst_h264_level: Option<Level>, field
170 let dst_h264_level = if dest_format == Format::H264 { in new() localVariable
182 dst_h264_level, in new()
218 dst_h264_level: self.dst_h264_level, in set_encode_session()
1138 stream.dst_h264_level = Some(Level::H264_1_0); in set_params()
1140 stream.dst_h264_level = None; in set_params()
1244 Format::H264 => CtrlVal::Level(stream.dst_h264_level.ok_or_else(|| { in get_control()
1364 if stream.dst_h264_level != Some(level) { in set_control()
1380 stream.dst_h264_level = Some(level); in set_control()
Dencoder.rs55 pub dst_h264_level: Option<Level>, field
/external/crosvm/devices/src/virtio/video/encoder/backend/
Dvda.rs251 h264_output_level: config.dst_h264_level.map(|level| { in start_session()