1 /*
2 * Copyright (c) 2022, Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 */
22 //!
23 //! \file     decode_vp9_packet.h
24 //! \brief    Defines the implementation of vp9 decode packet
25 //!
26 
27 #ifndef __DECODE_VP9_PACKET_H__
28 #define __DECODE_VP9_PACKET_H__
29 
30 #include "media_cmd_packet.h"
31 #include "decode_vp9_pipeline.h"
32 #include "decode_utils.h"
33 #include "decode_vp9_basic_feature.h"
34 #include "decode_status_report.h"
35 #include "decode_vp9_picture_packet.h"
36 #include "decode_vp9_slice_packet.h"
37 
38 namespace decode
39 {
40 class Vp9DecodePkt : public CmdPacket, public MediaStatusReportObserver
41 {
42 public:
43     Vp9DecodePkt(MediaPipeline *pipeline, MediaTask *task, CodechalHwInterfaceNext *hwInterface);
44 
~Vp9DecodePkt()45     virtual ~Vp9DecodePkt(){};
46 
47     //!
48     //! \brief  Initialize the media packet, allocate required resources
49     //! \return MOS_STATUS
50     //!         MOS_STATUS_SUCCESS if success, else fail reason
51     //!
52     virtual MOS_STATUS Init() override;
53 
54     //!
55     //! \brief  Prepare interal parameters, should be invoked for each frame
56     //! \return MOS_STATUS
57     //!         MOS_STATUS_SUCCESS if success, else fail reason
58     //!
59     virtual MOS_STATUS Prepare() override;
60 
61     //!
62     //! \brief  Destroy the media packet and release the resources
63     //! \return MOS_STATUS
64     //!         MOS_STATUS_SUCCESS if success, else fail reason
65     //!
66     virtual MOS_STATUS Destroy() override;
67 
68     //!
69     //! \brief  One frame is completed
70     //! \param  [in] mfxStatus
71     //!         pointer to status buffer which for mfx
72     //! \param  [in] rcsStatus
73     //!         pointer to status buffer which for RCS
74     //! \param  [in, out] statusReport
75     //!         pointer of DecoderStatusReport
76     //! \return MOS_STATUS
77     //!         MOS_STATUS_SUCCESS if success, else fail reason
78     //!
79     virtual MOS_STATUS Completed(void *mfxStatus, void *rcsStatus, void *statusReport) override;
80 
81 protected:
82     void SetPerfTag(CODECHAL_MODE mode, uint16_t picCodingType);
83 
84     MOS_STATUS SendPrologWithFrameTracking(MOS_COMMAND_BUFFER &cmdBuffer, bool frameTrackingRequested);
85 
86     MOS_STATUS MiFlush(MOS_COMMAND_BUFFER &cmdBuffer);
87     MOS_STATUS AddForceWakeup(MOS_COMMAND_BUFFER &cmdBuffer);
88 
89     MOS_STATUS ReadVdboxId(MOS_COMMAND_BUFFER &cmdBuffer);
90 
91     MOS_STATUS ReadHcpStatus(MediaStatusReport *statusReport, MOS_COMMAND_BUFFER &cmdBuffer);
92     virtual MOS_STATUS StartStatusReport(uint32_t srType, MOS_COMMAND_BUFFER* cmdBuffer) override;
93     virtual MOS_STATUS EndStatusReport(uint32_t srType, MOS_COMMAND_BUFFER* cmdBuffer) override;
94     MOS_STATUS EnsureAllCommandsExecuted(MOS_COMMAND_BUFFER &cmdBuffer);
95 
96 #if USE_CODECHAL_DEBUG_TOOL
97     MOS_STATUS DumpSecondaryCommandBuffer(MOS_COMMAND_BUFFER &cmdBuffer);
98 #endif
99 
100     MediaFeatureManager *   m_featureManager  = nullptr;
101     Vp9Pipeline *           m_vp9Pipeline     = nullptr;
102     DecodeAllocator *       m_allocator       = nullptr;
103     Vp9BasicFeature *       m_vp9BasicFeature = nullptr;
104     CodechalHwInterfaceNext * m_hwInterface   = nullptr;
105 
106     std::shared_ptr<mhw::vdbox::vdenc::Itf> m_vdencItf = nullptr;
107 
108     // Parameters passed from application
109     const CODEC_VP9_PIC_PARAMS *m_vp9PicParams = nullptr;  //!< Pointer to picture parameter
110 
111     DecodePhase *m_phase = nullptr;  //!< Phase for current packet
112 
113     uint32_t m_pictureStatesSize    = 0;
114     uint32_t m_picturePatchListSize = 0;
115     uint32_t m_sliceStatesSize      = 0;
116     uint32_t m_slicePatchListSize   = 0;
117 
118 MEDIA_CLASS_DEFINE_END(decode__Vp9DecodePkt)
119 };
120 
121 }  // namespace decode
122 #endif // !__DECODE_VP9_PACKET_H__
123 
124