blob: 3ae4e7bd4469cb75798ac4b40e86ce161dbbf0dc [file] [log] [blame]
/*
* Copyright (c) 2019-2020, 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_av1_packet.h
//! \brief Defines the implementation of av1 decode packet
//!
#ifndef __DECODE_AV1_PACKET_H__
#define __DECODE_AV1_PACKET_H__
#include "media_cmd_packet.h"
#include "decode_av1_pipeline.h"
#include "decode_utils.h"
#include "decode_av1_basic_feature.h"
#include "decode_status_report.h"
#include "decode_av1_picture_packet.h"
#include "decode_av1_tile_packet.h"
namespace decode
{
class Av1DecodePkt : public CmdPacket, public MediaStatusReportObserver
{
public:
Av1DecodePkt(MediaPipeline *pipeline, MediaTask *task, CodechalHwInterface *hwInterface)
: CmdPacket(task)
{
if (pipeline != nullptr)
{
m_statusReport = pipeline->GetStatusReportInstance();
m_featureManager = pipeline->GetFeatureManager();
m_av1Pipeline = dynamic_cast<Av1Pipeline*>(pipeline);
}
if (hwInterface != nullptr)
{
m_hwInterface = hwInterface;
m_miInterface = hwInterface->GetMiInterface();
m_osInterface = hwInterface->GetOsInterface();
m_vdencInterface = hwInterface->GetVdencInterface();
}
}
virtual ~Av1DecodePkt(){};
//!
//! \brief Initialize the media packet, allocate required resources
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS Init() override;
//!
//! \brief Prepare interal parameters, should be invoked for each frame
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS Prepare() override;
//!
//! \brief Destroy the media packet and release the resources
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS Destroy() override;
//!
//! \brief One frame is completed
//! \param [in] mfxStatus
//! pointer to status buffer which for mfx
//! \param [in] rcsStatus
//! pointer to status buffer which for RCS
//! \param [in, out] statusReport
//! pointer of DecoderStatusReport
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS Completed(void *mfxStatus, void *rcsStatus, void *statusReport) override;
//!
//! \brief Calculate Command Size
//!
//! \param [in, out] commandBufferSize
//! requested size
//! \param [in, out] requestedPatchListSize
//! requested size
//! \return MOS_STATUS
//! status
//!
MOS_STATUS CalculateCommandSize(uint32_t &commandBufferSize, uint32_t &requestedPatchListSize) override;
//!
//! \brief Get Packet Name
//! \return std::string
//!
virtual std::string GetPacketName() override
{
return "AV1_DECODE";
}
protected:
//!
//! \brief Calculate Command Buffer Size
//!
//! \return uint32_t
//! Command buffer size calculated
//!
virtual uint32_t CalculateCommandBufferSize();
//!
//! \brief Calculate Patch List Size
//!
//! \return uint32_t
//! Patchlist size calculated
//!
virtual uint32_t CalculatePatchListSize();
void SetPerfTag(CODECHAL_MODE mode, uint16_t picCodingType);
bool IsPrologRequired();
MOS_STATUS SendPrologWithFrameTracking(MOS_COMMAND_BUFFER &cmdBuffer, bool frameTrackingRequested);
MOS_STATUS VdPipelineFlush(MOS_COMMAND_BUFFER & cmdBuffer);
MOS_STATUS MiFlush(MOS_COMMAND_BUFFER & cmdBuffer);
MOS_STATUS AddForceWakeup(MOS_COMMAND_BUFFER &cmdBuffer);
virtual MOS_STATUS ReadAvpStatus(MediaStatusReport* statusReport, MOS_COMMAND_BUFFER& cmdBuffer);
virtual MOS_STATUS StartStatusReport(uint32_t srType, MOS_COMMAND_BUFFER* cmdBuffer) override;
virtual MOS_STATUS EndStatusReport(uint32_t srType, MOS_COMMAND_BUFFER* cmdBuffer) override;
#if USE_CODECHAL_DEBUG_TOOL
//! \brief Dump the output resources in status report callback function
//!
//! \param [in] decodeStatusMfx
//! Pointer to decoder status for vdbox
//! \param [in] statusReportData
//! Pointer to decoder status report data
//!
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
MOS_STATUS DumpResources(
DecodeStatusMfx *decodeStatusMfx,
DecodeStatusReportData *statusReportData);
#endif
MediaFeatureManager *m_featureManager = nullptr;
Av1Pipeline *m_av1Pipeline = nullptr;
DecodeAllocator *m_allocator = nullptr;
PMOS_INTERFACE m_osInterface = nullptr;
Av1BasicFeature *m_av1BasicFeature = nullptr;
MhwVdboxVdencInterface *m_vdencInterface = nullptr;
CodechalHwInterface *m_hwInterface = nullptr;
DecodeMemComp *m_mmcState = nullptr;
Av1DecodePicPkt * m_picturePkt = nullptr;
Av1DecodeTilePkt * m_tilePkt = nullptr;
// Parameters passed from application
const CodecAv1PicParams *m_av1PicParams = nullptr; //!< Pointer to picture parameter
uint32_t m_pictureStatesSize = 0;
uint32_t m_picturePatchListSize = 0;
uint32_t m_tileStatesSize = 0;
uint32_t m_tilePatchListSize = 0;
};
} // namespace decode
#endif // !__DECODE_AV1_PACKET_H__