Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,30 +119,3 @@ uint32_t GraphResolutionConfiguratorHelper::getRunKernelIoBufferSystemApiUuid()
return 47358;
}

GraphResolutionConfiguratorKernelRole GraphResolutionConfiguratorHelper::getKernelRole(uint32_t kernelUuid)
{
(void) kernelUuid;
return GraphResolutionConfiguratorKernelRole::NonRcb;
}

uint32_t GraphResolutionConfiguratorHelper::getReferenceKernel(uint32_t kernelUuid)
{
(void) kernelUuid;
return 0;
}

FormatType GraphResolutionConfiguratorHelper::getFormatForDrainer(uint32_t kernelUuid)
{
(void) kernelUuid;
return FormatType::YUV420_8_SP_P;
}

StaticGraphStatus GraphResolutionConfiguratorHelper::getSmurfRunKernelUuid(std::vector<std::pair<uint32_t, uint32_t>>& kernelUuids)
{
kernelUuids.clear();

std::pair <uint32_t, uint32_t> smurfPair;

return StaticGraphStatus::SG_OK;
}

Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,4 @@ class GraphResolutionConfiguratorHelper
static StaticGraphStatus getRunKernelUuidForResHistoryUpdate(std::vector<uint32_t>& kernelUuids);
static uint32_t getRunKernelIoBufferSystemApiUuid();
static GraphResolutionConfiguratorKernelRole getKernelRole(uint32_t kernelUuid);
static uint32_t getReferenceKernel(uint32_t kernelUuid);
static FormatType getFormatForDrainer(uint32_t kernelUuid);
static StaticGraphStatus getSmurfRunKernelUuid(std::vector<std::pair<uint32_t, uint32_t>>& kernelUuids);
};
27 changes: 0 additions & 27 deletions modules/ipu_desc/ipu7x/Ipu7xGraphResolutionConfiguratorAutogen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,30 +118,3 @@ uint32_t GraphResolutionConfiguratorHelper::getRunKernelIoBufferSystemApiUuid()
return 50058;
}

GraphResolutionConfiguratorKernelRole GraphResolutionConfiguratorHelper::getKernelRole(uint32_t kernelUuid)
{
(void) kernelUuid;
return GraphResolutionConfiguratorKernelRole::NonRcb;
}

uint32_t GraphResolutionConfiguratorHelper::getReferenceKernel(uint32_t kernelUuid)
{
(void) kernelUuid;
return 0;
}

FormatType GraphResolutionConfiguratorHelper::getFormatForDrainer(uint32_t kernelUuid)
{
(void) kernelUuid;
return FormatType::YUV420_8_SP_P;
}

StaticGraphStatus GraphResolutionConfiguratorHelper::getSmurfRunKernelUuid(std::vector<std::pair<uint32_t, uint32_t>>& kernelUuids)
{
kernelUuids.clear();

std::pair <uint32_t, uint32_t> smurfPair;

return StaticGraphStatus::SG_OK;
}

Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,4 @@ class GraphResolutionConfiguratorHelper
static StaticGraphStatus getRunKernelUuidForResHistoryUpdate(std::vector<uint32_t>& kernelUuids);
static uint32_t getRunKernelIoBufferSystemApiUuid();
static GraphResolutionConfiguratorKernelRole getKernelRole(uint32_t kernelUuid);
static uint32_t getReferenceKernel(uint32_t kernelUuid);
static FormatType getFormatForDrainer(uint32_t kernelUuid);
static StaticGraphStatus getSmurfRunKernelUuid(std::vector<std::pair<uint32_t, uint32_t>>& kernelUuids);
};
1 change: 0 additions & 1 deletion src/core/PSysDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ int PSysDevice::addGraph(const PSysGraph& graph) {

drvNode.node_ctx_id = static_cast<uint8_t>(node.nodeCtxId);
drvNode.node_rsrc_id = static_cast<uint8_t>(node.nodeRsrcId);

MEMCPY_S(&drvNode.profiles[0].teb, sizeof(drvNode.profiles[0].teb), &node.bitmaps.teb,
sizeof(node.bitmaps.teb));
MEMCPY_S(&drvNode.profiles[0].deb, sizeof(drvNode.profiles[0].deb), &node.bitmaps.deb,
Expand Down
4 changes: 0 additions & 4 deletions src/core/processingUnit/PipeLine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -394,10 +394,6 @@ status_t PipeLine::createPSysGraph(int32_t numLinks, GraphLink** links) {
}
#endif
mPSysGraph.links.push_back(pLink);

if (link->linkCompressionConfiguration && link->linkCompressionConfiguration->isEnabled) {
LOGE("Don't support compression now!");
}
}

mPSysGraph.nodes.clear();
Expand Down