/hardware/google/av/codec2/hidl/1.0/utils/ |
D | InputSurfaceConnection.cpp | 70 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 …]
|
D | ComponentStore.cpp | 319 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()
|
D | InputSurface.cpp | 130 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/ |
D | media_c2_hidl_test_common.h | 57 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()
|
D | README.md | 11 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/ |
D | CCodec.cpp | 142 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 …]
|
D | C2OMXNode.cpp | 52 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()
|
D | InputSurfaceWrapper.h | 44 const std::shared_ptr<Codec2Client::Component> &comp) = 0;
|
D | C2OMXNode.h | 36 explicit C2OMXNode(const std::shared_ptr<Codec2Client::Component> &comp);
|
D | CCodec.h | 140 std::shared_ptr<Codec2Client::Component> comp; member
|
/hardware/google/av/codec2/hidl/1.0/mts/audio/ |
D | MtsHidlC2V1_0TargetAudioEncTest.cpp | 107 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()
|
D | MtsHidlC2V1_0TargetAudioDecTest.cpp | 121 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/ |
D | C2ComponentWrapper.cpp | 80 const std::shared_ptr<C2Component> &comp) : mComp(comp) {} in C2ComponentWrapper() argument
|
D | C2ComponentWrapper.h | 61 explicit C2ComponentWrapper(const std::shared_ptr<C2Component> &comp);
|
/hardware/google/av/codec2/hidl/client/include/codec2/hidl/ |
D | client.h | 254 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/ |
D | InputSurfaceConnection.h | 47 const sp<GraphicBufferSource> &source, const std::shared_ptr<C2Component> &comp);
|
D | InputSurface.h | 51 const std::shared_ptr<::C2Component> &comp);
|
/hardware/interfaces/media/omx/1.0/vts/functional/audio/ |
D | VtsHalMediaOmxV1_0TargetAudioEncTest.cpp | 212 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()
|
D | VtsHalMediaOmxV1_0TargetAudioDecTest.cpp | 400 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/ |
D | mm_lib2d.c | 88 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/ |
D | MtsHidlC2V1_0TargetVideoDecTest.cpp | 111 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()
|
D | MtsHidlC2V1_0TargetVideoEncTest.cpp | 105 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/ |
D | IComponentStore.hal | 46 * @return comp The created component if `Status = OK`. 54 IComponent comp
|
/hardware/google/av/codec2/tests/ |
D | C2SampleComponent_test.cpp | 396 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/ |
D | IComponentStore.hal | 50 * @return comp The created component if @p status is `OK`. 60 IComponent comp
|