blob: ae86f6d76761c0dd4575fa6a652126b6fe244102 [file] [log] [blame]
/*
* Copyright (c) 2020-2021, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
//!
//! \file decode_hevc_packet_real_tile_xe_m_base.cpp
//! \brief Defines the interface for hevc real tile decode packet
//!
#include "codechal_utilities.h"
#include "decode_hevc_packet_real_tile_xe_m_base.h"
#include "decode_status_report_defs.h"
#include "decode_predication_packet.h"
#include "decode_marker_packet.h"
namespace decode {
HevcDecodeRealTilePktXe_M_Base::~HevcDecodeRealTilePktXe_M_Base()
{
}
MOS_STATUS HevcDecodeRealTilePktXe_M_Base::Init()
{
DECODE_FUNC_CALL();
DECODE_CHK_STATUS(HevcDecodePktXe_M_Base::Init());
DECODE_CHK_STATUS(m_statusReport->RegistObserver(this));
DecodeSubPacket* subPacket = m_hevcPipeline->GetSubPacket(DecodePacketId(m_hevcPipeline, hevcPictureSubPacketId));
m_picturePkt = dynamic_cast<HevcDecodePicPktXe_M_Base *>(subPacket);
DECODE_CHK_NULL(m_picturePkt);
subPacket = m_hevcPipeline->GetSubPacket(DecodePacketId(m_hevcPipeline, hevcSliceSubPacketId));
m_slicePkt = dynamic_cast<HevcDecodeSlcPktXe_M_Base *>(subPacket);
DECODE_CHK_NULL(m_slicePkt);
return MOS_STATUS_SUCCESS;
}
MOS_STATUS HevcDecodeRealTilePktXe_M_Base::Destroy()
{
m_statusReport->UnregistObserver(this);
return MOS_STATUS_SUCCESS;
}
MOS_STATUS HevcDecodeRealTilePktXe_M_Base::InitSliceLevelCmdBuffer(MHW_BATCH_BUFFER &batchBuffer, uint8_t *batchBufBase, uint32_t tileColNum)
{
DECODE_FUNC_CALL();
DECODE_ASSERT(batchBuffer.count >= tileColNum);
if (tileColNum > m_sliceLevelCmdBuffer.size())
{
m_sliceLevelCmdBuffer.resize(tileColNum);
}
uint32_t cmdBufferOffset = 0;
for (uint32_t i = 0; i < tileColNum; i++)
{
auto &cmdBuffer = m_sliceLevelCmdBuffer[i];
MOS_ZeroMemory(&cmdBuffer, sizeof(MOS_COMMAND_BUFFER));
cmdBuffer.pCmdBase = (uint32_t*)(batchBufBase + cmdBufferOffset);
cmdBuffer.pCmdPtr = cmdBuffer.pCmdBase;
cmdBuffer.iRemaining = batchBuffer.iSize;
cmdBufferOffset += batchBuffer.iSize;
}
return MOS_STATUS_SUCCESS;
}
bool HevcDecodeRealTilePktXe_M_Base::IsPrologRequired()
{
return m_hevcPipeline->IsFirstPass();
}
bool HevcDecodeRealTilePktXe_M_Base::IsLastTileCol()
{
if (!m_hevcPipeline->IsLastPass())
{
return false;
}
uint32_t curTileColumn = m_hevcPipeline->GetCurrentPass() * m_hevcPipeline->GetPipeNum() +
m_hevcPipeline->GetCurrentPipe();
return (curTileColumn >= m_hevcPicParams->num_tile_columns_minus1);
}
MOS_STATUS HevcDecodeRealTilePktXe_M_Base::CalculateCommandSize(uint32_t &commandBufferSize, uint32_t &requestedPatchListSize)
{
DECODE_CHK_STATUS(CalculateCommandBufferSize(commandBufferSize));
DECODE_CHK_STATUS(CalculatePatchListSize(requestedPatchListSize));
return MOS_STATUS_SUCCESS;
}
MOS_STATUS HevcDecodeRealTilePktXe_M_Base::CalculateCommandBufferSize(uint32_t &commandBufferSize)
{
// Just need consider picture level cmds for first level command buffer size,
// since the slice level cmds are located 2nd lvl batch buffer which is
// allocated by pipeline.
DECODE_CHK_STATUS(m_picturePkt->CalculateCommandSize(m_pictureStatesSize, m_picturePatchListSize));
commandBufferSize = m_pictureStatesSize + COMMAND_BUFFER_RESERVED_SPACE;
return MOS_STATUS_SUCCESS;
}
MOS_STATUS HevcDecodeRealTilePktXe_M_Base::CalculatePatchListSize(uint32_t &requestedPatchListSize)
{
if (!m_osInterface->bUsesPatchList)
{
requestedPatchListSize = 0;
return MOS_STATUS_SUCCESS;
}
DECODE_CHK_STATUS(m_slicePkt->CalculateCommandSize(m_sliceStatesSize, m_slicePatchListSize));
uint32_t sliceCmdNum = m_hevcBasicFeature->m_numSlices + 1 +
m_hevcBasicFeature->m_hevcPicParams->num_tile_rows_minus1;
requestedPatchListSize = m_picturePatchListSize + (m_slicePatchListSize * sliceCmdNum);
return MOS_STATUS_SUCCESS;
}
}