Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 36) sorted by relevance

12

/hardware/google/av/codec2/hidl/services/
DC2SoftwareCodecServiceRegistrant.cpp28 android::sp<IComponentStore> store = in RegisterCodecServices() local
31 if (store == nullptr) { in RegisterCodecServices()
34 if (store->registerAsService("software") != android::OK) { in RegisterCodecServices()
Dvendor.cpp124 android::sp<IComponentStore> store; in main() local
131 store = new utils::ComponentStore( in main()
135 store = new utils::ComponentStore( in main()
139 if (store == nullptr) { in main()
142 if (store->registerAsService("default") != android::OK) { in main()
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
Dvbp_h264_parser.c248 frame_store* store, in vbp_set_VAPicture_h264() argument
253 if (FRAME != viddec_h264_get_dec_structure(store)) in vbp_set_VAPicture_h264()
258 pic->TopFieldOrderCnt = store->frame.poc; in vbp_set_VAPicture_h264()
259 pic->BottomFieldOrderCnt = store->frame.poc; in vbp_set_VAPicture_h264()
263 if (FRAME == viddec_h264_get_dec_structure(store)) in vbp_set_VAPicture_h264()
270 pic->TopFieldOrderCnt = store->top_field.poc; in vbp_set_VAPicture_h264()
271 pic->BottomFieldOrderCnt = store->bottom_field.poc; in vbp_set_VAPicture_h264()
276 pic->TopFieldOrderCnt = store->top_field.poc; in vbp_set_VAPicture_h264()
277 pic->BottomFieldOrderCnt = store->bottom_field.poc; in vbp_set_VAPicture_h264()
434 frame_store* store = NULL; in vbp_set_reference_frames_h264() local
[all …]
/hardware/interfaces/automotive/vehicle/2.0/default/
DVehicleService.cpp31 auto store = std::make_unique<VehiclePropertyStore>(); in main() local
32 auto hal = std::make_unique<impl::EmulatedVehicleHal>(store.get()); in main()
/hardware/google/av/codec2/vndk/
DC2Store.cpp69 void setComponentStore(std::shared_ptr<C2ComponentStore> store);
128 std::shared_ptr<C2ComponentStore> store) { in UseComponentStoreForIonAllocator() argument
140 c2_status_t res = store->querySupportedValues_sm(query); in UseComponentStoreForIonAllocator()
159 mapper = [store](C2MemoryUsage usage, size_t capacity, in UseComponentStoreForIonAllocator()
166 c2_status_t res = store->config_sm({&usageInfo}, &failures); in UseComponentStoreForIonAllocator()
181 void C2PlatformAllocatorStoreImpl::setComponentStore(std::shared_ptr<C2ComponentStore> store) { in setComponentStore() argument
187 _mComponentStore = store; in setComponentStore()
195 UseComponentStoreForIonAllocator(allocator, store); in setComponentStore()
250 std::shared_ptr<C2PlatformAllocatorStoreImpl> store = gPlatformAllocatorStore.lock(); in GetCodec2PlatformAllocatorStore() local
251 if (store == nullptr) { in GetCodec2PlatformAllocatorStore()
[all …]
/hardware/google/av/codec2/hidl/1.0/utils/
DComponentStore.cpp64 StoreIntf(const std::shared_ptr<C2ComponentStore>& store) : in StoreIntf()
65 ConfigurableC2Intf(store ? store->getName() : ""), in StoreIntf()
66 mStore(store) { in StoreIntf()
117 ComponentStore::ComponentStore(const std::shared_ptr<C2ComponentStore>& store) : in ComponentStore() argument
118 Configurable(new CachedConfigurable(std::make_unique<StoreIntf>(store))), in ComponentStore()
119 mStore(store) { in ComponentStore()
122 SetPreferredCodec2ComponentStore(store); in ComponentStore()
DInputSurface.cpp289 const sp<ComponentStore>& store, in InputSurface() argument
292 mStore(store), in InputSurface()
296 std::static_pointer_cast<C2ReflectorHelper>(store->mParamReflector))), in InputSurface()
300 mConfigurable->init(store.get()); in InputSurface()
DComponent.cpp90 const sp<ComponentStore>& store) : in ComponentInterface() argument
93 mInit = init(store.get()); in ComponentInterface()
180 const sp<ComponentStore>& store, in Component() argument
188 mStore(store), in Component()
192 mInit = init(store.get()); in Component()
DConfigurable.cpp40 c2_status_t CachedConfigurable::init(ComponentStore* store) { in init() argument
43 c2_status_t validate = store->validateSupportedParams(mSupportedParams); in init()
/hardware/google/av/codec2/hidl/1.0/utils/include/codec2/hidl/1.0/
DConfigurable.h59 c2_status_t init(ComponentStore* store);
103 c2_status_t init(ComponentStore* store) { in init()
104 return mIntf->init(store); in init()
DComponent.h60 const sp<ComponentStore>& store);
73 const sp<ComponentStore>& store,
DComponentStore.h56 ComponentStore(const std::shared_ptr<C2ComponentStore>& store);
DInputSurface.h180 const sp<ComponentStore>& store,
/hardware/google/interfaces/media/c2/1.0/
DIComponentStore.hal143 * Returns the list of components supported by this component store.
147 * @return traits List of component traits for all components supported by this store in no
164 * structures that this store is aware of.
167 * store must simply ignore all struct indices that it is not aware of.
189 * @return pool If the component store supports receiving buffers via
199 * The store must copy the contents of \p src into \p dst without changing
/hardware/google/av/media/v4l2store/
DC2VDAComponentStore.cpp399 std::shared_ptr<C2ComponentStore> store = platformStore.lock(); in GetCodec2VDAComponentStore() local
400 if (store == nullptr) { in GetCodec2VDAComponentStore()
401 store = std::make_shared<C2VDAComponentStore>(); in GetCodec2VDAComponentStore()
402 platformStore = store; in GetCodec2VDAComponentStore()
404 return store; in GetCodec2VDAComponentStore()
/hardware/google/av/media/codecs/cmds/
Dcodec2.cpp147 std::shared_ptr<C2AllocatorStore> store = GetCodec2PlatformAllocatorStore(); in SimplePlayer() local
148 CHECK_EQ(store->fetchAllocator(C2AllocatorStore::DEFAULT_LINEAR, &mAllocIon), C2_OK); in SimplePlayer()
216 std::shared_ptr<C2ComponentStore> store = GetCodec2PlatformComponentStore(); in play() local
218 (void)store->createComponent("c2.android.avc.decoder", &component); in play()
377 running.store(false); in play()
/hardware/google/av/codec2/vndk/include/
DC2PlatformSupport.h132 void SetPreferredCodec2ComponentStore(std::shared_ptr<C2ComponentStore> store);
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
Domx_vdec_extensions.hpp30 void omx_vdec::init_vendor_extensions (VendorExtensionStore &store) { in init_vendor_extensions() argument
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
Domx_vdec_extensions.hpp30 void omx_vdec::init_vendor_extensions (VendorExtensionStore &store) { in init_vendor_extensions() argument
/hardware/intel/img/psb_video/src/
DMakefile.am47 CFLAGS = -O1 -Wall -ffloat-store -fvisibility=hidden -DPSBVIDEO_MRST -DPSBVIDEO_MFLD -DPSBVIDEO_MRF…
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/inc/
Dvidc_vendor_extensions.h221 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/common/inc/
Dvidc_vendor_extensions.h221 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
/hardware/interfaces/neuralnetworks/1.0/
DIExecutionCallback.hal39 * not large enough to store the resultant values
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/src/
Domx_video_extensions.hpp30 void omx_video::init_vendor_extensions(VendorExtensionStore &store) { in init_vendor_extensions() argument
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
Domx_video_extensions.hpp30 void omx_video::init_vendor_extensions(VendorExtensionStore &store) { in init_vendor_extensions() argument

12