/src/vvenc/source/Lib/CommonLib/QuantRDOQ2.h
Line | Count | Source |
1 | | /* ----------------------------------------------------------------------------- |
2 | | The copyright in this software is being made available under the Clear BSD |
3 | | License, included below. No patent rights, trademark rights and/or |
4 | | other Intellectual Property Rights other than the copyrights concerning |
5 | | the Software are granted under this license. |
6 | | |
7 | | The Clear BSD License |
8 | | |
9 | | Copyright (c) 2019-2026, Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. & The VVenC Authors. |
10 | | All rights reserved. |
11 | | |
12 | | Redistribution and use in source and binary forms, with or without modification, |
13 | | are permitted (subject to the limitations in the disclaimer below) provided that |
14 | | the following conditions are met: |
15 | | |
16 | | * Redistributions of source code must retain the above copyright notice, |
17 | | this list of conditions and the following disclaimer. |
18 | | |
19 | | * Redistributions in binary form must reproduce the above copyright |
20 | | notice, this list of conditions and the following disclaimer in the |
21 | | documentation and/or other materials provided with the distribution. |
22 | | |
23 | | * Neither the name of the copyright holder nor the names of its |
24 | | contributors may be used to endorse or promote products derived from this |
25 | | software without specific prior written permission. |
26 | | |
27 | | NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY |
28 | | THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
29 | | CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
30 | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
31 | | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR |
32 | | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
33 | | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
34 | | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
35 | | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
36 | | IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
37 | | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
38 | | POSSIBILITY OF SUCH DAMAGE. |
39 | | |
40 | | |
41 | | ------------------------------------------------------------------------------------------- */ |
42 | | /** \file QuantRDOQ2.h |
43 | | \brief RDOQ class (header) |
44 | | */ |
45 | | |
46 | | #pragma once |
47 | | |
48 | | #include "CommonDef.h" |
49 | | #include "Unit.h" |
50 | | #include "Contexts.h" |
51 | | #include "ContextModelling.h" |
52 | | #include "QuantRDOQ.h" |
53 | | |
54 | | //! \ingroup CommonLib |
55 | | //! \{ |
56 | | |
57 | | namespace vvenc { |
58 | | |
59 | | typedef int64_t cost_t ; |
60 | | |
61 | | // ==================================================================================================================== |
62 | | // Class definition |
63 | | // ==================================================================================================================== |
64 | | |
65 | | /// transform and quantization class |
66 | | class QuantRDOQ2 : public QuantRDOQ |
67 | | { |
68 | | public: |
69 | | QuantRDOQ2( const Quant* other, bool useScalingLists ); |
70 | | ~QuantRDOQ2(); |
71 | | |
72 | | public: |
73 | | virtual void setFlatScalingList ( const int maxLog2TrDynamicRange[MAX_NUM_CH], const BitDepths &bitDepths ); |
74 | | virtual void quant ( TransformUnit &tu, const ComponentID compID, const CCoeffBuf &pSrc, TCoeff &uiAbsSum, const QpParam &cQP, const Ctx& ctx ); |
75 | | |
76 | | private: |
77 | 0 | int* xGetErrScaleCoeffSL ( unsigned list, unsigned sizeX, unsigned sizeY, int qp ) { return m_errScale[sizeX][sizeY][list][qp]; }; //!< get Error Scale Coefficent |
78 | | int xGetErrScaleCoeff ( const bool needsSqrt2, SizeType width, SizeType height, int qp, const int maxLog2TrDynamicRange, const int channelBitDepth); |
79 | 0 | int& xGetErrScaleCoeffNoScalingList ( unsigned list, unsigned sizeX, unsigned sizeY, int qp ) { return m_errScaleNoScalingList[sizeX][sizeY][list][qp]; }; //!< get Error Scale Coefficent |
80 | | |
81 | | void xInitScalingList ( const QuantRDOQ2* other ); |
82 | | void xDestroyScalingList (); |
83 | | void xSetErrScaleCoeff ( unsigned list, unsigned sizeX, unsigned sizeY, int qp, const int maxLog2TrDynamicRange[MAX_NUM_CH], const BitDepths &bitDepths ); |
84 | | void xSetErrScaleCoeffNoScalingList ( unsigned list, unsigned wIdx, unsigned hIdx, int qp, const int maxLog2TrDynamicRange[MAX_NUM_CH], const BitDepths &bitDepths ); |
85 | | void xInitLastPosBitsTab ( const CoeffCodingContext& cctx, const unsigned uiWidth, const unsigned uiHeight, const ChannelType chType, const FracBitsAccess& fracBits ); |
86 | | |
87 | | inline cost_t xiGetICost ( int iRate ) const; |
88 | | inline cost_t xGetIEPRate () const; |
89 | | inline cost_t xiGetICRateCost ( const unsigned uiAbsLevel, |
90 | | const BinFracBits& fracBitsPar, |
91 | | const BinFracBits& fracBitsGt1, |
92 | | const BinFracBits& fracBitsGt2, |
93 | | const int remRegBins, |
94 | | unsigned goRiceZero, |
95 | | const uint16_t ui16AbsGoRice, |
96 | | const int maxLog2TrDynamicRange ) const; |
97 | | inline cost_t xiGetCostSigCoeffGroup ( const BinFracBits& fracBitsSigCG, unsigned uiSignificanceCoeffGroup ) const; |
98 | | inline cost_t xLevelCost ( const uint32_t uiAbsLevel, const int iScaledLevel, const int iQBits, const cost_t iErrScale, const cost_t iErrScaleShift, const cost_t costSig, const BinFracBits& fracBitsPar, const BinFracBits& fracBitsGt1, const BinFracBits& fracBitsGt2, const int remRegBins, unsigned goRiceZero, const uint16_t goRiceParam, const bool extendedPrecision, const int maxLog2TrDynamicRange ) const; |
99 | | inline cost_t xiGetCostLast ( const unsigned uiPosX, const unsigned uiPosY, const ChannelType chType ) const; |
100 | | inline cost_t xiGetCostSigCoef ( const BinFracBits& fracBitsSig, unsigned uiSignificance ) const; |
101 | | |
102 | | template< bool bSBH, bool bUseScalingList > |
103 | | int xRateDistOptQuantFast( TransformUnit &tu, const ComponentID &compID, const CCoeffBuf &pSrc, TCoeff &uiAbsSum, const QpParam &cQP, const Ctx &ctx ); |
104 | | int xRateDistOptQuant ( TransformUnit &tu, const ComponentID &compID, const CCoeffBuf &pSrc, TCoeff &uiAbsSum, const QpParam &cQP, const Ctx &ctx, bool bUseScalingList ); |
105 | | |
106 | | |
107 | | private: |
108 | | bool m_isErrScaleListOwner; |
109 | | int64_t m_iLambda; |
110 | | |
111 | | //QuantErrScale m_quantErrScale; |
112 | | int m_lastBitsX [MAX_NUM_CH][LAST_SIGNIFICANT_GROUPS]; |
113 | | int m_lastBitsY [MAX_NUM_CH][LAST_SIGNIFICANT_GROUPS]; |
114 | | int* m_errScale [SCALING_LIST_SIZE_NUM][SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM][SCALING_LIST_REM_NUM]; ///< array of quantization matrix coefficient 4x4 |
115 | | int m_errScaleNoScalingList [SCALING_LIST_SIZE_NUM][SCALING_LIST_SIZE_NUM][SCALING_LIST_NUM][SCALING_LIST_REM_NUM]; ///< array of quantization matrix coefficient 4x4 |
116 | | CtxTpl m_tplBuf [MAX_TB_SIZEY * MAX_TB_SIZEY]; |
117 | | };// END CLASS DEFINITION QuantRDOQ2 |
118 | | |
119 | | } // namespace vvenc |
120 | | //! \} |
121 | | |