Home
last modified time | relevance | path

Searched refs:traits (Results 1 – 8 of 8) sorted by relevance

/hardware/google/av/codec2/vndk/
DC2Store.cpp685 std::shared_ptr<C2Component::Traits> traits(new (std::nothrow) C2Component::Traits); in init() local
686 if (traits) { in init()
690 traits->name = alias; in init()
692 bool encoder = (traits->name.find("encoder") != std::string::npos); in init()
710 traits->mediaType = mediaTypeConfig->m.value; in init()
712 traits->rank = 0x200; in init()
715 bool decoder = (traits->name.find("decoder") != std::string::npos); in init()
716 traits->kind = in init()
720 if (strncmp(traits->mediaType.c_str(), "audio/", 6) == 0) { in init()
721 traits->domain = C2Component::DOMAIN_AUDIO; in init()
[all …]
DC2AllocatorIon.cpp423 Traits traits = { "android.allocator.ion", id, LINEAR, minUsage, maxUsage }; in C2AllocatorIon() local
424 mTraits = std::make_shared<Traits>(traits); in C2AllocatorIon()
456 Traits traits = { in setUsageMapper() local
460 mTraits = std::make_shared<Traits>(traits); in setUsageMapper()
DC2AllocatorGralloc.cpp634 Traits traits = { "android.allocator.gralloc", id, C2Allocator::GRAPHIC, minUsage, maxUsage }; in Impl() local
635 mTraits = std::make_shared<C2Allocator::Traits>(traits); in Impl()
/hardware/interfaces/broadcastradio/common/utils2x/include/broadcastradio-utils-2x/
DUtils.h45 using traits = std::iterator_traits<IdentifierIterator>; variable
46 using ptr_type = typename traits::pointer;
47 using ref_type = typename traits::reference;
48 using diff_type = typename traits::difference_type;
/hardware/google/av/codec2/hidl/1.0/utils/
DComponentStore.cpp212 hidl_vec<IComponentStore::ComponentTraits> traits(c2traits.size()); in listComponents() local
216 objcpy(&traits[ix++], *c2trait); in listComponents()
219 traits.resize(ix); in listComponents()
220 _hidl_cb(traits); in listComponents()
385 for (const auto& traits : traitsList) { in debug() local
386 dump(out, traits) << std::endl; in debug()
/hardware/google/interfaces/media/c2/1.0/
DIComponentStore.hal82 * Component traits.
147 * @return traits List of component traits for all components supported by this store in no
150 listComponents() generates (vec<ComponentTraits> traits);
/hardware/interfaces/media/c2/1.0/
DIComponentStore.hal84 * Component traits.
144 * @return traits List of component traits for all components supported by
149 vec<ComponentTraits> traits
/hardware/google/av/media/sfplugin/
DCodec2InfoBuilder.cpp353 std::vector<Traits> traits = Codec2Client::ListComponents(); in buildMediaCodecList() local
372 for (const Traits& trait : traits) { in buildMediaCodecList()