Home
last modified time | relevance | path

Searched refs:VdaImplType (Results 1 – 4 of 4) sorted by relevance

/external/crosvm/media/libvda/src/decode/
Dvda_instance.rs18 pub enum VdaImplType { enum
37 fn new(typ: VdaImplType) -> Result<Self> { in new()
39 VdaImplType::Fake => bindings::vda_impl_type_FAKE, in new()
40 VdaImplType::Gavda => bindings::vda_impl_type_GAVDA, in new()
41 VdaImplType::Gavd => bindings::vda_impl_type_GAVD, in new()
73 pub fn new(typ: VdaImplType) -> Result<Self> { in new()
/external/crosvm/media/libvda/tests/
Ddecode_tests.rs13 VdaInstance::new(VdaImplType::Fake).expect("failed to create VDAInstance") in create_vda_instance()
/external/crosvm/devices/src/virtio/video/
Dmod.rs334 let vda = decoder::backend::vda::LibvdaDecoder::new(libvda::decode::VdaImplType::Gavda) in create_decoder_device()
345 let vda = decoder::backend::vda::LibvdaDecoder::new(libvda::decode::VdaImplType::Gavd) in create_decoder_device()
/external/crosvm/devices/src/virtio/video/decoder/backend/
Dvda.rs291 pub fn new(backend_type: libvda::decode::VdaImplType) -> VideoResult<Self> { in new()