From 42116ed33f49bc473512bef2e81f2d135951783b Mon Sep 17 00:00:00 2001 From: Yuichiro Hanada <yhanada@google.com> Date: Mon, 16 May 2022 02:11:52 +0000 Subject: [PATCH] C2VdaBqBlockPool: reflects C2BufferQueueBlockPoolData change. ag/18183905 changes the constructor arguments of C2BufferQueueBlockPoolData. Bug: 232711062 Test: m Change-Id: I63a9f9b1c7d8368af4c80777a9f4dcba4b581df0 --- plugin_store/C2VdaBqBlockPool.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin_store/C2VdaBqBlockPool.cpp b/plugin_store/C2VdaBqBlockPool.cpp index 8271d81..d53f4a0 100644 --- a/plugin_store/C2VdaBqBlockPool.cpp +++ b/plugin_store/C2VdaBqBlockPool.cpp @@ -562,11 +562,12 @@ c2_status_t C2VdaBqBlockPool::Impl::fetchGraphicBlock( } std::shared_ptr<C2SurfaceSyncMemory> syncMem; + // TODO: the |owner| argument should be set correctly. std::shared_ptr<C2GraphicAllocation> allocation = mTrackedGraphicBuffers.getRegisteredAllocation(uniqueId); auto poolData = std::make_shared<C2BufferQueueBlockPoolData>( - slotBuffer->getGenerationNumber(), mProducerId, slot, - mProducer->getBase(), syncMem, 0); + slotBuffer->getGenerationNumber(), mProducerId, slot, std::make_shared<int>(0), + mProducer->getBase(), syncMem); mTrackedGraphicBuffers.updatePoolData(slot, poolData); *block = _C2BlockFactory::CreateGraphicBlock(std::move(allocation), std::move(poolData)); if (*block == nullptr) { -- GitLab