1 /*
2 * Copyright (c) 2023-2024, 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     encode_av1_fast_pass.h
24 //! \brief    Fast Pass feature
25 //!
26 
27 #ifndef __ENCODE_AV1_FAST_PASS_H__
28 #define __ENCODE_AV1_FAST_PASS_H__
29 
30 #include "encode_av1_basic_feature.h"
31 
32 namespace encode
33 {
34 
35 
36 class Av1FastPass : public MediaFeature, public mhw::vdbox::vdenc::Itf::ParSetting, public mhw::vdbox::avp::Itf::ParSetting
37 {
38 public:
39     Av1FastPass(
40         MediaFeatureManager     *featureManager,
41         EncodeAllocator         *allocator,
42         CodechalHwInterfaceNext *hwInterface,
43         void                    *constSettings);
44 
45     virtual ~Av1FastPass();
46 
47     //!
48     //! \brief  Update encode parameter
49     //! \param  [in] params
50     //!         Pointer to parameters
51     //! \return MOS_STATUS
52     //!         MOS_STATUS_SUCCESS if success, else fail reason
53     //!
54     virtual MOS_STATUS Update(void *params) override;
55 
56     MHW_SETPAR_DECL_HDR(VDENC_PIPE_MODE_SELECT);
57 
58     MHW_SETPAR_DECL_HDR(VDENC_CMD2);
59 
60     MHW_SETPAR_DECL_HDR(VDENC_HEVC_VP9_TILE_SLICE_STATE);
61 
62     MHW_SETPAR_DECL_HDR(VDENC_WALKER_STATE);
63 
64     MHW_SETPAR_DECL_HDR(VDENC_REF_SURFACE_STATE);
65 
66     MHW_SETPAR_DECL_HDR(VDENC_DS_REF_SURFACE_STATE);
67 
68     MHW_SETPAR_DECL_HDR(AVP_TILE_CODING);
69 
70     MHW_SETPAR_DECL_HDR(AVP_PIC_STATE);
71 
72     MHW_SETPAR_DECL_HDR(AVP_SURFACE_STATE);
73 
74 protected:
75 
76     uint8_t m_fastPassDownScaleRatio = 0;      //!< downscale ratio for fast pass encode
77     uint8_t m_fastPassDownScaleType  = 0;      //!< downscale Type for fast pass encode
78     uint32_t m_dsWidth                = 0;
79     uint32_t m_dsHeight               = 0;
80 
81     Av1BasicFeature *m_basicFeature = nullptr;  //!< AV1 Basic Feature
82 
83 #define AV1_FAST_PASS_4X_DS(value) ((value) != 1)
84 
85 MEDIA_CLASS_DEFINE_END(encode__Av1FastPass)
86 };
87 }  // namespace encode
88 
89 #endif  // __ENCODE_AV1_FASTPASS_H__
90