Home
last modified time | relevance | path

Searched refs:comp (Results 1 – 25 of 26) sorted by relevance

12

/hardware/google/av/codec2/hidl/1.0/utils/
DInputSurfaceConnection.cpp70 const std::shared_ptr<C2Component>& comp) : in Impl()
71 mSource(source), mComp(comp), mRemoteComp(), in Impl()
73 std::shared_ptr<C2ComponentInterface> intf = comp->intf(); in Impl()
78 const sp<IComponent>& comp) : in Impl()
79 mSource(source), mComp(), mRemoteComp(comp), in Impl()
81 Return<void> transStatus = comp->getName( in Impl()
242 std::shared_ptr<C2Component> comp = mComp.lock(); in compQuery() local
243 if (comp) { in compQuery()
244 std::shared_ptr<C2ComponentInterface> intf = comp->intf(); in compQuery()
350 std::shared_ptr<C2Component> comp = mComp.lock(); in compQueue() local
[all …]
DComponentStore.cpp319 const std::shared_ptr<const C2Component::Traits>& comp) { in dump() argument
323 out << indent << "name: " << comp->name << std::endl; in dump()
324 out << indent << "domain: " << comp->domain << std::endl; in dump()
325 out << indent << "kind: " << comp->kind << std::endl; in dump()
326 out << indent << "rank: " << comp->rank << std::endl; in dump()
327 out << indent << "mediaType: " << comp->mediaType << std::endl; in dump()
329 for (const auto& alias : comp->aliases) { in dump()
340 const std::shared_ptr<C2Component>& comp) { in dump() argument
344 std::shared_ptr<C2ComponentInterface> intf = comp->intf(); in dump()
DInputSurface.cpp130 std::shared_ptr<C2Component> comp = mStore->findC2Component(component); in connectToComponent() local
131 if (!comp) { in connectToComponent()
134 conn = new InputSurfaceConnection(mSource, comp); in connectToComponent()
/hardware/google/av/codec2/hidl/1.0/mts/common/
Dmedia_c2_hidl_test_common.h57 const std::weak_ptr<android::Codec2Client::Component>& comp, in onWorkDone()
62 (void)comp; in onWorkDone()
68 const std::weak_ptr<android::Codec2Client::Component>& comp, in onTripped()
72 (void)comp; in onTripped()
77 const std::weak_ptr<android::Codec2Client::Component>& comp, in onError()
80 (void)comp; in onError()
86 const std::weak_ptr<android::Codec2Client::Component>& comp) override { in onDeath()
88 (void)comp; in onDeath()
DREADME.md11 usage: MtsHidlC2V1\_0TargetComponentTest -I software -C <comp name>
16 usage: MtsHidlC2V1\_0TargetAudioDecTest -I software -C <comp name> -P /sdcard/media
21 usage: MtsHidlC2V1\_0TargetVideoDecTest -I software -C <comp name> -P /sdcard/media
/hardware/google/av/media/sfplugin/
DCCodec.cpp142 status_t connect(const std::shared_ptr<Codec2Client::Component> &comp) override { in connect() argument
146 return toStatusT(mSurface->connectToComponent(comp, &mConnection), in connect()
194 status_t connect(const std::shared_ptr<Codec2Client::Component> &comp) override { in connect() argument
195 mNode = new C2OMXNode(comp); in connect()
482 std::shared_ptr<Codec2Client::Component> comp = component.lock(); in onDeath() local
483 if (!comp) { in onDeath()
486 ALOGE("Codec2 component \"%s\" died.", comp->getName().c_str()); in onDeath()
607 std::shared_ptr<Codec2Client::Component> comp = in allocate() local
612 if (!comp) { in allocate()
622 mChannel->setComponent(comp); in allocate()
[all …]
DC2OMXNode.cpp52 C2OMXNode::C2OMXNode(const std::shared_ptr<Codec2Client::Component> &comp) in C2OMXNode() argument
53 : mComp(comp), mFrameIndex(0), mWidth(0), mHeight(0), in C2OMXNode()
56 if (!strncmp(comp->getName().c_str(), "c2.android.", 11)) { in C2OMXNode()
215 std::shared_ptr<Codec2Client::Component> comp = mComp.lock(); in emptyBuffer() local
216 if (!comp) { in emptyBuffer()
290 c2_status_t err = comp->queue(&items); in emptyBuffer()
DInputSurfaceWrapper.h44 const std::shared_ptr<Codec2Client::Component> &comp) = 0;
DC2OMXNode.h36 explicit C2OMXNode(const std::shared_ptr<Codec2Client::Component> &comp);
DCCodec.h140 std::shared_ptr<Codec2Client::Component> comp; member
/hardware/google/av/codec2/hidl/1.0/mts/audio/
DMtsHidlC2V1_0TargetAudioEncTest.cpp107 std::string comp; in SetUp() local
113 comp = substring.substr(pos, len - pos); in SetUp()
116 if (!strcasecmp(comp.c_str(), kStringToName[i].Name)) { in SetUp()
237 void GetURLForComponent(Codec2AudioEncHidlTest::standardComp comp, char* mURL) { in GetURLForComponent() argument
239 Codec2AudioEncHidlTest::standardComp comp; in GetURLForComponent() member
256 if (kCompToURL[i].comp == comp) { in GetURLForComponent()
DMtsHidlC2V1_0TargetAudioDecTest.cpp121 std::string comp; in SetUp() local
127 comp = substring.substr(pos, len - pos); in SetUp()
130 if (!strcasecmp(comp.c_str(), kStringToName[i].Name)) { in SetUp()
334 void GetURLForComponent(Codec2AudioDecHidlTest::standardComp comp, char* mURL, in GetURLForComponent() argument
337 Codec2AudioDecHidlTest::standardComp comp; in GetURLForComponent() member
381 if (kCompToURL[i].comp == comp) { in GetURLForComponent()
/hardware/google/av/codec2/faultinjection/
DC2ComponentWrapper.cpp80 const std::shared_ptr<C2Component> &comp) : mComp(comp) {} in C2ComponentWrapper() argument
DC2ComponentWrapper.h61 explicit C2ComponentWrapper(const std::shared_ptr<C2Component> &comp);
/hardware/google/av/codec2/hidl/client/include/codec2/hidl/
Dclient.h254 const std::weak_ptr<Component>& comp,
260 const std::weak_ptr<Component>& comp,
266 const std::weak_ptr<Component>& comp,
272 const std::weak_ptr<Component>& comp) = 0;
/hardware/google/av/codec2/include/media/stagefright/codec2/1.0/
DInputSurfaceConnection.h47 const sp<GraphicBufferSource> &source, const std::shared_ptr<C2Component> &comp);
DInputSurface.h51 const std::shared_ptr<::C2Component> &comp);
/hardware/interfaces/media/omx/1.0/vts/functional/audio/
DVtsHalMediaOmxV1_0TargetAudioEncTest.cpp212 AudioEncHidlTest::standardComp comp, int32_t nChannels, in setDefaultPortParam() argument
242 (comp == AudioEncHidlTest::standardComp::amrwb)); in setDefaultPortParam()
256 void GetURLForComponent(AudioEncHidlTest::standardComp comp, char* mURL) { in GetURLForComponent() argument
258 AudioEncHidlTest::standardComp comp; in GetURLForComponent() member
269 if (kCompToURL[i].comp == comp) { in GetURLForComponent()
DVtsHalMediaOmxV1_0TargetAudioDecTest.cpp400 void GetURLForComponent(AudioDecHidlTest::standardComp comp, char* mURL, in GetURLForComponent() argument
403 AudioDecHidlTest::standardComp comp; in GetURLForComponent() member
440 if (kCompToURL[i].comp == comp) { in GetURLForComponent()
452 AudioDecHidlTest::standardComp comp; member
462 AudioDecHidlTest::standardComp comp = audioArgs->comp; in portReconfiguration() local
502 if (comp != AudioDecHidlTest::standardComp::vorbis && in portReconfiguration()
503 comp != AudioDecHidlTest::standardComp::opus && in portReconfiguration()
504 comp != AudioDecHidlTest::standardComp::raw) { in portReconfiguration()
550 AudioDecHidlTest::standardComp comp) { in waitOnInputConsumption() argument
561 packedArgs audioArgs = {eEncoding, comp}; in waitOnInputConsumption()
[all …]
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-lib2d-interface/src/
Dmm_lib2d.c88 img_component_ops_t comp; member
330 p_comp = &lib2d_obj->comp; in mm_lib2d_init()
452 img_component_ops_t *p_comp = &lib2d_obj->comp; in mm_lib2d_deinit()
499 img_component_ops_t *p_comp = &lib2d_obj->comp; in mm_lib2d_start_job()
/hardware/google/av/codec2/hidl/1.0/mts/video/
DMtsHidlC2V1_0TargetVideoDecTest.cpp111 std::string comp; in SetUp() local
117 comp = substring.substr(pos, len - pos); in SetUp()
120 if (!strcasecmp(comp.c_str(), kStringToName[i].Name)) { in SetUp()
273 void GetURLForComponent(Codec2VideoDecHidlTest::standardComp comp, char* mURL, in GetURLForComponent() argument
276 Codec2VideoDecHidlTest::standardComp comp; in GetURLForComponent() member
322 if (kCompToURL[i].comp == comp) { in GetURLForComponent()
DMtsHidlC2V1_0TargetVideoEncTest.cpp105 std::string comp; in SetUp() local
111 comp = substring.substr(pos, len - pos); in SetUp()
114 if (!strcasecmp(comp.c_str(), kStringToName[i].Name)) { in SetUp()
/hardware/google/interfaces/media/c2/1.0/
DIComponentStore.hal46 * @return comp The created component if `Status = OK`.
54 IComponent comp
/hardware/google/av/codec2/tests/
DC2SampleComponent_test.cpp396 std::shared_ptr<C2ComponentInterface> comp = myComp; in TEST_F() local
410 EXPECT_EQ(C2_OK, comp->querySupportedValues_vb(query, C2_DONT_BLOCK)); in TEST_F()
/hardware/interfaces/media/c2/1.0/
DIComponentStore.hal50 * @return comp The created component if @p status is `OK`.
60 IComponent comp

12