1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
* Copyright (c) 2019-2025, 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_pipeline.h
//! \brief Defines the interface for av1 decode pipeline
//!
#ifndef __DECODE_AV1_PIPELINE_H__
#define __DECODE_AV1_PIPELINE_H__
#include "decode_pipeline.h"
#include "decode_av1_basic_feature.h"
namespace decode {
class Av1Pipeline : public DecodePipeline
{
public:
enum Av1DecodeMode
{
baseDecodeMode, //!< Legacy decode mode with single pipe
realTileDecodeMode, //!< Real tile decode mode
};
//!
//! \brief Av1Pipeline constructor
//! \param [in] hwInterface
//! Pointer to CodechalHwInterface
//! \param [in] debugInterface
//! Pointer to CodechalDebugInterface
//!
Av1Pipeline(
CodechalHwInterfaceNext* hwInterface,
CodechalDebugInterface *debugInterface);
virtual ~Av1Pipeline() {};
Av1DecodeMode GetDecodeMode();
bool FrameBasedDecodingInUse();
bool TileBasedDecodingInuse() {return m_forceTileBasedDecoding;}
DeclareDecodePacketId(av1DecodePacketId);
DeclareDecodePacketId(av1PictureSubPacketId);
DeclareDecodePacketId(av1TileSubPacketId);
DeclareDecodePacketId(av1DecodeAqmId);
protected:
//!
//! \brief Initialize the decode pipeline
//! \param [in] settings
//! Pointer to the initialize settings
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS Initialize(void *settings) override;
//!
//! \brief Uninitialize the decode pipeline
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS Uninitialize() override;
//!
//! \brief Prepare interal parameters, should be invoked for each frame
//! \param [in] params
//! Pointer to the input parameters
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS Prepare(void *params) override;
//!
//! \brief User Feature Key Report
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS UserFeatureReport() override;
//!
//! \brief Active decode packets
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS ActivateDecodePackets();
//!
//! \brief create media feature manager
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS CreateFeatureManager() override;
//!
//! \brief Create sub packets
//! \param [in] codecSettings
//! Point to codechal settings
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
virtual MOS_STATUS CreateSubPackets(DecodeSubPacketManager &subPacketManager, CodechalSetting &codecSettings) override;
#if USE_CODECHAL_DEBUG_TOOL
//! \brief Dump the parameters
//!
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
MOS_STATUS DumpParams(Av1BasicFeature &basicFeature);
//! \brief Dump the picture parameters
//!
//! \param [in] picParams
//! Pointer to CodecAv1PicParams
//!
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
MOS_STATUS DumpPicParams(CodecAv1PicParams *picParams);
//! \brief Dump Tile Group parameters into file
//!
//! \param [in] tileParams
//! Pointer to CodecAv1TileParams
//!
//! \return MOS_STATUS
//! MOS_STATUS_SUCCESS if success, else fail reason
//!
MOS_STATUS DumpTileParams(CodecAv1TileParams *tileParams, uint32_t tileNum);
#endif
protected:
Av1DecodeMode m_decodeMode = baseDecodeMode; //!< Decode mode
uint16_t m_passNum = 1; //!< Decode pass number
bool m_isFirstTileInFrm = true; //!< First tile in the first frame
bool m_forceTileBasedDecoding = false; //!< Force tile based decoding
bool m_allowVirtualNodeReassign = false; //!< Whether allow virtual node reassign
MEDIA_CLASS_DEFINE_END(decode__Av1Pipeline)
};
}
#endif // !__DECODE_AV1_PIPELINE_H__
|