Searched refs:transCoder (Results 1 – 8 of 8) sorted by relevance
89 … auto transCoder = std::make_unique<HiTransCoderImpl>(appUid, appPid, appTokenId, appFullTokenId); in CreateTransCoderEngine() local90 if (transCoder && transCoder->Init() == 0) { in CreateTransCoderEngine()91 return transCoder; in CreateTransCoderEngine()
143 std::shared_ptr<TransCoderClient> transCoder = TransCoderClient::Create(transCoderProxy); in CreateTransCoderService() local144 CHECK_AND_RETURN_RET_LOG(transCoder != nullptr, nullptr, "failed to create transCoder client."); in CreateTransCoderService()146 transCoderClientList_.push_back(transCoder); in CreateTransCoderService()147 return transCoder; in CreateTransCoderService()150 int32_t MediaClient::DestroyTransCoderService(std::shared_ptr<ITransCoderService> transCoder) in DestroyTransCoderService() argument153 … CHECK_AND_RETURN_RET_LOG(transCoder != nullptr, MSERR_NO_MEMORY, "input transCoder is nullptr."); in DestroyTransCoderService()154 transCoderClientList_.remove(transCoder); in DestroyTransCoderService()
86 int32_t MediaLocal::DestroyTransCoderService(std::shared_ptr<ITransCoderService> transCoder) in DestroyTransCoderService() argument88 (void)transCoder; in DestroyTransCoderService()
39 int32_t DestroyTransCoderService(std::shared_ptr<ITransCoderService> transCoder) override;
59 int32_t DestroyTransCoderService(std::shared_ptr<ITransCoderService> transCoder) override;
30 std::shared_ptr<TransCoderClient> transCoder = std::make_shared<TransCoderClient>(ipcProxy); in Create() local31 CHECK_AND_RETURN_RET_LOG(transCoder != nullptr, nullptr, "failed to new TransCoderClient.."); in Create()33 int32_t ret = transCoder->CreateListenerObject(); in Create()36 return transCoder; in Create()
96 virtual int32_t DestroyTransCoderService(std::shared_ptr<ITransCoderService> transCoder) = 0;
301 dumper.entry_ = [transCoder = transCoderStub](int32_t fd) -> int32_t { in CreateTransCoderStubObject()302 return transCoder->DumpInfo(fd); in CreateTransCoderStubObject()