Coverage Report

Created: 2026-02-26 06:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/x265/source/common/quant.cpp
Line
Count
Source
1
/*****************************************************************************
2
 * Copyright (C) 2013-2020 MulticoreWare, Inc
3
 *
4
 * Authors: Steve Borho <steve@borho.org>
5
 *          Min Chen <chenm003@163.com>
6
 *
7
 * This program is free software; you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation; either version 2 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
20
 *
21
 * This program is also available under a commercial proprietary license.
22
 * For more information, contact us at license @ x265.com.
23
 *****************************************************************************/
24
25
#include "common.h"
26
#include "primitives.h"
27
#include "quant.h"
28
#include "framedata.h"
29
#include "entropy.h"
30
#include "yuv.h"
31
#include "cudata.h"
32
#include "contexts.h"
33
34
using namespace X265_NS;
35
36
121k
#define SIGN(x,y) ((x^(y >> 31))-(y >> 31))
37
38
namespace {
39
40
struct coeffGroupRDStats
41
{
42
    int     nnzBeforePos0;     /* indicates coeff other than pos 0 are coded */
43
    int64_t codedLevelAndDist; /* distortion and level cost of coded coefficients */
44
    int64_t uncodedDist;       /* uncoded distortion cost of coded coefficients */
45
    int64_t sigCost;           /* cost of signaling significant coeff bitmap */
46
    int64_t sigCost0;          /* cost of signaling sig coeff bit of coeff 0 */
47
};
48
49
inline int fastMin(int x, int y)
50
987k
{
51
987k
    return y + ((x - y) & ((x - y) >> (sizeof(int) * CHAR_BIT - 1))); // min(x, y)
52
987k
}
53
54
inline int getICRate(uint32_t absLevel, int32_t diffLevel, const int* greaterOneBits, const int* levelAbsBits, const uint32_t absGoRice, const uint32_t maxVlc, const uint32_t c1c2Rate)
55
162k
{
56
162k
    X265_CHECK(absGoRice <= 4, "absGoRice check failure\n");
57
162k
    if (!absLevel)
58
1.84k
    {
59
1.84k
        X265_CHECK(diffLevel < 0, "diffLevel check failure\n");
60
1.84k
        return 0;
61
1.84k
    }
62
160k
    int rate = 0;
63
64
160k
    if (diffLevel < 0)
65
13.7k
    {
66
13.7k
        X265_CHECK(absLevel <= 2, "absLevel check failure\n");
67
13.7k
        rate += greaterOneBits[(absLevel == 2)];
68
69
13.7k
        if (absLevel == 2)
70
4.86k
            rate += levelAbsBits[0];
71
13.7k
    }
72
147k
    else
73
147k
    {
74
147k
        uint32_t symbol = diffLevel;
75
147k
        bool expGolomb = (symbol > maxVlc);
76
77
147k
        if (expGolomb)
78
125k
        {
79
125k
            absLevel = symbol - maxVlc;
80
81
            // NOTE: mapping to x86 hardware instruction BSR
82
125k
            unsigned long size;
83
125k
            BSR(size, absLevel);
84
125k
            int egs = size * 2 + 1;
85
86
125k
            rate += egs << 15;
87
88
            // NOTE: in here, expGolomb=true means (symbol >= maxVlc + 1)
89
125k
            X265_CHECK(fastMin(symbol, (maxVlc + 1)) == (int)maxVlc + 1, "min check failure\n");
90
125k
            symbol = maxVlc + 1;
91
125k
        }
92
93
147k
        uint32_t prefLen = (symbol >> absGoRice) + 1;
94
147k
        uint32_t numBins = fastMin(prefLen + absGoRice, 8 /* g_goRicePrefixLen[absGoRice] + absGoRice */);
95
96
147k
        rate += numBins << 15;
97
147k
        rate += c1c2Rate;
98
147k
    }
99
160k
    return rate;
100
162k
}
101
102
#if CHECKED_BUILD || _DEBUG
103
inline int getICRateNegDiff(uint32_t absLevel, const int* greaterOneBits, const int* levelAbsBits)
104
{
105
    X265_CHECK(absLevel <= 2, "absLevel check failure\n");
106
107
    int rate;
108
    if (absLevel == 0)
109
        rate = 0;
110
    else if (absLevel == 2)
111
        rate = greaterOneBits[1] + levelAbsBits[0];
112
    else
113
        rate = greaterOneBits[0];
114
    return rate;
115
}
116
#endif
117
118
inline int getICRateLessVlc(uint32_t absLevel, int32_t diffLevel, const uint32_t absGoRice)
119
114k
{
120
114k
    X265_CHECK(absGoRice <= 4, "absGoRice check failure\n");
121
114k
    if (!absLevel)
122
0
    {
123
0
        X265_CHECK(diffLevel < 0, "diffLevel check failure\n");
124
0
        return 0;
125
0
    }
126
114k
    int rate;
127
128
114k
    uint32_t symbol = diffLevel;
129
114k
    uint32_t prefLen = (symbol >> absGoRice) + 1;
130
114k
    uint32_t numBins = fastMin(prefLen + absGoRice, 8 /* g_goRicePrefixLen[absGoRice] + absGoRice */);
131
132
114k
    rate = numBins << 15;
133
134
114k
    return rate;
135
114k
}
136
137
/* Calculates the cost for specific absolute transform level */
138
inline uint32_t getICRateCost(uint32_t absLevel, int32_t diffLevel, const int* greaterOneBits, const int* levelAbsBits, uint32_t absGoRice, const uint32_t c1c2Rate)
139
182k
{
140
182k
    X265_CHECK(absLevel, "absLevel should not be zero\n");
141
142
182k
    if (diffLevel < 0)
143
13.0k
    {
144
13.0k
        X265_CHECK((absLevel == 1) || (absLevel == 2), "absLevel range check failure\n");
145
146
13.0k
        uint32_t rate = greaterOneBits[(absLevel == 2)];
147
13.0k
        if (absLevel == 2)
148
5.50k
            rate += levelAbsBits[0];
149
13.0k
        return rate;
150
13.0k
    }
151
169k
    else
152
169k
    {
153
169k
        uint32_t rate;
154
169k
        uint32_t symbol = diffLevel;
155
169k
        if ((symbol >> absGoRice) < COEF_REMAIN_BIN_REDUCTION)
156
58.6k
        {
157
58.6k
            uint32_t length = symbol >> absGoRice;
158
58.6k
            rate = (length + 1 + absGoRice) << 15;
159
58.6k
        }
160
110k
        else
161
110k
        {
162
110k
            uint32_t length = 0;
163
110k
            symbol = (symbol >> absGoRice) - COEF_REMAIN_BIN_REDUCTION;
164
110k
            if (symbol)
165
99.9k
            {
166
99.9k
                unsigned long idx;
167
99.9k
                BSR(idx, symbol + 1);
168
99.9k
                length = idx;
169
99.9k
            }
170
171
110k
            rate = (COEF_REMAIN_BIN_REDUCTION + length + absGoRice + 1 + length) << 15;
172
110k
        }
173
169k
        rate += c1c2Rate;
174
169k
        return rate;
175
169k
    }
176
182k
}
177
178
}
179
180
Quant::rdoQuant_t Quant::rdoQuant_func[NUM_CU_DEPTH] = {&Quant::rdoQuant<2>, &Quant::rdoQuant<3>, &Quant::rdoQuant<4>, &Quant::rdoQuant<5>};
181
182
Quant::Quant()
183
23.3k
{
184
23.3k
    m_resiDctCoeff = NULL;
185
23.3k
    m_fencDctCoeff = NULL;
186
23.3k
    m_fencShortBuf = NULL;
187
23.3k
    m_frameNr      = NULL;
188
23.3k
    m_nr           = NULL;
189
23.3k
}
190
191
bool Quant::init(double psyScale, const ScalingList& scalingList, Entropy& entropy)
192
23.3k
{
193
23.3k
    m_entropyCoder = &entropy;
194
23.3k
    m_psyRdoqScale = (int32_t)(psyScale * 256.0);
195
23.3k
    X265_CHECK((psyScale * 256.0) < (double)MAX_INT, "psyScale value too large\n");
196
23.3k
    m_scalingList  = &scalingList;
197
23.3k
    m_resiDctCoeff = X265_MALLOC(int16_t, MAX_TR_SIZE * MAX_TR_SIZE * 2);
198
23.3k
    m_fencDctCoeff = m_resiDctCoeff + (MAX_TR_SIZE * MAX_TR_SIZE);
199
23.3k
    m_fencShortBuf = X265_MALLOC(int16_t, MAX_TR_SIZE * MAX_TR_SIZE);
200
201
23.3k
    return m_resiDctCoeff && m_fencShortBuf;
202
23.3k
}
203
204
bool Quant::allocNoiseReduction(const x265_param& param)
205
0
{
206
0
    m_frameNr = X265_MALLOC(NoiseReduction, param.frameNumThreads);
207
0
    if (m_frameNr)
208
0
        memset(m_frameNr, 0, sizeof(NoiseReduction) * param.frameNumThreads);
209
0
    else
210
0
        return false;
211
0
    return true;
212
0
}
213
214
Quant::~Quant()
215
23.3k
{
216
23.3k
    X265_FREE(m_frameNr);
217
23.3k
    X265_FREE(m_resiDctCoeff);
218
23.3k
    X265_FREE(m_fencShortBuf);
219
23.3k
}
220
221
void Quant::setQPforQuant(const CUData& ctu, int qp)
222
26.9k
{
223
26.9k
    m_nr = m_frameNr ? &m_frameNr[ctu.m_encData->m_frameEncoderID] : NULL;
224
26.9k
    m_qpParam[TEXT_LUMA].setQpParam(qp + QP_BD_OFFSET);
225
26.9k
    m_rdoqLevel = ctu.m_encData->m_param->rdoqLevel;
226
26.9k
    if (ctu.m_chromaFormat != X265_CSP_I400)
227
26.9k
    {
228
26.9k
        setChromaQP(qp + ctu.m_slice->m_pps->chromaQpOffset[0] + ctu.m_slice->m_chromaQpOffset[0], TEXT_CHROMA_U, ctu.m_chromaFormat);
229
26.9k
        setChromaQP(qp + ctu.m_slice->m_pps->chromaQpOffset[1] + ctu.m_slice->m_chromaQpOffset[1], TEXT_CHROMA_V, ctu.m_chromaFormat);
230
26.9k
    }
231
26.9k
}
232
233
void Quant::setChromaQP(int qpin, TextType ttype, int chFmt)
234
53.8k
{
235
53.8k
    int qp = x265_clip3(-QP_BD_OFFSET, 57, qpin);
236
53.8k
    if (qp >= 30)
237
10.5k
    {
238
10.5k
        if (chFmt == X265_CSP_I420)
239
10.5k
            qp = g_chromaScale[qp];
240
0
        else
241
0
            qp = X265_MIN(qp, QP_MAX_SPEC);
242
10.5k
    }
243
53.8k
    m_qpParam[ttype].setQpParam(qp + QP_BD_OFFSET);
244
53.8k
}
245
246
/* To minimize the distortion only. No rate is considered */
247
uint32_t Quant::signBitHidingHDQ(int16_t* coeff, int32_t* deltaU, uint32_t numSig, const TUEntropyCodingParameters &codeParams, uint32_t log2TrSize)
248
0
{
249
0
    uint32_t trSize = 1 << log2TrSize;
250
0
    const uint16_t* scan = codeParams.scan;
251
252
0
    uint8_t coeffNum[MLS_GRP_NUM];      // value range[0, 16]
253
0
    uint16_t coeffSign[MLS_GRP_NUM];    // bit mask map for non-zero coeff sign
254
0
    uint16_t coeffFlag[MLS_GRP_NUM];    // bit mask map for non-zero coeff
255
256
#if CHECKED_BUILD || _DEBUG
257
    // clean output buffer, the asm version of scanPosLast Never output anything after latest non-zero coeff group
258
    memset(coeffNum, 0, sizeof(coeffNum) * sizeof(uint8_t));
259
    memset(coeffSign, 0, sizeof(coeffNum) * sizeof(uint16_t));
260
    memset(coeffFlag, 0, sizeof(coeffNum) * sizeof(uint16_t));
261
#endif
262
0
    const int lastScanPos = primitives.scanPosLast(codeParams.scan, coeff, coeffSign, coeffFlag, coeffNum, numSig, g_scan4x4[codeParams.scanType], trSize);
263
0
    const int cgLastScanPos = (lastScanPos >> LOG2_SCAN_SET_SIZE);
264
0
    unsigned long tmp;
265
266
    // first CG need specially processing
267
0
    const uint32_t correctOffset = 0x0F & (lastScanPos ^ 0xF);
268
0
    coeffFlag[cgLastScanPos] <<= correctOffset;
269
270
0
    for (int cg = cgLastScanPos; cg >= 0; cg--)
271
0
    {
272
0
        int cgStartPos = cg << LOG2_SCAN_SET_SIZE;
273
0
        int n;
274
275
#if CHECKED_BUILD || _DEBUG
276
        for (n = SCAN_SET_SIZE - 1; n >= 0; --n)
277
            if (coeff[scan[n + cgStartPos]])
278
                break;
279
        int lastNZPosInCG0 = n;
280
#endif
281
282
0
        if (coeffNum[cg] == 0)
283
0
        {
284
0
            X265_CHECK(lastNZPosInCG0 < 0, "all zero block check failure\n");
285
0
            continue;
286
0
        }
287
288
#if CHECKED_BUILD || _DEBUG
289
        for (n = 0;; n++)
290
            if (coeff[scan[n + cgStartPos]])
291
                break;
292
293
        int firstNZPosInCG0 = n;
294
#endif
295
296
0
        BSR(tmp, coeffFlag[cg]);
297
0
        const int firstNZPosInCG = (15 ^ tmp);
298
299
0
        BSF(tmp, coeffFlag[cg]);
300
0
        const int lastNZPosInCG = (15 ^ tmp);
301
302
0
        X265_CHECK(firstNZPosInCG0 == firstNZPosInCG, "firstNZPosInCG0 check failure\n");
303
0
        X265_CHECK(lastNZPosInCG0 == lastNZPosInCG, "lastNZPosInCG0 check failure\n");
304
305
0
        if (lastNZPosInCG - firstNZPosInCG >= SBH_THRESHOLD)
306
0
        {
307
0
            uint32_t signbit = coeff[scan[cgStartPos + firstNZPosInCG]] > 0 ? 0 : 1;
308
0
            uint32_t absSum = 0;
309
310
0
            for (n = firstNZPosInCG; n <= lastNZPosInCG; n++)
311
0
                absSum += coeff[scan[n + cgStartPos]];
312
313
0
            if (signbit != (absSum & 0x1)) // compare signbit with sum_parity
314
0
            {
315
0
                int minCostInc = MAX_INT,  minPos = -1, curCost = MAX_INT;
316
0
                int32_t finalChange = 0, curChange = 0;
317
0
                uint32_t cgFlags = coeffFlag[cg];
318
0
                if (cg == cgLastScanPos)
319
0
                    cgFlags >>= correctOffset;
320
321
0
                for (n = (cg == cgLastScanPos ? lastNZPosInCG : SCAN_SET_SIZE - 1); n >= 0; --n)
322
0
                {
323
0
                    uint32_t blkPos = scan[n + cgStartPos];
324
0
                    X265_CHECK(!!coeff[blkPos] == !!(cgFlags & 1), "non zero coeff check failure\n");
325
326
0
                    if (cgFlags & 1)
327
0
                    {
328
0
                        if (deltaU[blkPos] > 0)
329
0
                        {
330
0
                            curCost = -deltaU[blkPos];
331
0
                            curChange = 1;
332
0
                        }
333
0
                        else
334
0
                        {
335
0
                            if ((cgFlags == 1) && (abs(coeff[blkPos]) == 1))
336
0
                            {
337
0
                                X265_CHECK(n == firstNZPosInCG, "firstNZPosInCG position check failure\n");
338
0
                                curCost = MAX_INT;
339
0
                            }
340
0
                            else
341
0
                            {
342
0
                                curCost = deltaU[blkPos];
343
0
                                curChange = -1;
344
0
                            }
345
0
                        }
346
0
                    }
347
0
                    else
348
0
                    {
349
0
                        if (cgFlags == 0)
350
0
                        {
351
0
                            X265_CHECK(n < firstNZPosInCG, "firstNZPosInCG position check failure\n");
352
0
                            uint32_t thisSignBit = m_resiDctCoeff[blkPos] >= 0 ? 0 : 1;
353
0
                            if (thisSignBit != signbit)
354
0
                                curCost = MAX_INT;
355
0
                            else
356
0
                            {
357
0
                                curCost = -deltaU[blkPos];
358
0
                                curChange = 1;
359
0
                            }
360
0
                        }
361
0
                        else
362
0
                        {
363
0
                            curCost = -deltaU[blkPos];
364
0
                            curChange = 1;
365
0
                        }
366
0
                    }
367
368
0
                    if (curCost < minCostInc)
369
0
                    {
370
0
                        minCostInc = curCost;
371
0
                        finalChange = curChange;
372
0
                        minPos = blkPos;
373
0
                    }
374
0
                    cgFlags>>=1;
375
0
                }
376
377
                /* do not allow change to violate coeff clamp */
378
0
                if (coeff[minPos] == 32767 || coeff[minPos] == -32768)
379
0
                    finalChange = -1;
380
381
0
                if (!coeff[minPos])
382
0
                    numSig++;
383
0
                else if (finalChange == -1 && abs(coeff[minPos]) == 1)
384
0
                    numSig--;
385
386
0
                {
387
0
                    const int16_t sigMask = ((int16_t)m_resiDctCoeff[minPos]) >> 15;
388
0
                    coeff[minPos] += ((int16_t)finalChange ^ sigMask) - sigMask;
389
0
                }
390
0
            }
391
0
        }
392
0
    }
393
394
0
    return numSig;
395
0
}
396
397
uint32_t Quant::transformNxN(const CUData& cu, const pixel* fenc, uint32_t fencStride, const int16_t* residual, uint32_t resiStride,
398
                             coeff_t* coeff, uint32_t log2TrSize, TextType ttype, uint32_t absPartIdx, bool useTransformSkip)
399
11.6M
{
400
11.6M
    const uint32_t sizeIdx = log2TrSize - 2;
401
402
11.6M
    if (cu.m_tqBypass[0])
403
3.51M
    {
404
3.51M
        X265_CHECK(log2TrSize >= 2 && log2TrSize <= 5, "Block size mistake!\n");
405
3.51M
        return primitives.cu[sizeIdx].copy_cnt(coeff, residual, resiStride);
406
3.51M
    }
407
408
8.18M
    bool isLuma  = ttype == TEXT_LUMA;
409
8.18M
    bool usePsy  = m_psyRdoqScale && isLuma && !useTransformSkip;
410
8.18M
    int transformShift = MAX_TR_DYNAMIC_RANGE - X265_DEPTH - log2TrSize; // Represents scaling through forward transform
411
412
8.18M
    X265_CHECK((cu.m_slice->m_sps->quadtreeTULog2MaxSize >= log2TrSize), "transform size too large\n");
413
8.18M
    if (useTransformSkip)
414
0
    {
415
0
#if X265_DEPTH <= 10
416
0
        X265_CHECK(transformShift >= 0, "invalid transformShift\n");
417
0
        primitives.cu[sizeIdx].cpy2Dto1D_shl(m_resiDctCoeff, residual, resiStride, transformShift);
418
#else
419
        if (transformShift >= 0)
420
            primitives.cu[sizeIdx].cpy2Dto1D_shl(m_resiDctCoeff, residual, resiStride, transformShift);
421
        else
422
            primitives.cu[sizeIdx].cpy2Dto1D_shr(m_resiDctCoeff, residual, resiStride, -transformShift);
423
#endif
424
0
    }
425
8.18M
    else
426
8.18M
    {
427
8.18M
        bool isIntra = cu.isIntra(absPartIdx);
428
429
8.18M
        if (!sizeIdx && isLuma && isIntra)
430
2.54M
            primitives.dst4x4(residual, m_resiDctCoeff, resiStride);
431
5.63M
        else
432
5.63M
            primitives.cu[sizeIdx].dct(residual, m_resiDctCoeff, resiStride);
433
434
        /* NOTE: if RDOQ is disabled globally, psy-rdoq is also disabled, so
435
         * there is no risk of performing this DCT unnecessarily */
436
8.18M
        if (usePsy)
437
3.34M
        {
438
3.34M
            int trSize = 1 << log2TrSize;
439
            /* perform DCT on source pixels for psy-rdoq */
440
3.34M
            primitives.cu[sizeIdx].copy_ps(m_fencShortBuf, trSize, fenc, fencStride);
441
3.34M
            primitives.cu[sizeIdx].dct(m_fencShortBuf, m_fencDctCoeff, trSize);
442
3.34M
        }
443
444
8.18M
        if (m_nr && m_nr->offset)
445
0
        {
446
            /* denoise is not applied to intra residual, so DST can be ignored */
447
0
            int cat = sizeIdx + 4 * !isLuma + 8 * !isIntra;
448
0
            int numCoeff = 1 << (log2TrSize * 2);
449
0
            primitives.denoiseDct(m_resiDctCoeff, m_nr->residualSum[cat], m_nr->offset[cat], numCoeff);
450
0
            m_nr->count[cat]++;
451
0
        }
452
8.18M
    }
453
454
8.18M
    if (m_rdoqLevel)
455
8.18M
        return (this->*rdoQuant_func[log2TrSize - 2])(cu, coeff, ttype, absPartIdx, usePsy);
456
18.4E
    else
457
18.4E
    {
458
18.4E
        int deltaU[32 * 32];
459
460
18.4E
        int scalingListType = (cu.isIntra(absPartIdx) ? 0 : 3) + ttype;
461
18.4E
        int rem = m_qpParam[ttype].rem;
462
18.4E
        int per = m_qpParam[ttype].per;
463
18.4E
        const int32_t* quantCoeff = m_scalingList->m_quantCoef[log2TrSize - 2][scalingListType][rem];
464
465
18.4E
        int qbits = QUANT_SHIFT + per + transformShift;
466
18.4E
        int add = (cu.m_slice->m_sliceType == I_SLICE ? 171 : 85) << (qbits - 9);
467
18.4E
        int numCoeff = 1 << (log2TrSize * 2);
468
469
18.4E
        uint32_t numSig = primitives.quant(m_resiDctCoeff, quantCoeff, deltaU, coeff, qbits, add, numCoeff);
470
471
18.4E
        if (numSig >= 2 && cu.m_slice->m_pps->bSignHideEnabled)
472
0
        {
473
0
            TUEntropyCodingParameters codeParams;
474
0
            cu.getTUEntropyCodingParameters(codeParams, absPartIdx, log2TrSize, isLuma);
475
0
            return signBitHidingHDQ(coeff, deltaU, numSig, codeParams, log2TrSize);
476
0
        }
477
18.4E
        else
478
18.4E
            return numSig;
479
18.4E
    }
480
8.18M
}
481
482
uint64_t Quant::ssimDistortion(const CUData& cu, const pixel* fenc, uint32_t fStride, const pixel* recon, intptr_t rstride, uint32_t log2TrSize, TextType ttype, uint32_t absPartIdx)
483
0
{
484
0
    static const int ssim_c1 = (int)(.01 * .01 * PIXEL_MAX * PIXEL_MAX * 64 + .5); // 416
485
0
    static const int ssim_c2 = (int)(.03 * .03 * PIXEL_MAX * PIXEL_MAX * 64 * 63 + .5); // 235963
486
0
    int shift = (X265_DEPTH - 8);
487
488
0
    int trSize = 1 << log2TrSize;
489
0
    uint64_t ssDc = 0, ssBlock = 0, ssAc = 0;
490
491
    // Calculation of (X(0) - Y(0)) * (X(0) - Y(0)), DC
492
0
    ssDc = 0;
493
0
    for (int y = 0; y < trSize; y += 4)
494
0
    {
495
0
        for (int x = 0; x < trSize; x += 4)
496
0
        {
497
0
            int temp = fenc[y * fStride + x] - recon[y * rstride + x]; // copy of residual coeff
498
0
            ssDc += temp * temp;
499
0
        }
500
0
    }
501
502
    // Calculation of (X(k) - Y(k)) * (X(k) - Y(k)), AC
503
0
    ssBlock = 0;
504
0
    uint64_t ac_k = 0;
505
0
    primitives.cu[log2TrSize - 2].ssimDist(fenc, fStride, recon, rstride, &ssBlock, shift, &ac_k);
506
0
    ssAc = ssBlock - ssDc;
507
508
    // 1. Calculation of fdc'
509
    // Calculate numerator of dc normalization factor
510
0
    uint64_t fDc_num = 0;
511
512
    // 2. Calculate dc component
513
0
    uint64_t dc_k = 0;
514
0
    for (int block_yy = 0; block_yy < trSize; block_yy += 4)
515
0
    {
516
0
        for (int block_xx = 0; block_xx < trSize; block_xx += 4)
517
0
        {
518
0
            uint32_t temp = fenc[block_yy * fStride + block_xx] >> shift;
519
0
            dc_k += temp * temp;
520
0
        }
521
0
    }
522
523
0
    fDc_num = (2 * dc_k)  + (trSize * trSize * ssim_c1); // 16 pixels -> for each 4x4 block
524
0
    fDc_num /= ((trSize >> 2) * (trSize >> 2));
525
526
    // 1. Calculation of fac'
527
    // Calculate numerator of ac normalization factor
528
0
    uint64_t fAc_num = 0;
529
530
    // 2. Calculate ac component
531
0
    ac_k -= dc_k;
532
533
0
    double s = 1 + 0.005 * cu.m_qp[absPartIdx];
534
535
0
    fAc_num = ac_k + uint64_t(s * ac_k) + ssim_c2;
536
0
    fAc_num /= ((trSize >> 2) * (trSize >> 2));
537
538
    // Calculate dc and ac normalization factor
539
0
    uint64_t ssim_distortion = ((ssDc * cu.m_fDc_den[ttype]) / fDc_num) + ((ssAc * cu.m_fAc_den[ttype]) / fAc_num);
540
0
    return ssim_distortion;
541
0
}
542
543
void Quant::invtransformNxN(const CUData& cu, int16_t* residual, uint32_t resiStride, const coeff_t* coeff,
544
                            uint32_t log2TrSize, TextType ttype, bool bIntra, bool useTransformSkip, uint32_t numSig)
545
53.3k
{
546
53.3k
    const uint32_t sizeIdx = log2TrSize - 2;
547
53.3k
    if (cu.m_tqBypass[0])
548
13.3k
    {
549
13.3k
        primitives.cu[sizeIdx].cpy1Dto2D_shl[resiStride % 64 == 0](residual, coeff, resiStride, 0);
550
13.3k
        return;
551
13.3k
    }
552
    // Values need to pass as input parameter in dequant
553
39.9k
    int rem = m_qpParam[ttype].rem;
554
39.9k
    int per = m_qpParam[ttype].per;
555
39.9k
    int transformShift = MAX_TR_DYNAMIC_RANGE - X265_DEPTH - log2TrSize;
556
39.9k
    int shift = QUANT_IQUANT_SHIFT - QUANT_SHIFT - transformShift;
557
39.9k
    int numCoeff = 1 << (log2TrSize * 2);
558
559
39.9k
    if (m_scalingList->m_bEnabled)
560
0
    {
561
0
        int scalingListType = (bIntra ? 0 : 3) + ttype;
562
0
        const int32_t* dequantCoef = m_scalingList->m_dequantCoef[sizeIdx][scalingListType][rem];
563
0
        primitives.dequant_scaling(coeff, dequantCoef, m_resiDctCoeff, numCoeff, per, shift);
564
0
    }
565
39.9k
    else
566
39.9k
    {
567
39.9k
        int scale = m_scalingList->s_invQuantScales[rem] << per;
568
39.9k
        primitives.dequant_normal(coeff, m_resiDctCoeff, numCoeff, scale, shift);
569
39.9k
    }
570
571
39.9k
    if (useTransformSkip)
572
0
    {
573
0
#if X265_DEPTH <= 10
574
0
        X265_CHECK(transformShift > 0, "invalid transformShift\n");
575
0
        primitives.cu[sizeIdx].cpy1Dto2D_shr(residual, m_resiDctCoeff, resiStride, transformShift);
576
#else
577
        if (transformShift > 0)
578
            primitives.cu[sizeIdx].cpy1Dto2D_shr(residual, m_resiDctCoeff, resiStride, transformShift);
579
        else
580
            primitives.cu[sizeIdx].cpy1Dto2D_shl[resiStride % 64 == 0](residual, m_resiDctCoeff, resiStride, -transformShift);
581
#endif
582
0
    }
583
39.9k
    else
584
39.9k
    {
585
39.9k
        int useDST = !sizeIdx && ttype == TEXT_LUMA && bIntra;
586
39.9k
        X265_CHECK((int)numSig == primitives.cu[log2TrSize - 2].count_nonzero(coeff), "numSig differ\n");
587
        // DC only
588
39.9k
        if (numSig == 1 && coeff[0] != 0 && !useDST)
589
33.6k
        {
590
33.6k
            const int shift_1st = 7 - 6;
591
33.6k
            const int add_1st = 1 << (shift_1st - 1);
592
33.6k
            const int shift_2nd = 12 - (X265_DEPTH - 8) - 3;
593
33.6k
            const int add_2nd = 1 << (shift_2nd - 1);
594
595
33.6k
            int dc_val = (((m_resiDctCoeff[0] * (64 >> 6) + add_1st) >> shift_1st) * (64 >> 3) + add_2nd) >> shift_2nd;
596
33.6k
            primitives.cu[sizeIdx].blockfill_s[resiStride % 64 == 0](residual, resiStride, (int16_t)dc_val);
597
33.6k
            return;
598
33.6k
        }
599
600
6.26k
        if (useDST)
601
6.26k
            primitives.idst4x4(m_resiDctCoeff, residual, resiStride);
602
0
        else
603
0
            primitives.cu[sizeIdx].idct(m_resiDctCoeff, residual, resiStride);
604
6.26k
    }
605
39.9k
}
606
607
/* Rate distortion optimized quantization for entropy coding engines using
608
 * probability models like CABAC */
609
template<uint32_t log2TrSize>
610
uint32_t Quant::rdoQuant(const CUData& cu, int16_t* dstCoeff, TextType ttype, uint32_t absPartIdx, bool usePsy)
611
8.18M
{
612
8.18M
    const int transformShift = MAX_TR_DYNAMIC_RANGE - X265_DEPTH - log2TrSize; /* Represents scaling through forward transform */
613
8.18M
    int scalingListType = (cu.isIntra(absPartIdx) ? 0 : 3) + ttype;
614
8.18M
    const uint32_t usePsyMask = usePsy ? -1 : 0;
615
616
8.18M
    X265_CHECK(scalingListType < 6, "scaling list type out of range\n");
617
618
8.18M
    int rem = m_qpParam[ttype].rem;
619
8.18M
    int per = m_qpParam[ttype].per;
620
8.18M
    int qbits = QUANT_SHIFT + per + transformShift; /* Right shift of non-RDOQ quantizer level = (coeff*Q + offset)>>q_bits */
621
8.18M
    int add = (1 << (qbits - 1));
622
8.18M
    const int32_t* qCoef = m_scalingList->m_quantCoef[log2TrSize - 2][scalingListType][rem];
623
624
8.18M
    const int numCoeff = 1 << (log2TrSize * 2);
625
8.18M
    uint32_t numSig = primitives.nquant(m_resiDctCoeff, qCoef, dstCoeff, qbits, add, numCoeff);
626
8.18M
    X265_CHECK((int)numSig == primitives.cu[log2TrSize - 2].count_nonzero(dstCoeff), "numSig differ\n");
627
8.18M
    if (!numSig)
628
8.13M
        return 0;
629
49.6k
    const uint32_t trSize = 1 << log2TrSize;
630
49.6k
    int64_t lambda2 = m_qpParam[ttype].lambda2;
631
49.6k
    int64_t psyScale = ((int64_t)m_psyRdoqScale * m_qpParam[ttype].lambda);
632
    /* unquant constants for measuring distortion. Scaling list quant coefficients have a (1 << 4)
633
     * scale applied that must be removed during unquant. Note that in real dequant there is clipping
634
     * at several stages. We skip the clipping for simplicity when measuring RD cost */
635
49.6k
    const int32_t* unquantScale = m_scalingList->m_dequantCoef[log2TrSize - 2][scalingListType][rem];
636
49.6k
    int unquantShift = QUANT_IQUANT_SHIFT - QUANT_SHIFT - transformShift + (m_scalingList->m_bEnabled ? 4 : 0);
637
49.6k
    int unquantRound = (unquantShift > per) ? 1 << (unquantShift - per - 1) : 0;
638
49.6k
    const int scaleBits = SCALE_BITS - 2 * transformShift;
639
640
49.6k
#define UNQUANT(lvl)    (((lvl) * (unquantScale[blkPos] << per) + unquantRound) >> unquantShift)
641
498k
#define SIGCOST(bits)   ((lambda2 * (bits)) >> 8)
642
206k
#define RDCOST(d, bits) ((((int64_t)d * d) << scaleBits) + SIGCOST(bits))
643
434k
#define PSYVALUE(rec)   ((psyScale * (rec)) >> X265_MAX(0, (2 * transformShift + 1)))
644
645
49.6k
    int64_t costCoeff[trSize * trSize];   /* d*d + lambda * bits */
646
49.6k
    int64_t costUncoded[trSize * trSize]; /* d*d + lambda * 0    */
647
49.6k
    int64_t costSig[trSize * trSize];     /* lambda * bits       */
648
649
49.6k
    int rateIncUp[trSize * trSize];      /* signal overhead of increasing level */
650
49.6k
    int rateIncDown[trSize * trSize];    /* signal overhead of decreasing level */
651
49.6k
    int sigRateDelta[trSize * trSize];   /* signal difference between zero and non-zero */
652
653
49.6k
    int64_t costCoeffGroupSig[MLS_GRP_NUM]; /* lambda * bits of group coding cost */
654
49.6k
    uint64_t sigCoeffGroupFlag64 = 0;
655
656
49.6k
    const uint32_t cgSize = (1 << MLS_CG_SIZE); /* 4x4 num coef = 16 */
657
49.6k
    bool bIsLuma = ttype == TEXT_LUMA;
658
659
    /* total rate distortion cost of transform block, as CBF=0 */
660
49.6k
    int64_t totalUncodedCost = 0;
661
662
    /* Total rate distortion cost of this transform block, counting te distortion of uncoded blocks,
663
     * the distortion and signal cost of coded blocks, and the coding cost of significant
664
     * coefficient and coefficient group bitmaps */
665
49.6k
    int64_t totalRdCost = 0;
666
667
49.6k
    TUEntropyCodingParameters codeParams;
668
49.6k
    cu.getTUEntropyCodingParameters(codeParams, absPartIdx, log2TrSize, bIsLuma);
669
49.6k
    const uint32_t log2TrSizeCG = log2TrSize - 2;
670
49.6k
    const uint32_t cgNum = 1 << (log2TrSizeCG * 2);
671
49.6k
    const uint32_t cgStride = (trSize >> MLS_CG_LOG2_SIZE);
672
673
49.6k
    uint8_t coeffNum[MLS_GRP_NUM];      // value range[0, 16]
674
49.6k
    uint16_t coeffSign[MLS_GRP_NUM];    // bit mask map for non-zero coeff sign
675
49.6k
    uint16_t coeffFlag[MLS_GRP_NUM];    // bit mask map for non-zero coeff
676
677
#if CHECKED_BUILD || _DEBUG
678
    // clean output buffer, the asm version of scanPosLast Never output anything after latest non-zero coeff group
679
    memset(coeffNum, 0, sizeof(coeffNum) * sizeof(uint8_t));
680
    memset(coeffSign, 0, sizeof(coeffNum) * sizeof(uint16_t));
681
    memset(coeffFlag, 0, sizeof(coeffNum) * sizeof(uint16_t));
682
#endif
683
49.6k
    const int lastScanPos = primitives.scanPosLast(codeParams.scan, dstCoeff, coeffSign, coeffFlag, coeffNum, numSig, g_scan4x4[codeParams.scanType], trSize);
684
49.6k
    const int cgLastScanPos = (lastScanPos >> LOG2_SCAN_SET_SIZE);
685
686
687
    /* TODO: update bit estimates if dirty */
688
49.6k
    EstBitsSbac& estBitsSbac = m_entropyCoder->m_estBitsSbac;
689
690
49.6k
    uint32_t scanPos = 0;
691
49.6k
    uint32_t c1 = 1;
692
693
    // process trail all zero Coeff Group
694
695
    /* coefficients after lastNZ have no distortion signal cost */
696
49.6k
    const int zeroCG = cgNum - 1 - cgLastScanPos;
697
49.6k
    memset(&costCoeff[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
698
49.6k
    memset(&costSig[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
699
700
    /* sum zero coeff (uncodec) cost */
701
702
    // TODO: does we need these cost?
703
49.6k
    if (usePsyMask)
704
20.8k
    {
705
298k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
706
277k
        {
707
277k
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
708
277k
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
709
277k
            uint32_t blkPos      = codeParams.scan[scanPosBase];
710
277k
#if X265_ARCH_X86
711
277k
            bool enable512 = detect512();
712
277k
            if (enable512)
713
0
                primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
714
277k
            else
715
277k
            {
716
277k
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff,  costUncoded, &totalUncodedCost, &totalRdCost,blkPos);
717
277k
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
718
277k
            }
719
#else
720
            primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
721
            primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
722
#endif
723
277k
        }
724
20.8k
    }
725
28.8k
    else
726
28.8k
    {
727
        // non-psy path
728
127k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
729
99.0k
        {
730
99.0k
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
731
99.0k
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
732
99.0k
            uint32_t blkPos      = codeParams.scan[scanPosBase];
733
99.0k
            primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
734
99.0k
        }
735
28.8k
    }
736
49.6k
    static const uint8_t table_cnt[5][SCAN_SET_SIZE] =
737
49.6k
    {
738
        // patternSigCtx = 0
739
49.6k
        {
740
49.6k
            2, 1, 1, 0,
741
49.6k
            1, 1, 0, 0,
742
49.6k
            1, 0, 0, 0,
743
49.6k
            0, 0, 0, 0,
744
49.6k
        },
745
        // patternSigCtx = 1
746
49.6k
        {
747
49.6k
            2, 2, 2, 2,
748
49.6k
            1, 1, 1, 1,
749
49.6k
            0, 0, 0, 0,
750
49.6k
            0, 0, 0, 0,
751
49.6k
        },
752
        // patternSigCtx = 2
753
49.6k
        {
754
49.6k
            2, 1, 0, 0,
755
49.6k
            2, 1, 0, 0,
756
49.6k
            2, 1, 0, 0,
757
49.6k
            2, 1, 0, 0,
758
49.6k
        },
759
        // patternSigCtx = 3
760
49.6k
        {
761
49.6k
            2, 2, 2, 2,
762
49.6k
            2, 2, 2, 2,
763
49.6k
            2, 2, 2, 2,
764
49.6k
            2, 2, 2, 2,
765
49.6k
        },
766
        // 4x4
767
49.6k
        {
768
49.6k
            0, 1, 4, 5,
769
49.6k
            2, 3, 4, 5,
770
49.6k
            6, 6, 8, 8,
771
49.6k
            7, 7, 8, 8
772
49.6k
        }
773
49.6k
    };
774
775
    /* iterate over coding groups in reverse scan order */
776
98.6k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0; cgScanPos--)
777
48.9k
    {
778
48.9k
        uint32_t ctxSet = (cgScanPos && bIsLuma) ? 2 : 0;
779
48.9k
        const uint32_t cgBlkPos = codeParams.scanCG[cgScanPos];
780
48.9k
        const uint32_t cgPosY   = cgBlkPos >> log2TrSizeCG;
781
48.9k
        const uint32_t cgPosX   = cgBlkPos & ((1 << log2TrSizeCG) - 1);
782
48.9k
        const uint64_t cgBlkPosMask = ((uint64_t)1 << cgBlkPos);
783
48.9k
        const int patternSigCtx = calcPatternSigCtx(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
784
48.9k
        const int ctxSigOffset = codeParams.firstSignificanceMapContext + (cgScanPos && bIsLuma ? 3 : 0);
785
786
48.9k
        if (c1 == 0)
787
0
            ctxSet++;
788
48.9k
        c1 = 1;
789
790
48.9k
        if (cgScanPos && (coeffNum[cgScanPos] == 0))
791
0
        {
792
            // TODO: does we need zero-coeff cost?
793
0
            const uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
794
0
            uint32_t blkPos = codeParams.scan[scanPosBase];
795
0
            if (usePsyMask)
796
0
            {
797
0
#if X265_ARCH_X86
798
0
                bool enable512 = detect512();
799
0
                if (enable512)
800
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
801
0
                else
802
0
                {
803
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
804
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
805
0
                }
806
#else
807
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
808
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
809
#endif
810
0
                blkPos = codeParams.scan[scanPosBase];
811
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
812
0
                {
813
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
814
0
                    {
815
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
816
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
817
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
818
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
819
820
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
821
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
822
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
823
0
                    }
824
0
                    blkPos += trSize;
825
0
                }
826
0
            }
827
0
            else
828
0
            {
829
                // non-psy path
830
0
                primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
831
0
                blkPos = codeParams.scan[scanPosBase];
832
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
833
0
                {
834
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
835
0
                    {
836
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
837
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
838
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
839
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
840
841
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
842
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
843
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
844
0
                    }
845
0
                    blkPos += trSize;
846
0
                }
847
0
            }
848
849
            /* there were no coded coefficients in this coefficient group */
850
0
            {
851
0
                uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
852
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
853
0
                totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
854
0
            }
855
0
            continue;
856
0
        }
857
858
48.9k
        coeffGroupRDStats cgRdStats;
859
48.9k
        memset(&cgRdStats, 0, sizeof(coeffGroupRDStats));
860
861
48.9k
        uint32_t subFlagMask = coeffFlag[cgScanPos];
862
48.9k
        int    c2            = 0;
863
48.9k
        uint32_t goRiceParam = 0;
864
48.9k
        uint32_t levelThreshold = 3;
865
48.9k
        uint32_t c1Idx       = 0;
866
48.9k
        uint32_t c2Idx       = 0;
867
        /* iterate over coefficients in each group in reverse scan order */
868
831k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
869
782k
        {
870
782k
            scanPos              = (cgScanPos << MLS_CG_SIZE) + scanPosinCG;
871
782k
            uint32_t blkPos      = codeParams.scan[scanPos];
872
782k
            uint32_t maxAbsLevel = dstCoeff[blkPos];                  /* abs(quantized coeff) */
873
782k
            int signCoef         = m_resiDctCoeff[blkPos];            /* pre-quantization DCT coeff */
874
782k
            int predictedCoef    = m_fencDctCoeff[blkPos] - signCoef; /* predicted DCT = source DCT - residual DCT*/
875
876
            /* RDOQ measures distortion as the squared difference between the unquantized coded level
877
             * and the original DCT coefficient. The result is shifted scaleBits to account for the
878
             * FIX15 nature of the CABAC cost tables minus the forward transform scale */
879
880
            /* cost of not coding this coefficient (all distortion, no signal bits) */
881
782k
            costUncoded[blkPos] = ((int64_t)signCoef * signCoef) << scaleBits;
882
782k
            X265_CHECK((!!scanPos ^ !!blkPos) == 0, "failed on (blkPos=0 && scanPos!=0)\n");
883
782k
            if (usePsyMask & scanPos)
884
                /* when no residual coefficient is coded, predicted coef == recon coef */
885
312k
                costUncoded[blkPos] -= PSYVALUE(predictedCoef);
886
887
782k
            totalUncodedCost += costUncoded[blkPos];
888
889
            // coefficient level estimation
890
782k
            const int* greaterOneBits = estBitsSbac.greaterOneBits[4 * ctxSet + c1];
891
            //const uint32_t ctxSig = (blkPos == 0) ? 0 : table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset;
892
782k
            static const uint64_t table_cnt64[4] = {0x0000000100110112ULL, 0x0000000011112222ULL, 0x0012001200120012ULL, 0x2222222222222222ULL};
893
782k
            uint64_t ctxCnt = (trSize == 4) ? 0x8877886654325410ULL : table_cnt64[patternSigCtx];
894
782k
            const uint32_t ctxSig = (blkPos == 0) ? 0 : ((ctxCnt >> (4 * g_scan4x4[codeParams.scanType][scanPosinCG])) & 0xF) + ctxSigOffset;
895
            // NOTE: above equal to 'table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset'
896
782k
            X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, blkPos, bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
897
898
            // before find lastest non-zero coeff
899
782k
            if (scanPos > (uint32_t)lastScanPos)
900
665k
            {
901
                /* coefficients after lastNZ have no distortion signal cost */
902
665k
                costCoeff[scanPos] = 0;
903
665k
                costSig[scanPos] = 0;
904
905
                /* No non-zero coefficient yet found, but this does not mean
906
                 * there is no uncoded-cost for this coefficient. Pre-
907
                 * quantization the coefficient may have been non-zero */
908
665k
                totalRdCost += costUncoded[blkPos];
909
665k
            }
910
117k
            else if (!(subFlagMask & 1))
911
1.81k
            {
912
                // fast zero coeff path
913
                /* set default costs to uncoded costs */
914
1.81k
                costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
915
1.81k
                costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
916
1.81k
                sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
917
1.81k
                totalRdCost += costCoeff[scanPos];
918
1.81k
                rateIncUp[blkPos] = greaterOneBits[0];
919
920
1.81k
                subFlagMask >>= 1;
921
1.81k
            }
922
115k
            else
923
115k
            {
924
115k
                subFlagMask >>= 1;
925
926
115k
                const uint32_t c1c2idx = ((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)) + (((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1) * 2;
927
115k
                const uint32_t baseLevel = ((uint32_t)0xD9 >> (c1c2idx * 2)) & 3;  // {1, 2, 1, 3}
928
929
115k
                X265_CHECK(!!((int)c1Idx < C1FLAG_NUMBER) == (int)((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)), "scan validation 1\n");
930
115k
                X265_CHECK(!!(c2Idx == 0) == ((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1, "scan validation 2\n");
931
115k
                X265_CHECK((int)baseLevel == ((c1Idx < C1FLAG_NUMBER) ? (2 + (c2Idx == 0)) : 1), "scan validation 3\n");
932
115k
                X265_CHECK(c1c2idx <= 3, "c1c2Idx check failure\n");
933
934
                // coefficient level estimation
935
115k
                const int* levelAbsBits = estBitsSbac.levelAbsBits[ctxSet + c2];
936
115k
                const uint32_t c1c2Rate = ((c1c2idx & 1) ?  greaterOneBits[1] : 0) + ((c1c2idx == 3) ? levelAbsBits[1] : 0);
937
938
115k
                uint32_t level = 0;
939
115k
                uint32_t sigCoefBits = 0;
940
115k
                costCoeff[scanPos] = MAX_INT64;
941
942
115k
                if ((int)scanPos == lastScanPos)
943
48.9k
                    sigRateDelta[blkPos] = 0;
944
66.6k
                else
945
66.6k
                {
946
66.6k
                    if (maxAbsLevel < 3)
947
15.5k
                    {
948
                        /* set default costs to uncoded costs */
949
15.5k
                        costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
950
15.5k
                        costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
951
15.5k
                    }
952
66.6k
                    sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
953
66.6k
                    sigCoefBits = estBitsSbac.significantBits[1][ctxSig];
954
66.6k
                }
955
956
115k
                const uint32_t unQuantLevel = (maxAbsLevel * (unquantScale[blkPos] << per) + unquantRound);
957
                // NOTE: X265_MAX(maxAbsLevel - 1, 1) ==> (X>=2 -> X-1), (X<2 -> 1)  | (0 < X < 2 ==> X=1)
958
115k
                if (maxAbsLevel == 1)
959
24.5k
                {
960
24.5k
                    uint32_t levelBits = (c1c2idx & 1) ? greaterOneBits[0] + IEP_RATE : ((1 + goRiceParam) << 15) + IEP_RATE;
961
24.5k
                    X265_CHECK(levelBits == getICRateCost(1, 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE, "levelBits mistake\n");
962
963
24.5k
                    int unquantAbsLevel = unQuantLevel >> unquantShift;
964
24.5k
                    X265_CHECK(UNQUANT(1) == unquantAbsLevel, "DQuant check failed\n");
965
24.5k
                    int d = abs(signCoef) - unquantAbsLevel;
966
24.5k
                    int64_t curCost = RDCOST(d, sigCoefBits + levelBits);
967
968
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
969
24.5k
                    if (usePsyMask & scanPos)
970
12.1k
                    {
971
12.1k
                        int reconCoef = abs(unquantAbsLevel + SIGN(predictedCoef, signCoef));
972
12.1k
                        curCost -= PSYVALUE(reconCoef);
973
12.1k
                    }
974
975
24.5k
                    if (curCost < costCoeff[scanPos])
976
23.6k
                    {
977
23.6k
                        level = 1;
978
23.6k
                        costCoeff[scanPos] = curCost;
979
23.6k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
980
23.6k
                    }
981
24.5k
                }
982
91.0k
                else if (maxAbsLevel)
983
91.1k
                {
984
91.1k
                    uint32_t levelBits0 = getICRateCost(maxAbsLevel,     maxAbsLevel     - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
985
91.1k
                    uint32_t levelBits1 = getICRateCost(maxAbsLevel - 1, maxAbsLevel - 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
986
987
91.1k
                    const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
988
989
91.1k
                    const int unquantAbsLevel0 = unQuantLevel >> unquantShift;
990
91.1k
                    X265_CHECK(UNQUANT(maxAbsLevel) == (uint32_t)unquantAbsLevel0, "DQuant check failed\n");
991
91.1k
                    int d0 = abs(signCoef) - unquantAbsLevel0;
992
91.1k
                    int64_t curCost0 = RDCOST(d0, sigCoefBits + levelBits0);
993
994
91.1k
                    const int unquantAbsLevel1 = (unQuantLevel - preDQuantLevelDiff) >> unquantShift;
995
91.1k
                    X265_CHECK(UNQUANT(maxAbsLevel - 1) == (uint32_t)unquantAbsLevel1, "DQuant check failed\n");
996
91.1k
                    int d1 = abs(signCoef) - unquantAbsLevel1;
997
91.1k
                    int64_t curCost1 = RDCOST(d1, sigCoefBits + levelBits1);
998
999
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
1000
91.1k
                    if (usePsyMask & scanPos)
1001
54.7k
                    {
1002
54.7k
                        int reconCoef;
1003
54.7k
                        reconCoef = abs(unquantAbsLevel0 + SIGN(predictedCoef, signCoef));
1004
54.7k
                        curCost0 -= PSYVALUE(reconCoef);
1005
1006
54.7k
                        reconCoef = abs(unquantAbsLevel1 + SIGN(predictedCoef, signCoef));
1007
54.7k
                        curCost1 -= PSYVALUE(reconCoef);
1008
54.7k
                    }
1009
91.1k
                    if (curCost0 < costCoeff[scanPos])
1010
91.1k
                    {
1011
91.1k
                        level = maxAbsLevel;
1012
91.1k
                        costCoeff[scanPos] = curCost0;
1013
91.1k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1014
91.1k
                    }
1015
91.1k
                    if (curCost1 < costCoeff[scanPos])
1016
1.53k
                    {
1017
1.53k
                        level = maxAbsLevel - 1;
1018
1.53k
                        costCoeff[scanPos] = curCost1;
1019
1.53k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1020
1.53k
                    }
1021
91.1k
                }
1022
1023
115k
                dstCoeff[blkPos] = (int16_t)level;
1024
115k
                totalRdCost += costCoeff[scanPos];
1025
1026
                /* record costs for sign-hiding performed at the end */
1027
18.4E
                if ((cu.m_slice->m_pps->bSignHideEnabled ? ~0 : 0) & level)
1028
114k
                {
1029
114k
                    const int32_t diff0 = level - 1 - baseLevel;
1030
114k
                    const int32_t diff2 = level + 1 - baseLevel;
1031
114k
                    const int32_t maxVlc = g_goRiceRange[goRiceParam];
1032
114k
                    int rate0, rate1, rate2;
1033
1034
114k
                    if (diff0 < -2)  // prob (92.9, 86.5, 74.5)%
1035
22.5k
                    {
1036
                        // NOTE: Min: L - 1 - {1,2,1,3} < -2 ==> L < {0,1,0,2}
1037
                        //            additional L > 0, so I got (L > 0 && L < 2) ==> L = 1
1038
22.5k
                        X265_CHECK(level == 1, "absLevel check failure\n");
1039
1040
22.5k
                        const int rateEqual2 = greaterOneBits[1] + levelAbsBits[0];;
1041
22.5k
                        const int rateNotEqual2 = greaterOneBits[0];
1042
1043
22.5k
                        rate0 = 0;
1044
22.5k
                        rate2 = rateEqual2;
1045
22.5k
                        rate1 = rateNotEqual2;
1046
1047
22.5k
                        X265_CHECK(rate1 == getICRateNegDiff(level + 0, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1048
22.5k
                        X265_CHECK(rate2 == getICRateNegDiff(level + 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1049
22.5k
                        X265_CHECK(rate0 == getICRateNegDiff(level - 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1050
22.5k
                    }
1051
92.2k
                    else if (diff0 >= 0 && diff2 <= maxVlc)     // prob except from above path (98.6, 97.9, 96.9)%
1052
38.0k
                    {
1053
                        // NOTE: no c1c2 correct rate since all of rate include this factor
1054
38.0k
                        rate1 = getICRateLessVlc(level + 0, diff0 + 1, goRiceParam);
1055
38.0k
                        rate2 = getICRateLessVlc(level + 1, diff0 + 2, goRiceParam);
1056
38.0k
                        rate0 = getICRateLessVlc(level - 1, diff0 + 0, goRiceParam);
1057
38.0k
                    }
1058
54.2k
                    else
1059
54.2k
                    {
1060
54.2k
                        rate1 = getICRate(level + 0, diff0 + 1, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1061
54.2k
                        rate2 = getICRate(level + 1, diff0 + 2, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1062
54.2k
                        rate0 = getICRate(level - 1, diff0 + 0, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1063
54.2k
                    }
1064
114k
                    rateIncUp[blkPos] = rate2 - rate1;
1065
114k
                    rateIncDown[blkPos] = rate0 - rate1;
1066
114k
                }
1067
833
                else
1068
833
                {
1069
833
                    rateIncUp[blkPos] = greaterOneBits[0];
1070
833
                    rateIncDown[blkPos] = 0;
1071
833
                }
1072
1073
                /* Update CABAC estimation state */
1074
115k
                if ((level >= baseLevel) && (goRiceParam < 4) && (level > levelThreshold))
1075
48.8k
                {
1076
48.8k
                    goRiceParam++;
1077
48.8k
                    levelThreshold <<= 1;
1078
48.8k
                }
1079
1080
115k
                const uint32_t isNonZero = (uint32_t)(-(int32_t)level) >> 31;
1081
115k
                c1Idx += isNonZero;
1082
1083
                /* update bin model */
1084
115k
                if (level > 1)
1085
90.4k
                {
1086
90.4k
                    c1 = 0;
1087
90.4k
                    c2 += (uint32_t)(c2 - 2) >> 31;
1088
90.4k
                    c2Idx++;
1089
90.4k
                }
1090
25.2k
                else if (((c1 == 1) | (c1 == 2)) & isNonZero)
1091
19.3k
                    c1++;
1092
1093
115k
                if (dstCoeff[blkPos])
1094
114k
                {
1095
114k
                    sigCoeffGroupFlag64 |= cgBlkPosMask;
1096
114k
                    cgRdStats.codedLevelAndDist += costCoeff[scanPos] - costSig[scanPos];
1097
114k
                    cgRdStats.uncodedDist += costUncoded[blkPos];
1098
114k
                    cgRdStats.nnzBeforePos0 += scanPosinCG;
1099
114k
                }
1100
115k
            }
1101
1102
782k
            cgRdStats.sigCost += costSig[scanPos];
1103
782k
        } /* end for (scanPosinCG) */
1104
1105
48.9k
        X265_CHECK((cgScanPos << MLS_CG_SIZE) == (int)scanPos, "scanPos mistake\n");
1106
48.9k
        cgRdStats.sigCost0 = costSig[scanPos];
1107
1108
48.9k
        costCoeffGroupSig[cgScanPos] = 0;
1109
1110
        /* nothing to do at this case */
1111
48.9k
        X265_CHECK(cgLastScanPos >= 0, "cgLastScanPos check failure\n");
1112
1113
48.9k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1114
48.9k
        {
1115
            /* coeff group 0 is implied to be present, no signal cost */
1116
            /* coeff group with last NZ is implied to be present, handled below */
1117
48.9k
        }
1118
0
        else if (sigCoeffGroupFlag64 & cgBlkPosMask)
1119
0
        {
1120
0
            if (!cgRdStats.nnzBeforePos0)
1121
0
            {
1122
                /* if only coeff 0 in this CG is coded, its significant coeff bit is implied */
1123
0
                totalRdCost -= cgRdStats.sigCost0;
1124
0
                cgRdStats.sigCost -= cgRdStats.sigCost0;
1125
0
            }
1126
1127
            /* there are coded coefficients in this group, but now we include the signaling cost
1128
             * of the significant coefficient group flag and evaluate whether the RD cost of the
1129
             * coded group is more than the RD cost of the uncoded group */
1130
1131
0
            uint32_t sigCtx = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1132
1133
0
            int64_t costZeroCG = totalRdCost + SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1134
0
            costZeroCG += cgRdStats.uncodedDist;       /* add distortion for resetting non-zero levels to zero levels */
1135
0
            costZeroCG -= cgRdStats.codedLevelAndDist; /* remove distortion and level cost of coded coefficients */
1136
0
            costZeroCG -= cgRdStats.sigCost;           /* remove signaling cost of significant coeff bitmap */
1137
1138
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][1]);
1139
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add the cost of 1 bit in significant CG bitmap */
1140
1141
0
            if (costZeroCG < totalRdCost && m_rdoqLevel > 1)
1142
0
            {
1143
0
                sigCoeffGroupFlag64 &= ~cgBlkPosMask;
1144
0
                totalRdCost = costZeroCG;
1145
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1146
1147
                /* reset all coeffs to 0. UNCODE THIS COEFF GROUP! */
1148
0
                const uint32_t blkPos = codeParams.scan[cgScanPos * cgSize];
1149
0
                memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1150
0
                memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1151
0
                memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1152
0
                memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1153
0
            }
1154
0
        }
1155
0
        else
1156
0
        {
1157
            /* there were no coded coefficients in this coefficient group */
1158
0
            uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1159
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
1160
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
1161
0
            totalRdCost -= cgRdStats.sigCost;             /* remove cost of significant coefficient bitmap */
1162
0
        }
1163
48.9k
    } /* end for (cgScanPos) */
1164
1165
49.6k
    X265_CHECK(lastScanPos >= 0, "numSig non zero, but no coded CG\n");
1166
1167
    /* calculate RD cost of uncoded block CBF=0, and add cost of CBF=1 to total */
1168
49.6k
    int64_t bestCost;
1169
49.6k
    if (!cu.isIntra(absPartIdx) && bIsLuma && !cu.m_tuDepth[absPartIdx])
1170
0
    {
1171
0
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockRootCbpBits[0]);
1172
0
        totalRdCost += SIGCOST(estBitsSbac.blockRootCbpBits[1]);
1173
0
    }
1174
49.6k
    else
1175
49.6k
    {
1176
49.6k
        int ctx = ctxCbf[ttype][cu.m_tuDepth[absPartIdx]];
1177
49.6k
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockCbpBits[ctx][0]);
1178
49.6k
        totalRdCost += SIGCOST(estBitsSbac.blockCbpBits[ctx][1]);
1179
49.6k
    }
1180
1181
    /* This loop starts with the last non-zero found in the first loop and then refines this last
1182
     * non-zero by measuring the true RD cost of the last NZ at this position, and then the RD costs
1183
     * at all previous coefficients until a coefficient greater than 1 is encountered or we run out
1184
     * of coefficients to evaluate.  This will factor in the cost of coding empty groups and empty
1185
     * coeff prior to the last NZ. The base best cost is the RD cost of CBF=0 */
1186
49.6k
    int  bestLastIdx = 0;
1187
49.6k
    bool foundLast = false;
1188
98.6k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0 && !foundLast; cgScanPos--)
1189
48.9k
    {
1190
48.9k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1191
48.9k
        {
1192
            /* the presence of these coefficient groups are inferred, they have no bit in
1193
             * sigCoeffGroupFlag64 and no saved costCoeffGroupSig[] cost */
1194
48.9k
        }
1195
0
        else if (sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[cgScanPos]))
1196
0
        {
1197
            /* remove cost of significant coeff group flag, the group's presence would be inferred
1198
             * from lastNZ if it were present in this group */
1199
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1200
0
        }
1201
0
        else
1202
0
        {
1203
            /* remove cost of signaling this empty group as not present */
1204
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1205
0
            continue;
1206
0
        }
1207
1208
738k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
1209
726k
        {
1210
726k
            scanPos = cgScanPos * cgSize + scanPosinCG;
1211
726k
            if ((int)scanPos > lastScanPos)
1212
665k
                continue;
1213
1214
            /* if the coefficient was coded, measure the RD cost of it as the last non-zero and then
1215
             * continue as if it were uncoded. If the coefficient was already uncoded, remove the
1216
             * cost of signaling it as not-significant */
1217
60.6k
            uint32_t blkPos = codeParams.scan[scanPos];
1218
60.6k
            if (dstCoeff[blkPos])
1219
58.8k
            {
1220
                // Calculates the cost of signaling the last significant coefficient in the block 
1221
58.8k
                uint32_t pos[2] = { (blkPos & (trSize - 1)), (blkPos >> log2TrSize) };
1222
58.8k
                if (codeParams.scanType == SCAN_VER)
1223
4.36k
                    std::swap(pos[0], pos[1]);
1224
58.8k
                uint32_t bitsLastNZ = 0;
1225
1226
176k
                for (int i = 0; i < 2; i++)
1227
117k
                {
1228
117k
                    int temp = g_lastCoeffTable[pos[i]];
1229
117k
                    int prefixOnes = temp & 15;
1230
117k
                    int suffixLen = temp >> 4;
1231
1232
117k
                    bitsLastNZ += m_entropyCoder->m_estBitsSbac.lastBits[i][prefixOnes];
1233
117k
                    bitsLastNZ += IEP_RATE * suffixLen;
1234
117k
                }
1235
1236
58.8k
                int64_t costAsLast = totalRdCost - costSig[scanPos] + SIGCOST(bitsLastNZ);
1237
1238
58.8k
                if (costAsLast < bestCost)
1239
41.3k
                {
1240
41.3k
                    bestLastIdx = scanPos + 1;
1241
41.3k
                    bestCost = costAsLast;
1242
41.3k
                }
1243
58.8k
                if (dstCoeff[blkPos] > 1 || m_rdoqLevel == 1)
1244
36.3k
                {
1245
36.3k
                    foundLast = true;
1246
36.3k
                    break;
1247
36.3k
                }
1248
1249
22.5k
                totalRdCost -= costCoeff[scanPos];
1250
22.5k
                totalRdCost += costUncoded[blkPos];
1251
22.5k
            }
1252
1.79k
            else
1253
1.79k
                totalRdCost -= costSig[scanPos];
1254
60.6k
        }
1255
48.9k
    }
1256
1257
    /* recount non-zero coefficients and re-apply sign of DCT coef */
1258
49.6k
    numSig = 0;
1259
155k
    for (int pos = 0; pos < bestLastIdx; pos++)
1260
105k
    {
1261
105k
        int blkPos = codeParams.scan[pos];
1262
105k
        int level  = dstCoeff[blkPos];
1263
105k
        numSig += (level != 0);
1264
1265
105k
        uint32_t mask = (int32_t)m_resiDctCoeff[blkPos] >> 31;
1266
105k
        dstCoeff[blkPos] = (int16_t)((level ^ mask) - mask);
1267
105k
    }
1268
1269
    // Average 49.62 pixels
1270
    /* clean uncoded coefficients */
1271
49.6k
    X265_CHECK((uint32_t)(fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)) < trSize * trSize, "array beyond bound\n");
1272
726k
    for (int pos = bestLastIdx; pos <= (fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)); pos++)
1273
677k
    {
1274
677k
        dstCoeff[codeParams.scan[pos]] = 0;
1275
677k
    }
1276
49.6k
    for (int pos = (bestLastIdx & ~(SCAN_SET_SIZE - 1)) + SCAN_SET_SIZE; pos <= lastScanPos; pos += SCAN_SET_SIZE)
1277
0
    {
1278
0
        const uint32_t blkPos = codeParams.scan[pos];
1279
0
        memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1280
0
        memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1281
0
        memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1282
0
        memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1283
0
    }
1284
1285
    /* rate-distortion based sign-hiding */
1286
49.6k
    if (cu.m_slice->m_pps->bSignHideEnabled && numSig >= 2)
1287
5.31k
    {
1288
5.31k
        const int realLastScanPos = (bestLastIdx - 1) >> LOG2_SCAN_SET_SIZE;
1289
5.31k
        int lastCG = 1;
1290
1291
10.6k
        for (int subSet = realLastScanPos; subSet >= 0; subSet--)
1292
5.31k
        {
1293
5.31k
            int subPos = subSet << LOG2_SCAN_SET_SIZE;
1294
5.31k
            int n;
1295
1296
5.31k
            if (!(sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[subSet])))
1297
0
                continue;
1298
1299
            /* measure distance between first and last non-zero coef in this
1300
             * coding group */
1301
5.31k
            const uint32_t posFirstLast = primitives.findPosFirstLast(&dstCoeff[codeParams.scan[subPos]], trSize, g_scan4x4[codeParams.scanType]);
1302
5.31k
            const int firstNZPosInCG = (uint8_t)posFirstLast;
1303
5.31k
            const int lastNZPosInCG = (int8_t)(posFirstLast >> 8);
1304
5.31k
            const uint32_t absSumSign = posFirstLast;
1305
1306
5.31k
            if (lastNZPosInCG - firstNZPosInCG >= SBH_THRESHOLD)
1307
5.11k
            {
1308
5.11k
                const int32_t signbit = ((int32_t)dstCoeff[codeParams.scan[subPos + firstNZPosInCG]]);
1309
1310
#if CHECKED_BUILD || _DEBUG
1311
                int32_t absSum_dummy = 0;
1312
                for (n = firstNZPosInCG; n <= lastNZPosInCG; n++)
1313
                    absSum_dummy += dstCoeff[codeParams.scan[n + subPos]];
1314
                X265_CHECK(((uint32_t)absSum_dummy & 1) == (absSumSign >> 31), "absSumSign check failure\n");
1315
#endif
1316
1317
                //if (signbit != absSumSign)
1318
5.11k
                if (((int32_t)(signbit ^ absSumSign)) < 0)
1319
2.16k
                {
1320
                    /* We must find a coeff to toggle up or down so the sign bit of the first non-zero coeff
1321
                     * is properly implied. Note dstCoeff[] are signed by this point but curChange and
1322
                     * finalChange imply absolute levels (+1 is away from zero, -1 is towards zero) */
1323
1324
2.16k
                    int64_t minCostInc = MAX_INT64, curCost = MAX_INT64;
1325
2.16k
                    uint32_t minPos = 0;
1326
2.16k
                    int8_t finalChange = 0;
1327
2.16k
                    int curChange = 0;
1328
2.16k
                    uint32_t lastCoeffAdjust = (lastCG & (abs(dstCoeff[codeParams.scan[lastNZPosInCG + subPos]]) == 1)) * 4 * IEP_RATE;
1329
1330
30.0k
                    for (n = (lastCG ? lastNZPosInCG : SCAN_SET_SIZE - 1); n >= 0; --n)
1331
27.9k
                    {
1332
27.9k
                        const uint32_t blkPos = codeParams.scan[n + subPos];
1333
27.9k
                        const int32_t signCoef = m_resiDctCoeff[blkPos]; /* pre-quantization DCT coeff */
1334
27.9k
                        const int absLevel = abs(dstCoeff[blkPos]);
1335
                        // TODO: this is constant in non-scaling mode
1336
27.9k
                        const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
1337
27.9k
                        const uint32_t unQuantLevel = (absLevel * (unquantScale[blkPos] << per) + unquantRound);
1338
1339
27.9k
                        int d = abs(signCoef) - (unQuantLevel >> unquantShift);
1340
27.9k
                        X265_CHECK((uint32_t)UNQUANT(absLevel) == (unQuantLevel >> unquantShift), "dquant check failed\n");
1341
1342
27.9k
                        const int64_t origDist = (((int64_t)d * d));
1343
1344
54.7k
#define DELTARDCOST(d0, d, deltabits) ((((int64_t)d * d - d0) << scaleBits) + ((lambda2 * (int64_t)(deltabits)) >> 8))
1345
1346
27.9k
                        const uint32_t isOne = (absLevel == 1);
1347
27.9k
                        if (dstCoeff[blkPos])
1348
26.8k
                        {
1349
26.8k
                            d = abs(signCoef) - ((unQuantLevel + preDQuantLevelDiff) >> unquantShift);
1350
26.8k
                            X265_CHECK((uint32_t)UNQUANT(absLevel + 1) == ((unQuantLevel + preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1351
26.8k
                            int64_t costUp = DELTARDCOST(origDist, d, rateIncUp[blkPos]);
1352
1353
                            /* if decrementing would make the coeff 0, we can include the
1354
                             * significant coeff flag cost savings */
1355
26.8k
                            d = abs(signCoef) - ((unQuantLevel - preDQuantLevelDiff) >> unquantShift);
1356
26.8k
                            X265_CHECK((uint32_t)UNQUANT(absLevel - 1) == ((unQuantLevel - preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1357
26.8k
                            int downBits = rateIncDown[blkPos] - (isOne ? (IEP_RATE + sigRateDelta[blkPos]) : 0);
1358
26.8k
                            int64_t costDown = DELTARDCOST(origDist, d, downBits);
1359
1360
26.8k
                            costDown -= lastCoeffAdjust;
1361
26.8k
                            curCost = ((n == firstNZPosInCG) & isOne) ? MAX_INT64 : costDown;
1362
1363
26.8k
                            curChange = 2 * (costUp < costDown) - 1;
1364
26.8k
                            curCost = (costUp < costDown) ? costUp : curCost;
1365
26.8k
                        }
1366
                        //else if ((n < firstNZPosInCG) & (signbit != ((uint32_t)signCoef >> 31)))
1367
1.03k
                        else if ((n < firstNZPosInCG) & ((signbit ^ signCoef) < 0))
1368
0
                        {
1369
                            /* don't try to make a new coded coeff before the first coeff if its
1370
                             * sign would be different than the first coeff, the inferred sign would
1371
                             * still be wrong and we'd have to do this again. */
1372
0
                            curCost = MAX_INT64;
1373
0
                        }
1374
1.03k
                        else
1375
1.03k
                        {
1376
                            /* evaluate changing an uncoded coeff 0 to a coded coeff +/-1 */
1377
1.03k
                            d = abs(signCoef) - ((preDQuantLevelDiff + unquantRound) >> unquantShift);
1378
1.03k
                            X265_CHECK((uint32_t)UNQUANT(1) == ((preDQuantLevelDiff + unquantRound) >> unquantShift), "dquant check failed\n");
1379
1.03k
                            curCost = DELTARDCOST(origDist, d, rateIncUp[blkPos] + IEP_RATE + sigRateDelta[blkPos]);
1380
1.03k
                            curChange = 1;
1381
1.03k
                        }
1382
1383
27.9k
                        if (curCost < minCostInc)
1384
8.01k
                        {
1385
8.01k
                            minCostInc = curCost;
1386
8.01k
                            finalChange = (int8_t)curChange;
1387
8.01k
                            minPos = blkPos + (absLevel << 16);
1388
8.01k
                        }
1389
27.9k
                        lastCoeffAdjust = 0;
1390
27.9k
                    }
1391
1392
2.16k
                    const int absInMinPos = (minPos >> 16);
1393
2.16k
                    minPos = (uint16_t)minPos;
1394
1395
                    // if (dstCoeff[minPos] == 32767 || dstCoeff[minPos] == -32768)
1396
2.16k
                    if (absInMinPos >= 32767)
1397
                        /* don't allow sign hiding to violate the SPEC range */
1398
0
                        finalChange = -1;
1399
1400
                    // NOTE: Reference code
1401
                    //if (dstCoeff[minPos] == 0)
1402
                    //    numSig++;
1403
                    //else if (finalChange == -1 && abs(dstCoeff[minPos]) == 1)
1404
                    //    numSig--;
1405
2.16k
                    numSig += (absInMinPos == 0) - ((finalChange == -1) & (absInMinPos == 1));
1406
1407
1408
                    // NOTE: Reference code
1409
                    //if (m_resiDctCoeff[minPos] >= 0)
1410
                    //    dstCoeff[minPos] += finalChange;
1411
                    //else
1412
                    //    dstCoeff[minPos] -= finalChange;
1413
2.16k
                    const int16_t resiCoeffSign = ((int16_t)m_resiDctCoeff[minPos] >> 16);
1414
2.16k
                    dstCoeff[minPos] += (((int16_t)finalChange ^ resiCoeffSign) - resiCoeffSign);
1415
2.16k
                }
1416
5.11k
            }
1417
1418
5.31k
            lastCG = 0;
1419
5.31k
        }
1420
5.31k
    }
1421
1422
49.6k
    return numSig;
1423
8.18M
}
unsigned int x265::Quant::rdoQuant<2u>(x265::CUData const&, short*, x265::TextType, unsigned int, bool)
Line
Count
Source
611
6.77M
{
612
6.77M
    const int transformShift = MAX_TR_DYNAMIC_RANGE - X265_DEPTH - log2TrSize; /* Represents scaling through forward transform */
613
6.77M
    int scalingListType = (cu.isIntra(absPartIdx) ? 0 : 3) + ttype;
614
6.77M
    const uint32_t usePsyMask = usePsy ? -1 : 0;
615
616
6.77M
    X265_CHECK(scalingListType < 6, "scaling list type out of range\n");
617
618
6.77M
    int rem = m_qpParam[ttype].rem;
619
6.77M
    int per = m_qpParam[ttype].per;
620
6.77M
    int qbits = QUANT_SHIFT + per + transformShift; /* Right shift of non-RDOQ quantizer level = (coeff*Q + offset)>>q_bits */
621
6.77M
    int add = (1 << (qbits - 1));
622
6.77M
    const int32_t* qCoef = m_scalingList->m_quantCoef[log2TrSize - 2][scalingListType][rem];
623
624
6.77M
    const int numCoeff = 1 << (log2TrSize * 2);
625
6.77M
    uint32_t numSig = primitives.nquant(m_resiDctCoeff, qCoef, dstCoeff, qbits, add, numCoeff);
626
6.77M
    X265_CHECK((int)numSig == primitives.cu[log2TrSize - 2].count_nonzero(dstCoeff), "numSig differ\n");
627
6.77M
    if (!numSig)
628
6.75M
        return 0;
629
18.3k
    const uint32_t trSize = 1 << log2TrSize;
630
18.3k
    int64_t lambda2 = m_qpParam[ttype].lambda2;
631
18.3k
    int64_t psyScale = ((int64_t)m_psyRdoqScale * m_qpParam[ttype].lambda);
632
    /* unquant constants for measuring distortion. Scaling list quant coefficients have a (1 << 4)
633
     * scale applied that must be removed during unquant. Note that in real dequant there is clipping
634
     * at several stages. We skip the clipping for simplicity when measuring RD cost */
635
18.3k
    const int32_t* unquantScale = m_scalingList->m_dequantCoef[log2TrSize - 2][scalingListType][rem];
636
18.3k
    int unquantShift = QUANT_IQUANT_SHIFT - QUANT_SHIFT - transformShift + (m_scalingList->m_bEnabled ? 4 : 0);
637
18.3k
    int unquantRound = (unquantShift > per) ? 1 << (unquantShift - per - 1) : 0;
638
18.3k
    const int scaleBits = SCALE_BITS - 2 * transformShift;
639
640
18.3k
#define UNQUANT(lvl)    (((lvl) * (unquantScale[blkPos] << per) + unquantRound) >> unquantShift)
641
18.3k
#define SIGCOST(bits)   ((lambda2 * (bits)) >> 8)
642
18.3k
#define RDCOST(d, bits) ((((int64_t)d * d) << scaleBits) + SIGCOST(bits))
643
18.3k
#define PSYVALUE(rec)   ((psyScale * (rec)) >> X265_MAX(0, (2 * transformShift + 1)))
644
645
18.3k
    int64_t costCoeff[trSize * trSize];   /* d*d + lambda * bits */
646
18.3k
    int64_t costUncoded[trSize * trSize]; /* d*d + lambda * 0    */
647
18.3k
    int64_t costSig[trSize * trSize];     /* lambda * bits       */
648
649
18.3k
    int rateIncUp[trSize * trSize];      /* signal overhead of increasing level */
650
18.3k
    int rateIncDown[trSize * trSize];    /* signal overhead of decreasing level */
651
18.3k
    int sigRateDelta[trSize * trSize];   /* signal difference between zero and non-zero */
652
653
18.3k
    int64_t costCoeffGroupSig[MLS_GRP_NUM]; /* lambda * bits of group coding cost */
654
18.3k
    uint64_t sigCoeffGroupFlag64 = 0;
655
656
18.3k
    const uint32_t cgSize = (1 << MLS_CG_SIZE); /* 4x4 num coef = 16 */
657
18.3k
    bool bIsLuma = ttype == TEXT_LUMA;
658
659
    /* total rate distortion cost of transform block, as CBF=0 */
660
18.3k
    int64_t totalUncodedCost = 0;
661
662
    /* Total rate distortion cost of this transform block, counting te distortion of uncoded blocks,
663
     * the distortion and signal cost of coded blocks, and the coding cost of significant
664
     * coefficient and coefficient group bitmaps */
665
18.3k
    int64_t totalRdCost = 0;
666
667
18.3k
    TUEntropyCodingParameters codeParams;
668
18.3k
    cu.getTUEntropyCodingParameters(codeParams, absPartIdx, log2TrSize, bIsLuma);
669
18.3k
    const uint32_t log2TrSizeCG = log2TrSize - 2;
670
18.3k
    const uint32_t cgNum = 1 << (log2TrSizeCG * 2);
671
18.3k
    const uint32_t cgStride = (trSize >> MLS_CG_LOG2_SIZE);
672
673
18.3k
    uint8_t coeffNum[MLS_GRP_NUM];      // value range[0, 16]
674
18.3k
    uint16_t coeffSign[MLS_GRP_NUM];    // bit mask map for non-zero coeff sign
675
18.3k
    uint16_t coeffFlag[MLS_GRP_NUM];    // bit mask map for non-zero coeff
676
677
#if CHECKED_BUILD || _DEBUG
678
    // clean output buffer, the asm version of scanPosLast Never output anything after latest non-zero coeff group
679
    memset(coeffNum, 0, sizeof(coeffNum) * sizeof(uint8_t));
680
    memset(coeffSign, 0, sizeof(coeffNum) * sizeof(uint16_t));
681
    memset(coeffFlag, 0, sizeof(coeffNum) * sizeof(uint16_t));
682
#endif
683
18.3k
    const int lastScanPos = primitives.scanPosLast(codeParams.scan, dstCoeff, coeffSign, coeffFlag, coeffNum, numSig, g_scan4x4[codeParams.scanType], trSize);
684
18.3k
    const int cgLastScanPos = (lastScanPos >> LOG2_SCAN_SET_SIZE);
685
686
687
    /* TODO: update bit estimates if dirty */
688
18.3k
    EstBitsSbac& estBitsSbac = m_entropyCoder->m_estBitsSbac;
689
690
18.3k
    uint32_t scanPos = 0;
691
18.3k
    uint32_t c1 = 1;
692
693
    // process trail all zero Coeff Group
694
695
    /* coefficients after lastNZ have no distortion signal cost */
696
18.3k
    const int zeroCG = cgNum - 1 - cgLastScanPos;
697
18.3k
    memset(&costCoeff[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
698
18.3k
    memset(&costSig[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
699
700
    /* sum zero coeff (uncodec) cost */
701
702
    // TODO: does we need these cost?
703
18.3k
    if (usePsyMask)
704
6.51k
    {
705
6.51k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
706
0
        {
707
0
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
708
0
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
709
0
            uint32_t blkPos      = codeParams.scan[scanPosBase];
710
0
#if X265_ARCH_X86
711
0
            bool enable512 = detect512();
712
0
            if (enable512)
713
0
                primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
714
0
            else
715
0
            {
716
0
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff,  costUncoded, &totalUncodedCost, &totalRdCost,blkPos);
717
0
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
718
0
            }
719
#else
720
            primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
721
            primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
722
#endif
723
0
        }
724
6.51k
    }
725
11.8k
    else
726
11.8k
    {
727
        // non-psy path
728
11.8k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
729
0
        {
730
0
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
731
0
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
732
0
            uint32_t blkPos      = codeParams.scan[scanPosBase];
733
0
            primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
734
0
        }
735
11.8k
    }
736
18.3k
    static const uint8_t table_cnt[5][SCAN_SET_SIZE] =
737
18.3k
    {
738
        // patternSigCtx = 0
739
18.3k
        {
740
18.3k
            2, 1, 1, 0,
741
18.3k
            1, 1, 0, 0,
742
18.3k
            1, 0, 0, 0,
743
18.3k
            0, 0, 0, 0,
744
18.3k
        },
745
        // patternSigCtx = 1
746
18.3k
        {
747
18.3k
            2, 2, 2, 2,
748
18.3k
            1, 1, 1, 1,
749
18.3k
            0, 0, 0, 0,
750
18.3k
            0, 0, 0, 0,
751
18.3k
        },
752
        // patternSigCtx = 2
753
18.3k
        {
754
18.3k
            2, 1, 0, 0,
755
18.3k
            2, 1, 0, 0,
756
18.3k
            2, 1, 0, 0,
757
18.3k
            2, 1, 0, 0,
758
18.3k
        },
759
        // patternSigCtx = 3
760
18.3k
        {
761
18.3k
            2, 2, 2, 2,
762
18.3k
            2, 2, 2, 2,
763
18.3k
            2, 2, 2, 2,
764
18.3k
            2, 2, 2, 2,
765
18.3k
        },
766
        // 4x4
767
18.3k
        {
768
18.3k
            0, 1, 4, 5,
769
18.3k
            2, 3, 4, 5,
770
18.3k
            6, 6, 8, 8,
771
18.3k
            7, 7, 8, 8
772
18.3k
        }
773
18.3k
    };
774
775
    /* iterate over coding groups in reverse scan order */
776
35.8k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0; cgScanPos--)
777
17.4k
    {
778
17.4k
        uint32_t ctxSet = (cgScanPos && bIsLuma) ? 2 : 0;
779
17.4k
        const uint32_t cgBlkPos = codeParams.scanCG[cgScanPos];
780
17.4k
        const uint32_t cgPosY   = cgBlkPos >> log2TrSizeCG;
781
17.4k
        const uint32_t cgPosX   = cgBlkPos & ((1 << log2TrSizeCG) - 1);
782
17.4k
        const uint64_t cgBlkPosMask = ((uint64_t)1 << cgBlkPos);
783
17.4k
        const int patternSigCtx = calcPatternSigCtx(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
784
17.4k
        const int ctxSigOffset = codeParams.firstSignificanceMapContext + (cgScanPos && bIsLuma ? 3 : 0);
785
786
17.4k
        if (c1 == 0)
787
0
            ctxSet++;
788
17.4k
        c1 = 1;
789
790
17.4k
        if (cgScanPos && (coeffNum[cgScanPos] == 0))
791
0
        {
792
            // TODO: does we need zero-coeff cost?
793
0
            const uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
794
0
            uint32_t blkPos = codeParams.scan[scanPosBase];
795
0
            if (usePsyMask)
796
0
            {
797
0
#if X265_ARCH_X86
798
0
                bool enable512 = detect512();
799
0
                if (enable512)
800
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
801
0
                else
802
0
                {
803
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
804
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
805
0
                }
806
#else
807
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
808
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
809
#endif
810
0
                blkPos = codeParams.scan[scanPosBase];
811
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
812
0
                {
813
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
814
0
                    {
815
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
816
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
817
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
818
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
819
820
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
821
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
822
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
823
0
                    }
824
0
                    blkPos += trSize;
825
0
                }
826
0
            }
827
0
            else
828
0
            {
829
                // non-psy path
830
0
                primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
831
0
                blkPos = codeParams.scan[scanPosBase];
832
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
833
0
                {
834
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
835
0
                    {
836
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
837
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
838
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
839
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
840
841
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
842
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
843
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
844
0
                    }
845
0
                    blkPos += trSize;
846
0
                }
847
0
            }
848
849
            /* there were no coded coefficients in this coefficient group */
850
0
            {
851
0
                uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
852
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
853
0
                totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
854
0
            }
855
0
            continue;
856
0
        }
857
858
17.4k
        coeffGroupRDStats cgRdStats;
859
17.4k
        memset(&cgRdStats, 0, sizeof(coeffGroupRDStats));
860
861
17.4k
        uint32_t subFlagMask = coeffFlag[cgScanPos];
862
17.4k
        int    c2            = 0;
863
17.4k
        uint32_t goRiceParam = 0;
864
17.4k
        uint32_t levelThreshold = 3;
865
17.4k
        uint32_t c1Idx       = 0;
866
17.4k
        uint32_t c2Idx       = 0;
867
        /* iterate over coefficients in each group in reverse scan order */
868
297k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
869
279k
        {
870
279k
            scanPos              = (cgScanPos << MLS_CG_SIZE) + scanPosinCG;
871
279k
            uint32_t blkPos      = codeParams.scan[scanPos];
872
279k
            uint32_t maxAbsLevel = dstCoeff[blkPos];                  /* abs(quantized coeff) */
873
279k
            int signCoef         = m_resiDctCoeff[blkPos];            /* pre-quantization DCT coeff */
874
279k
            int predictedCoef    = m_fencDctCoeff[blkPos] - signCoef; /* predicted DCT = source DCT - residual DCT*/
875
876
            /* RDOQ measures distortion as the squared difference between the unquantized coded level
877
             * and the original DCT coefficient. The result is shifted scaleBits to account for the
878
             * FIX15 nature of the CABAC cost tables minus the forward transform scale */
879
880
            /* cost of not coding this coefficient (all distortion, no signal bits) */
881
279k
            costUncoded[blkPos] = ((int64_t)signCoef * signCoef) << scaleBits;
882
279k
            X265_CHECK((!!scanPos ^ !!blkPos) == 0, "failed on (blkPos=0 && scanPos!=0)\n");
883
279k
            if (usePsyMask & scanPos)
884
                /* when no residual coefficient is coded, predicted coef == recon coef */
885
97.6k
                costUncoded[blkPos] -= PSYVALUE(predictedCoef);
886
887
279k
            totalUncodedCost += costUncoded[blkPos];
888
889
            // coefficient level estimation
890
279k
            const int* greaterOneBits = estBitsSbac.greaterOneBits[4 * ctxSet + c1];
891
            //const uint32_t ctxSig = (blkPos == 0) ? 0 : table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset;
892
279k
            static const uint64_t table_cnt64[4] = {0x0000000100110112ULL, 0x0000000011112222ULL, 0x0012001200120012ULL, 0x2222222222222222ULL};
893
279k
            uint64_t ctxCnt = (trSize == 4) ? 0x8877886654325410ULL : table_cnt64[patternSigCtx];
894
279k
            const uint32_t ctxSig = (blkPos == 0) ? 0 : ((ctxCnt >> (4 * g_scan4x4[codeParams.scanType][scanPosinCG])) & 0xF) + ctxSigOffset;
895
            // NOTE: above equal to 'table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset'
896
279k
            X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, blkPos, bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
897
898
            // before find lastest non-zero coeff
899
279k
            if (scanPos > (uint32_t)lastScanPos)
900
193k
            {
901
                /* coefficients after lastNZ have no distortion signal cost */
902
193k
                costCoeff[scanPos] = 0;
903
193k
                costSig[scanPos] = 0;
904
905
                /* No non-zero coefficient yet found, but this does not mean
906
                 * there is no uncoded-cost for this coefficient. Pre-
907
                 * quantization the coefficient may have been non-zero */
908
193k
                totalRdCost += costUncoded[blkPos];
909
193k
            }
910
86.0k
            else if (!(subFlagMask & 1))
911
1.81k
            {
912
                // fast zero coeff path
913
                /* set default costs to uncoded costs */
914
1.81k
                costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
915
1.81k
                costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
916
1.81k
                sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
917
1.81k
                totalRdCost += costCoeff[scanPos];
918
1.81k
                rateIncUp[blkPos] = greaterOneBits[0];
919
920
1.81k
                subFlagMask >>= 1;
921
1.81k
            }
922
84.2k
            else
923
84.2k
            {
924
84.2k
                subFlagMask >>= 1;
925
926
84.2k
                const uint32_t c1c2idx = ((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)) + (((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1) * 2;
927
84.2k
                const uint32_t baseLevel = ((uint32_t)0xD9 >> (c1c2idx * 2)) & 3;  // {1, 2, 1, 3}
928
929
84.2k
                X265_CHECK(!!((int)c1Idx < C1FLAG_NUMBER) == (int)((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)), "scan validation 1\n");
930
84.2k
                X265_CHECK(!!(c2Idx == 0) == ((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1, "scan validation 2\n");
931
84.2k
                X265_CHECK((int)baseLevel == ((c1Idx < C1FLAG_NUMBER) ? (2 + (c2Idx == 0)) : 1), "scan validation 3\n");
932
84.2k
                X265_CHECK(c1c2idx <= 3, "c1c2Idx check failure\n");
933
934
                // coefficient level estimation
935
84.2k
                const int* levelAbsBits = estBitsSbac.levelAbsBits[ctxSet + c2];
936
84.2k
                const uint32_t c1c2Rate = ((c1c2idx & 1) ?  greaterOneBits[1] : 0) + ((c1c2idx == 3) ? levelAbsBits[1] : 0);
937
938
84.2k
                uint32_t level = 0;
939
84.2k
                uint32_t sigCoefBits = 0;
940
84.2k
                costCoeff[scanPos] = MAX_INT64;
941
942
84.2k
                if ((int)scanPos == lastScanPos)
943
17.4k
                    sigRateDelta[blkPos] = 0;
944
66.7k
                else
945
66.7k
                {
946
66.7k
                    if (maxAbsLevel < 3)
947
15.5k
                    {
948
                        /* set default costs to uncoded costs */
949
15.5k
                        costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
950
15.5k
                        costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
951
15.5k
                    }
952
66.7k
                    sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
953
66.7k
                    sigCoefBits = estBitsSbac.significantBits[1][ctxSig];
954
66.7k
                }
955
956
84.2k
                const uint32_t unQuantLevel = (maxAbsLevel * (unquantScale[blkPos] << per) + unquantRound);
957
                // NOTE: X265_MAX(maxAbsLevel - 1, 1) ==> (X>=2 -> X-1), (X<2 -> 1)  | (0 < X < 2 ==> X=1)
958
84.2k
                if (maxAbsLevel == 1)
959
13.7k
                {
960
13.7k
                    uint32_t levelBits = (c1c2idx & 1) ? greaterOneBits[0] + IEP_RATE : ((1 + goRiceParam) << 15) + IEP_RATE;
961
13.7k
                    X265_CHECK(levelBits == getICRateCost(1, 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE, "levelBits mistake\n");
962
963
13.7k
                    int unquantAbsLevel = unQuantLevel >> unquantShift;
964
13.7k
                    X265_CHECK(UNQUANT(1) == unquantAbsLevel, "DQuant check failed\n");
965
13.7k
                    int d = abs(signCoef) - unquantAbsLevel;
966
13.7k
                    int64_t curCost = RDCOST(d, sigCoefBits + levelBits);
967
968
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
969
13.7k
                    if (usePsyMask & scanPos)
970
12.1k
                    {
971
12.1k
                        int reconCoef = abs(unquantAbsLevel + SIGN(predictedCoef, signCoef));
972
12.1k
                        curCost -= PSYVALUE(reconCoef);
973
12.1k
                    }
974
975
13.7k
                    if (curCost < costCoeff[scanPos])
976
12.8k
                    {
977
12.8k
                        level = 1;
978
12.8k
                        costCoeff[scanPos] = curCost;
979
12.8k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
980
12.8k
                    }
981
13.7k
                }
982
70.4k
                else if (maxAbsLevel)
983
70.4k
                {
984
70.4k
                    uint32_t levelBits0 = getICRateCost(maxAbsLevel,     maxAbsLevel     - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
985
70.4k
                    uint32_t levelBits1 = getICRateCost(maxAbsLevel - 1, maxAbsLevel - 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
986
987
70.4k
                    const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
988
989
70.4k
                    const int unquantAbsLevel0 = unQuantLevel >> unquantShift;
990
70.4k
                    X265_CHECK(UNQUANT(maxAbsLevel) == (uint32_t)unquantAbsLevel0, "DQuant check failed\n");
991
70.4k
                    int d0 = abs(signCoef) - unquantAbsLevel0;
992
70.4k
                    int64_t curCost0 = RDCOST(d0, sigCoefBits + levelBits0);
993
994
70.4k
                    const int unquantAbsLevel1 = (unQuantLevel - preDQuantLevelDiff) >> unquantShift;
995
70.4k
                    X265_CHECK(UNQUANT(maxAbsLevel - 1) == (uint32_t)unquantAbsLevel1, "DQuant check failed\n");
996
70.4k
                    int d1 = abs(signCoef) - unquantAbsLevel1;
997
70.4k
                    int64_t curCost1 = RDCOST(d1, sigCoefBits + levelBits1);
998
999
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
1000
70.4k
                    if (usePsyMask & scanPos)
1001
54.7k
                    {
1002
54.7k
                        int reconCoef;
1003
54.7k
                        reconCoef = abs(unquantAbsLevel0 + SIGN(predictedCoef, signCoef));
1004
54.7k
                        curCost0 -= PSYVALUE(reconCoef);
1005
1006
54.7k
                        reconCoef = abs(unquantAbsLevel1 + SIGN(predictedCoef, signCoef));
1007
54.7k
                        curCost1 -= PSYVALUE(reconCoef);
1008
54.7k
                    }
1009
70.4k
                    if (curCost0 < costCoeff[scanPos])
1010
70.4k
                    {
1011
70.4k
                        level = maxAbsLevel;
1012
70.4k
                        costCoeff[scanPos] = curCost0;
1013
70.4k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1014
70.4k
                    }
1015
70.4k
                    if (curCost1 < costCoeff[scanPos])
1016
1.40k
                    {
1017
1.40k
                        level = maxAbsLevel - 1;
1018
1.40k
                        costCoeff[scanPos] = curCost1;
1019
1.40k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1020
1.40k
                    }
1021
70.4k
                }
1022
1023
84.2k
                dstCoeff[blkPos] = (int16_t)level;
1024
84.2k
                totalRdCost += costCoeff[scanPos];
1025
1026
                /* record costs for sign-hiding performed at the end */
1027
84.2k
                if ((cu.m_slice->m_pps->bSignHideEnabled ? ~0 : 0) & level)
1028
83.3k
                {
1029
83.3k
                    const int32_t diff0 = level - 1 - baseLevel;
1030
83.3k
                    const int32_t diff2 = level + 1 - baseLevel;
1031
83.3k
                    const int32_t maxVlc = g_goRiceRange[goRiceParam];
1032
83.3k
                    int rate0, rate1, rate2;
1033
1034
83.3k
                    if (diff0 < -2)  // prob (92.9, 86.5, 74.5)%
1035
11.7k
                    {
1036
                        // NOTE: Min: L - 1 - {1,2,1,3} < -2 ==> L < {0,1,0,2}
1037
                        //            additional L > 0, so I got (L > 0 && L < 2) ==> L = 1
1038
11.7k
                        X265_CHECK(level == 1, "absLevel check failure\n");
1039
1040
11.7k
                        const int rateEqual2 = greaterOneBits[1] + levelAbsBits[0];;
1041
11.7k
                        const int rateNotEqual2 = greaterOneBits[0];
1042
1043
11.7k
                        rate0 = 0;
1044
11.7k
                        rate2 = rateEqual2;
1045
11.7k
                        rate1 = rateNotEqual2;
1046
1047
11.7k
                        X265_CHECK(rate1 == getICRateNegDiff(level + 0, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1048
11.7k
                        X265_CHECK(rate2 == getICRateNegDiff(level + 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1049
11.7k
                        X265_CHECK(rate0 == getICRateNegDiff(level - 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1050
11.7k
                    }
1051
71.6k
                    else if (diff0 >= 0 && diff2 <= maxVlc)     // prob except from above path (98.6, 97.9, 96.9)%
1052
38.0k
                    {
1053
                        // NOTE: no c1c2 correct rate since all of rate include this factor
1054
38.0k
                        rate1 = getICRateLessVlc(level + 0, diff0 + 1, goRiceParam);
1055
38.0k
                        rate2 = getICRateLessVlc(level + 1, diff0 + 2, goRiceParam);
1056
38.0k
                        rate0 = getICRateLessVlc(level - 1, diff0 + 0, goRiceParam);
1057
38.0k
                    }
1058
33.5k
                    else
1059
33.5k
                    {
1060
33.5k
                        rate1 = getICRate(level + 0, diff0 + 1, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1061
33.5k
                        rate2 = getICRate(level + 1, diff0 + 2, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1062
33.5k
                        rate0 = getICRate(level - 1, diff0 + 0, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1063
33.5k
                    }
1064
83.3k
                    rateIncUp[blkPos] = rate2 - rate1;
1065
83.3k
                    rateIncDown[blkPos] = rate0 - rate1;
1066
83.3k
                }
1067
873
                else
1068
873
                {
1069
873
                    rateIncUp[blkPos] = greaterOneBits[0];
1070
873
                    rateIncDown[blkPos] = 0;
1071
873
                }
1072
1073
                /* Update CABAC estimation state */
1074
84.2k
                if ((level >= baseLevel) && (goRiceParam < 4) && (level > levelThreshold))
1075
28.2k
                {
1076
28.2k
                    goRiceParam++;
1077
28.2k
                    levelThreshold <<= 1;
1078
28.2k
                }
1079
1080
84.2k
                const uint32_t isNonZero = (uint32_t)(-(int32_t)level) >> 31;
1081
84.2k
                c1Idx += isNonZero;
1082
1083
                /* update bin model */
1084
84.2k
                if (level > 1)
1085
69.7k
                {
1086
69.7k
                    c1 = 0;
1087
69.7k
                    c2 += (uint32_t)(c2 - 2) >> 31;
1088
69.7k
                    c2Idx++;
1089
69.7k
                }
1090
14.4k
                else if (((c1 == 1) | (c1 == 2)) & isNonZero)
1091
8.51k
                    c1++;
1092
1093
84.2k
                if (dstCoeff[blkPos])
1094
83.3k
                {
1095
83.3k
                    sigCoeffGroupFlag64 |= cgBlkPosMask;
1096
83.3k
                    cgRdStats.codedLevelAndDist += costCoeff[scanPos] - costSig[scanPos];
1097
83.3k
                    cgRdStats.uncodedDist += costUncoded[blkPos];
1098
83.3k
                    cgRdStats.nnzBeforePos0 += scanPosinCG;
1099
83.3k
                }
1100
84.2k
            }
1101
1102
279k
            cgRdStats.sigCost += costSig[scanPos];
1103
279k
        } /* end for (scanPosinCG) */
1104
1105
17.4k
        X265_CHECK((cgScanPos << MLS_CG_SIZE) == (int)scanPos, "scanPos mistake\n");
1106
17.4k
        cgRdStats.sigCost0 = costSig[scanPos];
1107
1108
17.4k
        costCoeffGroupSig[cgScanPos] = 0;
1109
1110
        /* nothing to do at this case */
1111
17.4k
        X265_CHECK(cgLastScanPos >= 0, "cgLastScanPos check failure\n");
1112
1113
17.4k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1114
17.4k
        {
1115
            /* coeff group 0 is implied to be present, no signal cost */
1116
            /* coeff group with last NZ is implied to be present, handled below */
1117
17.4k
        }
1118
0
        else if (sigCoeffGroupFlag64 & cgBlkPosMask)
1119
0
        {
1120
0
            if (!cgRdStats.nnzBeforePos0)
1121
0
            {
1122
                /* if only coeff 0 in this CG is coded, its significant coeff bit is implied */
1123
0
                totalRdCost -= cgRdStats.sigCost0;
1124
0
                cgRdStats.sigCost -= cgRdStats.sigCost0;
1125
0
            }
1126
1127
            /* there are coded coefficients in this group, but now we include the signaling cost
1128
             * of the significant coefficient group flag and evaluate whether the RD cost of the
1129
             * coded group is more than the RD cost of the uncoded group */
1130
1131
0
            uint32_t sigCtx = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1132
1133
0
            int64_t costZeroCG = totalRdCost + SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1134
0
            costZeroCG += cgRdStats.uncodedDist;       /* add distortion for resetting non-zero levels to zero levels */
1135
0
            costZeroCG -= cgRdStats.codedLevelAndDist; /* remove distortion and level cost of coded coefficients */
1136
0
            costZeroCG -= cgRdStats.sigCost;           /* remove signaling cost of significant coeff bitmap */
1137
1138
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][1]);
1139
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add the cost of 1 bit in significant CG bitmap */
1140
1141
0
            if (costZeroCG < totalRdCost && m_rdoqLevel > 1)
1142
0
            {
1143
0
                sigCoeffGroupFlag64 &= ~cgBlkPosMask;
1144
0
                totalRdCost = costZeroCG;
1145
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1146
1147
                /* reset all coeffs to 0. UNCODE THIS COEFF GROUP! */
1148
0
                const uint32_t blkPos = codeParams.scan[cgScanPos * cgSize];
1149
0
                memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1150
0
                memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1151
0
                memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1152
0
                memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1153
0
            }
1154
0
        }
1155
0
        else
1156
0
        {
1157
            /* there were no coded coefficients in this coefficient group */
1158
0
            uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1159
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
1160
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
1161
0
            totalRdCost -= cgRdStats.sigCost;             /* remove cost of significant coefficient bitmap */
1162
0
        }
1163
17.4k
    } /* end for (cgScanPos) */
1164
1165
18.3k
    X265_CHECK(lastScanPos >= 0, "numSig non zero, but no coded CG\n");
1166
1167
    /* calculate RD cost of uncoded block CBF=0, and add cost of CBF=1 to total */
1168
18.3k
    int64_t bestCost;
1169
18.3k
    if (!cu.isIntra(absPartIdx) && bIsLuma && !cu.m_tuDepth[absPartIdx])
1170
0
    {
1171
0
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockRootCbpBits[0]);
1172
0
        totalRdCost += SIGCOST(estBitsSbac.blockRootCbpBits[1]);
1173
0
    }
1174
18.3k
    else
1175
18.3k
    {
1176
18.3k
        int ctx = ctxCbf[ttype][cu.m_tuDepth[absPartIdx]];
1177
18.3k
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockCbpBits[ctx][0]);
1178
18.3k
        totalRdCost += SIGCOST(estBitsSbac.blockCbpBits[ctx][1]);
1179
18.3k
    }
1180
1181
    /* This loop starts with the last non-zero found in the first loop and then refines this last
1182
     * non-zero by measuring the true RD cost of the last NZ at this position, and then the RD costs
1183
     * at all previous coefficients until a coefficient greater than 1 is encountered or we run out
1184
     * of coefficients to evaluate.  This will factor in the cost of coding empty groups and empty
1185
     * coeff prior to the last NZ. The base best cost is the RD cost of CBF=0 */
1186
18.3k
    int  bestLastIdx = 0;
1187
18.3k
    bool foundLast = false;
1188
35.8k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0 && !foundLast; cgScanPos--)
1189
17.4k
    {
1190
17.4k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1191
17.4k
        {
1192
            /* the presence of these coefficient groups are inferred, they have no bit in
1193
             * sigCoeffGroupFlag64 and no saved costCoeffGroupSig[] cost */
1194
17.4k
        }
1195
0
        else if (sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[cgScanPos]))
1196
0
        {
1197
            /* remove cost of significant coeff group flag, the group's presence would be inferred
1198
             * from lastNZ if it were present in this group */
1199
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1200
0
        }
1201
0
        else
1202
0
        {
1203
            /* remove cost of signaling this empty group as not present */
1204
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1205
0
            continue;
1206
0
        }
1207
1208
224k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
1209
222k
        {
1210
222k
            scanPos = cgScanPos * cgSize + scanPosinCG;
1211
222k
            if ((int)scanPos > lastScanPos)
1212
193k
                continue;
1213
1214
            /* if the coefficient was coded, measure the RD cost of it as the last non-zero and then
1215
             * continue as if it were uncoded. If the coefficient was already uncoded, remove the
1216
             * cost of signaling it as not-significant */
1217
29.2k
            uint32_t blkPos = codeParams.scan[scanPos];
1218
29.2k
            if (dstCoeff[blkPos])
1219
27.4k
            {
1220
                // Calculates the cost of signaling the last significant coefficient in the block 
1221
27.4k
                uint32_t pos[2] = { (blkPos & (trSize - 1)), (blkPos >> log2TrSize) };
1222
27.4k
                if (codeParams.scanType == SCAN_VER)
1223
3.99k
                    std::swap(pos[0], pos[1]);
1224
27.4k
                uint32_t bitsLastNZ = 0;
1225
1226
82.3k
                for (int i = 0; i < 2; i++)
1227
54.8k
                {
1228
54.8k
                    int temp = g_lastCoeffTable[pos[i]];
1229
54.8k
                    int prefixOnes = temp & 15;
1230
54.8k
                    int suffixLen = temp >> 4;
1231
1232
54.8k
                    bitsLastNZ += m_entropyCoder->m_estBitsSbac.lastBits[i][prefixOnes];
1233
54.8k
                    bitsLastNZ += IEP_RATE * suffixLen;
1234
54.8k
                }
1235
1236
27.4k
                int64_t costAsLast = totalRdCost - costSig[scanPos] + SIGCOST(bitsLastNZ);
1237
1238
27.4k
                if (costAsLast < bestCost)
1239
18.3k
                {
1240
18.3k
                    bestLastIdx = scanPos + 1;
1241
18.3k
                    bestCost = costAsLast;
1242
18.3k
                }
1243
27.4k
                if (dstCoeff[blkPos] > 1 || m_rdoqLevel == 1)
1244
15.7k
                {
1245
15.7k
                    foundLast = true;
1246
15.7k
                    break;
1247
15.7k
                }
1248
1249
11.7k
                totalRdCost -= costCoeff[scanPos];
1250
11.7k
                totalRdCost += costUncoded[blkPos];
1251
11.7k
            }
1252
1.82k
            else
1253
1.82k
                totalRdCost -= costSig[scanPos];
1254
29.2k
        }
1255
17.4k
    }
1256
1257
    /* recount non-zero coefficients and re-apply sign of DCT coef */
1258
18.3k
    numSig = 0;
1259
101k
    for (int pos = 0; pos < bestLastIdx; pos++)
1260
82.9k
    {
1261
82.9k
        int blkPos = codeParams.scan[pos];
1262
82.9k
        int level  = dstCoeff[blkPos];
1263
82.9k
        numSig += (level != 0);
1264
1265
82.9k
        uint32_t mask = (int32_t)m_resiDctCoeff[blkPos] >> 31;
1266
82.9k
        dstCoeff[blkPos] = (int16_t)((level ^ mask) - mask);
1267
82.9k
    }
1268
1269
    // Average 49.62 pixels
1270
    /* clean uncoded coefficients */
1271
18.3k
    X265_CHECK((uint32_t)(fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)) < trSize * trSize, "array beyond bound\n");
1272
215k
    for (int pos = bestLastIdx; pos <= (fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)); pos++)
1273
196k
    {
1274
196k
        dstCoeff[codeParams.scan[pos]] = 0;
1275
196k
    }
1276
18.3k
    for (int pos = (bestLastIdx & ~(SCAN_SET_SIZE - 1)) + SCAN_SET_SIZE; pos <= lastScanPos; pos += SCAN_SET_SIZE)
1277
0
    {
1278
0
        const uint32_t blkPos = codeParams.scan[pos];
1279
0
        memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1280
0
        memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1281
0
        memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1282
0
        memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1283
0
    }
1284
1285
    /* rate-distortion based sign-hiding */
1286
18.3k
    if (cu.m_slice->m_pps->bSignHideEnabled && numSig >= 2)
1287
5.31k
    {
1288
5.31k
        const int realLastScanPos = (bestLastIdx - 1) >> LOG2_SCAN_SET_SIZE;
1289
5.31k
        int lastCG = 1;
1290
1291
10.6k
        for (int subSet = realLastScanPos; subSet >= 0; subSet--)
1292
5.31k
        {
1293
5.31k
            int subPos = subSet << LOG2_SCAN_SET_SIZE;
1294
5.31k
            int n;
1295
1296
5.31k
            if (!(sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[subSet])))
1297
0
                continue;
1298
1299
            /* measure distance between first and last non-zero coef in this
1300
             * coding group */
1301
5.31k
            const uint32_t posFirstLast = primitives.findPosFirstLast(&dstCoeff[codeParams.scan[subPos]], trSize, g_scan4x4[codeParams.scanType]);
1302
5.31k
            const int firstNZPosInCG = (uint8_t)posFirstLast;
1303
5.31k
            const int lastNZPosInCG = (int8_t)(posFirstLast >> 8);
1304
5.31k
            const uint32_t absSumSign = posFirstLast;
1305
1306
5.31k
            if (lastNZPosInCG - firstNZPosInCG >= SBH_THRESHOLD)
1307
5.11k
            {
1308
5.11k
                const int32_t signbit = ((int32_t)dstCoeff[codeParams.scan[subPos + firstNZPosInCG]]);
1309
1310
#if CHECKED_BUILD || _DEBUG
1311
                int32_t absSum_dummy = 0;
1312
                for (n = firstNZPosInCG; n <= lastNZPosInCG; n++)
1313
                    absSum_dummy += dstCoeff[codeParams.scan[n + subPos]];
1314
                X265_CHECK(((uint32_t)absSum_dummy & 1) == (absSumSign >> 31), "absSumSign check failure\n");
1315
#endif
1316
1317
                //if (signbit != absSumSign)
1318
5.11k
                if (((int32_t)(signbit ^ absSumSign)) < 0)
1319
2.16k
                {
1320
                    /* We must find a coeff to toggle up or down so the sign bit of the first non-zero coeff
1321
                     * is properly implied. Note dstCoeff[] are signed by this point but curChange and
1322
                     * finalChange imply absolute levels (+1 is away from zero, -1 is towards zero) */
1323
1324
2.16k
                    int64_t minCostInc = MAX_INT64, curCost = MAX_INT64;
1325
2.16k
                    uint32_t minPos = 0;
1326
2.16k
                    int8_t finalChange = 0;
1327
2.16k
                    int curChange = 0;
1328
2.16k
                    uint32_t lastCoeffAdjust = (lastCG & (abs(dstCoeff[codeParams.scan[lastNZPosInCG + subPos]]) == 1)) * 4 * IEP_RATE;
1329
1330
30.0k
                    for (n = (lastCG ? lastNZPosInCG : SCAN_SET_SIZE - 1); n >= 0; --n)
1331
27.9k
                    {
1332
27.9k
                        const uint32_t blkPos = codeParams.scan[n + subPos];
1333
27.9k
                        const int32_t signCoef = m_resiDctCoeff[blkPos]; /* pre-quantization DCT coeff */
1334
27.9k
                        const int absLevel = abs(dstCoeff[blkPos]);
1335
                        // TODO: this is constant in non-scaling mode
1336
27.9k
                        const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
1337
27.9k
                        const uint32_t unQuantLevel = (absLevel * (unquantScale[blkPos] << per) + unquantRound);
1338
1339
27.9k
                        int d = abs(signCoef) - (unQuantLevel >> unquantShift);
1340
27.9k
                        X265_CHECK((uint32_t)UNQUANT(absLevel) == (unQuantLevel >> unquantShift), "dquant check failed\n");
1341
1342
27.9k
                        const int64_t origDist = (((int64_t)d * d));
1343
1344
27.9k
#define DELTARDCOST(d0, d, deltabits) ((((int64_t)d * d - d0) << scaleBits) + ((lambda2 * (int64_t)(deltabits)) >> 8))
1345
1346
27.9k
                        const uint32_t isOne = (absLevel == 1);
1347
27.9k
                        if (dstCoeff[blkPos])
1348
26.8k
                        {
1349
26.8k
                            d = abs(signCoef) - ((unQuantLevel + preDQuantLevelDiff) >> unquantShift);
1350
26.8k
                            X265_CHECK((uint32_t)UNQUANT(absLevel + 1) == ((unQuantLevel + preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1351
26.8k
                            int64_t costUp = DELTARDCOST(origDist, d, rateIncUp[blkPos]);
1352
1353
                            /* if decrementing would make the coeff 0, we can include the
1354
                             * significant coeff flag cost savings */
1355
26.8k
                            d = abs(signCoef) - ((unQuantLevel - preDQuantLevelDiff) >> unquantShift);
1356
26.8k
                            X265_CHECK((uint32_t)UNQUANT(absLevel - 1) == ((unQuantLevel - preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1357
26.8k
                            int downBits = rateIncDown[blkPos] - (isOne ? (IEP_RATE + sigRateDelta[blkPos]) : 0);
1358
26.8k
                            int64_t costDown = DELTARDCOST(origDist, d, downBits);
1359
1360
26.8k
                            costDown -= lastCoeffAdjust;
1361
26.8k
                            curCost = ((n == firstNZPosInCG) & isOne) ? MAX_INT64 : costDown;
1362
1363
26.8k
                            curChange = 2 * (costUp < costDown) - 1;
1364
26.8k
                            curCost = (costUp < costDown) ? costUp : curCost;
1365
26.8k
                        }
1366
                        //else if ((n < firstNZPosInCG) & (signbit != ((uint32_t)signCoef >> 31)))
1367
1.03k
                        else if ((n < firstNZPosInCG) & ((signbit ^ signCoef) < 0))
1368
0
                        {
1369
                            /* don't try to make a new coded coeff before the first coeff if its
1370
                             * sign would be different than the first coeff, the inferred sign would
1371
                             * still be wrong and we'd have to do this again. */
1372
0
                            curCost = MAX_INT64;
1373
0
                        }
1374
1.03k
                        else
1375
1.03k
                        {
1376
                            /* evaluate changing an uncoded coeff 0 to a coded coeff +/-1 */
1377
1.03k
                            d = abs(signCoef) - ((preDQuantLevelDiff + unquantRound) >> unquantShift);
1378
1.03k
                            X265_CHECK((uint32_t)UNQUANT(1) == ((preDQuantLevelDiff + unquantRound) >> unquantShift), "dquant check failed\n");
1379
1.03k
                            curCost = DELTARDCOST(origDist, d, rateIncUp[blkPos] + IEP_RATE + sigRateDelta[blkPos]);
1380
1.03k
                            curChange = 1;
1381
1.03k
                        }
1382
1383
27.9k
                        if (curCost < minCostInc)
1384
8.01k
                        {
1385
8.01k
                            minCostInc = curCost;
1386
8.01k
                            finalChange = (int8_t)curChange;
1387
8.01k
                            minPos = blkPos + (absLevel << 16);
1388
8.01k
                        }
1389
27.9k
                        lastCoeffAdjust = 0;
1390
27.9k
                    }
1391
1392
2.16k
                    const int absInMinPos = (minPos >> 16);
1393
2.16k
                    minPos = (uint16_t)minPos;
1394
1395
                    // if (dstCoeff[minPos] == 32767 || dstCoeff[minPos] == -32768)
1396
2.16k
                    if (absInMinPos >= 32767)
1397
                        /* don't allow sign hiding to violate the SPEC range */
1398
0
                        finalChange = -1;
1399
1400
                    // NOTE: Reference code
1401
                    //if (dstCoeff[minPos] == 0)
1402
                    //    numSig++;
1403
                    //else if (finalChange == -1 && abs(dstCoeff[minPos]) == 1)
1404
                    //    numSig--;
1405
2.16k
                    numSig += (absInMinPos == 0) - ((finalChange == -1) & (absInMinPos == 1));
1406
1407
1408
                    // NOTE: Reference code
1409
                    //if (m_resiDctCoeff[minPos] >= 0)
1410
                    //    dstCoeff[minPos] += finalChange;
1411
                    //else
1412
                    //    dstCoeff[minPos] -= finalChange;
1413
2.16k
                    const int16_t resiCoeffSign = ((int16_t)m_resiDctCoeff[minPos] >> 16);
1414
2.16k
                    dstCoeff[minPos] += (((int16_t)finalChange ^ resiCoeffSign) - resiCoeffSign);
1415
2.16k
                }
1416
5.11k
            }
1417
1418
5.31k
            lastCG = 0;
1419
5.31k
        }
1420
5.31k
    }
1421
1422
18.3k
    return numSig;
1423
6.77M
}
unsigned int x265::Quant::rdoQuant<3u>(x265::CUData const&, short*, x265::TextType, unsigned int, bool)
Line
Count
Source
611
1.14M
{
612
1.14M
    const int transformShift = MAX_TR_DYNAMIC_RANGE - X265_DEPTH - log2TrSize; /* Represents scaling through forward transform */
613
1.14M
    int scalingListType = (cu.isIntra(absPartIdx) ? 0 : 3) + ttype;
614
1.14M
    const uint32_t usePsyMask = usePsy ? -1 : 0;
615
616
1.14M
    X265_CHECK(scalingListType < 6, "scaling list type out of range\n");
617
618
1.14M
    int rem = m_qpParam[ttype].rem;
619
1.14M
    int per = m_qpParam[ttype].per;
620
1.14M
    int qbits = QUANT_SHIFT + per + transformShift; /* Right shift of non-RDOQ quantizer level = (coeff*Q + offset)>>q_bits */
621
1.14M
    int add = (1 << (qbits - 1));
622
1.14M
    const int32_t* qCoef = m_scalingList->m_quantCoef[log2TrSize - 2][scalingListType][rem];
623
624
1.14M
    const int numCoeff = 1 << (log2TrSize * 2);
625
1.14M
    uint32_t numSig = primitives.nquant(m_resiDctCoeff, qCoef, dstCoeff, qbits, add, numCoeff);
626
1.14M
    X265_CHECK((int)numSig == primitives.cu[log2TrSize - 2].count_nonzero(dstCoeff), "numSig differ\n");
627
1.14M
    if (!numSig)
628
1.12M
        return 0;
629
18.1k
    const uint32_t trSize = 1 << log2TrSize;
630
18.1k
    int64_t lambda2 = m_qpParam[ttype].lambda2;
631
18.1k
    int64_t psyScale = ((int64_t)m_psyRdoqScale * m_qpParam[ttype].lambda);
632
    /* unquant constants for measuring distortion. Scaling list quant coefficients have a (1 << 4)
633
     * scale applied that must be removed during unquant. Note that in real dequant there is clipping
634
     * at several stages. We skip the clipping for simplicity when measuring RD cost */
635
18.1k
    const int32_t* unquantScale = m_scalingList->m_dequantCoef[log2TrSize - 2][scalingListType][rem];
636
18.1k
    int unquantShift = QUANT_IQUANT_SHIFT - QUANT_SHIFT - transformShift + (m_scalingList->m_bEnabled ? 4 : 0);
637
18.1k
    int unquantRound = (unquantShift > per) ? 1 << (unquantShift - per - 1) : 0;
638
18.1k
    const int scaleBits = SCALE_BITS - 2 * transformShift;
639
640
18.1k
#define UNQUANT(lvl)    (((lvl) * (unquantScale[blkPos] << per) + unquantRound) >> unquantShift)
641
18.1k
#define SIGCOST(bits)   ((lambda2 * (bits)) >> 8)
642
18.1k
#define RDCOST(d, bits) ((((int64_t)d * d) << scaleBits) + SIGCOST(bits))
643
18.1k
#define PSYVALUE(rec)   ((psyScale * (rec)) >> X265_MAX(0, (2 * transformShift + 1)))
644
645
18.1k
    int64_t costCoeff[trSize * trSize];   /* d*d + lambda * bits */
646
18.1k
    int64_t costUncoded[trSize * trSize]; /* d*d + lambda * 0    */
647
18.1k
    int64_t costSig[trSize * trSize];     /* lambda * bits       */
648
649
18.1k
    int rateIncUp[trSize * trSize];      /* signal overhead of increasing level */
650
18.1k
    int rateIncDown[trSize * trSize];    /* signal overhead of decreasing level */
651
18.1k
    int sigRateDelta[trSize * trSize];   /* signal difference between zero and non-zero */
652
653
18.1k
    int64_t costCoeffGroupSig[MLS_GRP_NUM]; /* lambda * bits of group coding cost */
654
18.1k
    uint64_t sigCoeffGroupFlag64 = 0;
655
656
18.1k
    const uint32_t cgSize = (1 << MLS_CG_SIZE); /* 4x4 num coef = 16 */
657
18.1k
    bool bIsLuma = ttype == TEXT_LUMA;
658
659
    /* total rate distortion cost of transform block, as CBF=0 */
660
18.1k
    int64_t totalUncodedCost = 0;
661
662
    /* Total rate distortion cost of this transform block, counting te distortion of uncoded blocks,
663
     * the distortion and signal cost of coded blocks, and the coding cost of significant
664
     * coefficient and coefficient group bitmaps */
665
18.1k
    int64_t totalRdCost = 0;
666
667
18.1k
    TUEntropyCodingParameters codeParams;
668
18.1k
    cu.getTUEntropyCodingParameters(codeParams, absPartIdx, log2TrSize, bIsLuma);
669
18.1k
    const uint32_t log2TrSizeCG = log2TrSize - 2;
670
18.1k
    const uint32_t cgNum = 1 << (log2TrSizeCG * 2);
671
18.1k
    const uint32_t cgStride = (trSize >> MLS_CG_LOG2_SIZE);
672
673
18.1k
    uint8_t coeffNum[MLS_GRP_NUM];      // value range[0, 16]
674
18.1k
    uint16_t coeffSign[MLS_GRP_NUM];    // bit mask map for non-zero coeff sign
675
18.1k
    uint16_t coeffFlag[MLS_GRP_NUM];    // bit mask map for non-zero coeff
676
677
#if CHECKED_BUILD || _DEBUG
678
    // clean output buffer, the asm version of scanPosLast Never output anything after latest non-zero coeff group
679
    memset(coeffNum, 0, sizeof(coeffNum) * sizeof(uint8_t));
680
    memset(coeffSign, 0, sizeof(coeffNum) * sizeof(uint16_t));
681
    memset(coeffFlag, 0, sizeof(coeffNum) * sizeof(uint16_t));
682
#endif
683
18.1k
    const int lastScanPos = primitives.scanPosLast(codeParams.scan, dstCoeff, coeffSign, coeffFlag, coeffNum, numSig, g_scan4x4[codeParams.scanType], trSize);
684
18.1k
    const int cgLastScanPos = (lastScanPos >> LOG2_SCAN_SET_SIZE);
685
686
687
    /* TODO: update bit estimates if dirty */
688
18.1k
    EstBitsSbac& estBitsSbac = m_entropyCoder->m_estBitsSbac;
689
690
18.1k
    uint32_t scanPos = 0;
691
18.1k
    uint32_t c1 = 1;
692
693
    // process trail all zero Coeff Group
694
695
    /* coefficients after lastNZ have no distortion signal cost */
696
18.1k
    const int zeroCG = cgNum - 1 - cgLastScanPos;
697
18.1k
    memset(&costCoeff[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
698
18.1k
    memset(&costSig[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
699
700
    /* sum zero coeff (uncodec) cost */
701
702
    // TODO: does we need these cost?
703
18.1k
    if (usePsyMask)
704
5.14k
    {
705
20.5k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
706
15.4k
        {
707
15.4k
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
708
15.4k
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
709
15.4k
            uint32_t blkPos      = codeParams.scan[scanPosBase];
710
15.4k
#if X265_ARCH_X86
711
15.4k
            bool enable512 = detect512();
712
15.4k
            if (enable512)
713
0
                primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
714
15.4k
            else
715
15.4k
            {
716
15.4k
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff,  costUncoded, &totalUncodedCost, &totalRdCost,blkPos);
717
15.4k
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
718
15.4k
            }
719
#else
720
            primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
721
            primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
722
#endif
723
15.4k
        }
724
5.14k
    }
725
13.0k
    else
726
13.0k
    {
727
        // non-psy path
728
52.4k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
729
39.4k
        {
730
39.4k
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
731
39.4k
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
732
39.4k
            uint32_t blkPos      = codeParams.scan[scanPosBase];
733
39.4k
            primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
734
39.4k
        }
735
13.0k
    }
736
18.1k
    static const uint8_t table_cnt[5][SCAN_SET_SIZE] =
737
18.1k
    {
738
        // patternSigCtx = 0
739
18.1k
        {
740
18.1k
            2, 1, 1, 0,
741
18.1k
            1, 1, 0, 0,
742
18.1k
            1, 0, 0, 0,
743
18.1k
            0, 0, 0, 0,
744
18.1k
        },
745
        // patternSigCtx = 1
746
18.1k
        {
747
18.1k
            2, 2, 2, 2,
748
18.1k
            1, 1, 1, 1,
749
18.1k
            0, 0, 0, 0,
750
18.1k
            0, 0, 0, 0,
751
18.1k
        },
752
        // patternSigCtx = 2
753
18.1k
        {
754
18.1k
            2, 1, 0, 0,
755
18.1k
            2, 1, 0, 0,
756
18.1k
            2, 1, 0, 0,
757
18.1k
            2, 1, 0, 0,
758
18.1k
        },
759
        // patternSigCtx = 3
760
18.1k
        {
761
18.1k
            2, 2, 2, 2,
762
18.1k
            2, 2, 2, 2,
763
18.1k
            2, 2, 2, 2,
764
18.1k
            2, 2, 2, 2,
765
18.1k
        },
766
        // 4x4
767
18.1k
        {
768
18.1k
            0, 1, 4, 5,
769
18.1k
            2, 3, 4, 5,
770
18.1k
            6, 6, 8, 8,
771
18.1k
            7, 7, 8, 8
772
18.1k
        }
773
18.1k
    };
774
775
    /* iterate over coding groups in reverse scan order */
776
36.4k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0; cgScanPos--)
777
18.2k
    {
778
18.2k
        uint32_t ctxSet = (cgScanPos && bIsLuma) ? 2 : 0;
779
18.2k
        const uint32_t cgBlkPos = codeParams.scanCG[cgScanPos];
780
18.2k
        const uint32_t cgPosY   = cgBlkPos >> log2TrSizeCG;
781
18.2k
        const uint32_t cgPosX   = cgBlkPos & ((1 << log2TrSizeCG) - 1);
782
18.2k
        const uint64_t cgBlkPosMask = ((uint64_t)1 << cgBlkPos);
783
18.2k
        const int patternSigCtx = calcPatternSigCtx(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
784
18.2k
        const int ctxSigOffset = codeParams.firstSignificanceMapContext + (cgScanPos && bIsLuma ? 3 : 0);
785
786
18.2k
        if (c1 == 0)
787
0
            ctxSet++;
788
18.2k
        c1 = 1;
789
790
18.2k
        if (cgScanPos && (coeffNum[cgScanPos] == 0))
791
0
        {
792
            // TODO: does we need zero-coeff cost?
793
0
            const uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
794
0
            uint32_t blkPos = codeParams.scan[scanPosBase];
795
0
            if (usePsyMask)
796
0
            {
797
0
#if X265_ARCH_X86
798
0
                bool enable512 = detect512();
799
0
                if (enable512)
800
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
801
0
                else
802
0
                {
803
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
804
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
805
0
                }
806
#else
807
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
808
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
809
#endif
810
0
                blkPos = codeParams.scan[scanPosBase];
811
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
812
0
                {
813
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
814
0
                    {
815
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
816
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
817
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
818
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
819
820
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
821
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
822
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
823
0
                    }
824
0
                    blkPos += trSize;
825
0
                }
826
0
            }
827
0
            else
828
0
            {
829
                // non-psy path
830
0
                primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
831
0
                blkPos = codeParams.scan[scanPosBase];
832
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
833
0
                {
834
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
835
0
                    {
836
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
837
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
838
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
839
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
840
841
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
842
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
843
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
844
0
                    }
845
0
                    blkPos += trSize;
846
0
                }
847
0
            }
848
849
            /* there were no coded coefficients in this coefficient group */
850
0
            {
851
0
                uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
852
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
853
0
                totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
854
0
            }
855
0
            continue;
856
0
        }
857
858
18.2k
        coeffGroupRDStats cgRdStats;
859
18.2k
        memset(&cgRdStats, 0, sizeof(coeffGroupRDStats));
860
861
18.2k
        uint32_t subFlagMask = coeffFlag[cgScanPos];
862
18.2k
        int    c2            = 0;
863
18.2k
        uint32_t goRiceParam = 0;
864
18.2k
        uint32_t levelThreshold = 3;
865
18.2k
        uint32_t c1Idx       = 0;
866
18.2k
        uint32_t c2Idx       = 0;
867
        /* iterate over coefficients in each group in reverse scan order */
868
310k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
869
292k
        {
870
292k
            scanPos              = (cgScanPos << MLS_CG_SIZE) + scanPosinCG;
871
292k
            uint32_t blkPos      = codeParams.scan[scanPos];
872
292k
            uint32_t maxAbsLevel = dstCoeff[blkPos];                  /* abs(quantized coeff) */
873
292k
            int signCoef         = m_resiDctCoeff[blkPos];            /* pre-quantization DCT coeff */
874
292k
            int predictedCoef    = m_fencDctCoeff[blkPos] - signCoef; /* predicted DCT = source DCT - residual DCT*/
875
876
            /* RDOQ measures distortion as the squared difference between the unquantized coded level
877
             * and the original DCT coefficient. The result is shifted scaleBits to account for the
878
             * FIX15 nature of the CABAC cost tables minus the forward transform scale */
879
880
            /* cost of not coding this coefficient (all distortion, no signal bits) */
881
292k
            costUncoded[blkPos] = ((int64_t)signCoef * signCoef) << scaleBits;
882
292k
            X265_CHECK((!!scanPos ^ !!blkPos) == 0, "failed on (blkPos=0 && scanPos!=0)\n");
883
292k
            if (usePsyMask & scanPos)
884
                /* when no residual coefficient is coded, predicted coef == recon coef */
885
77.1k
                costUncoded[blkPos] -= PSYVALUE(predictedCoef);
886
887
292k
            totalUncodedCost += costUncoded[blkPos];
888
889
            // coefficient level estimation
890
292k
            const int* greaterOneBits = estBitsSbac.greaterOneBits[4 * ctxSet + c1];
891
            //const uint32_t ctxSig = (blkPos == 0) ? 0 : table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset;
892
292k
            static const uint64_t table_cnt64[4] = {0x0000000100110112ULL, 0x0000000011112222ULL, 0x0012001200120012ULL, 0x2222222222222222ULL};
893
292k
            uint64_t ctxCnt = (trSize == 4) ? 0x8877886654325410ULL : table_cnt64[patternSigCtx];
894
292k
            const uint32_t ctxSig = (blkPos == 0) ? 0 : ((ctxCnt >> (4 * g_scan4x4[codeParams.scanType][scanPosinCG])) & 0xF) + ctxSigOffset;
895
            // NOTE: above equal to 'table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset'
896
292k
            X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, blkPos, bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
897
898
            // before find lastest non-zero coeff
899
292k
            if (scanPos > (uint32_t)lastScanPos)
900
274k
            {
901
                /* coefficients after lastNZ have no distortion signal cost */
902
274k
                costCoeff[scanPos] = 0;
903
274k
                costSig[scanPos] = 0;
904
905
                /* No non-zero coefficient yet found, but this does not mean
906
                 * there is no uncoded-cost for this coefficient. Pre-
907
                 * quantization the coefficient may have been non-zero */
908
274k
                totalRdCost += costUncoded[blkPos];
909
274k
            }
910
18.2k
            else if (!(subFlagMask & 1))
911
0
            {
912
                // fast zero coeff path
913
                /* set default costs to uncoded costs */
914
0
                costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
915
0
                costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
916
0
                sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
917
0
                totalRdCost += costCoeff[scanPos];
918
0
                rateIncUp[blkPos] = greaterOneBits[0];
919
920
0
                subFlagMask >>= 1;
921
0
            }
922
18.2k
            else
923
18.2k
            {
924
18.2k
                subFlagMask >>= 1;
925
926
18.2k
                const uint32_t c1c2idx = ((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)) + (((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1) * 2;
927
18.2k
                const uint32_t baseLevel = ((uint32_t)0xD9 >> (c1c2idx * 2)) & 3;  // {1, 2, 1, 3}
928
929
18.2k
                X265_CHECK(!!((int)c1Idx < C1FLAG_NUMBER) == (int)((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)), "scan validation 1\n");
930
18.2k
                X265_CHECK(!!(c2Idx == 0) == ((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1, "scan validation 2\n");
931
18.2k
                X265_CHECK((int)baseLevel == ((c1Idx < C1FLAG_NUMBER) ? (2 + (c2Idx == 0)) : 1), "scan validation 3\n");
932
18.2k
                X265_CHECK(c1c2idx <= 3, "c1c2Idx check failure\n");
933
934
                // coefficient level estimation
935
18.2k
                const int* levelAbsBits = estBitsSbac.levelAbsBits[ctxSet + c2];
936
18.4E
                const uint32_t c1c2Rate = ((c1c2idx & 1) ?  greaterOneBits[1] : 0) + ((c1c2idx == 3) ? levelAbsBits[1] : 0);
937
938
18.2k
                uint32_t level = 0;
939
18.2k
                uint32_t sigCoefBits = 0;
940
18.2k
                costCoeff[scanPos] = MAX_INT64;
941
942
18.2k
                if ((int)scanPos == lastScanPos)
943
18.2k
                    sigRateDelta[blkPos] = 0;
944
18.4E
                else
945
18.4E
                {
946
18.4E
                    if (maxAbsLevel < 3)
947
0
                    {
948
                        /* set default costs to uncoded costs */
949
0
                        costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
950
0
                        costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
951
0
                    }
952
18.4E
                    sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
953
18.4E
                    sigCoefBits = estBitsSbac.significantBits[1][ctxSig];
954
18.4E
                }
955
956
18.2k
                const uint32_t unQuantLevel = (maxAbsLevel * (unquantScale[blkPos] << per) + unquantRound);
957
                // NOTE: X265_MAX(maxAbsLevel - 1, 1) ==> (X>=2 -> X-1), (X<2 -> 1)  | (0 < X < 2 ==> X=1)
958
18.2k
                if (maxAbsLevel == 1)
959
8.36k
                {
960
8.36k
                    uint32_t levelBits = (c1c2idx & 1) ? greaterOneBits[0] + IEP_RATE : ((1 + goRiceParam) << 15) + IEP_RATE;
961
8.36k
                    X265_CHECK(levelBits == getICRateCost(1, 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE, "levelBits mistake\n");
962
963
8.36k
                    int unquantAbsLevel = unQuantLevel >> unquantShift;
964
8.36k
                    X265_CHECK(UNQUANT(1) == unquantAbsLevel, "DQuant check failed\n");
965
8.36k
                    int d = abs(signCoef) - unquantAbsLevel;
966
8.36k
                    int64_t curCost = RDCOST(d, sigCoefBits + levelBits);
967
968
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
969
8.36k
                    if (usePsyMask & scanPos)
970
0
                    {
971
0
                        int reconCoef = abs(unquantAbsLevel + SIGN(predictedCoef, signCoef));
972
0
                        curCost -= PSYVALUE(reconCoef);
973
0
                    }
974
975
8.36k
                    if (curCost < costCoeff[scanPos])
976
8.36k
                    {
977
8.36k
                        level = 1;
978
8.36k
                        costCoeff[scanPos] = curCost;
979
8.36k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
980
8.36k
                    }
981
8.36k
                }
982
9.88k
                else if (maxAbsLevel)
983
9.92k
                {
984
9.92k
                    uint32_t levelBits0 = getICRateCost(maxAbsLevel,     maxAbsLevel     - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
985
9.92k
                    uint32_t levelBits1 = getICRateCost(maxAbsLevel - 1, maxAbsLevel - 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
986
987
9.92k
                    const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
988
989
9.92k
                    const int unquantAbsLevel0 = unQuantLevel >> unquantShift;
990
9.92k
                    X265_CHECK(UNQUANT(maxAbsLevel) == (uint32_t)unquantAbsLevel0, "DQuant check failed\n");
991
9.92k
                    int d0 = abs(signCoef) - unquantAbsLevel0;
992
9.92k
                    int64_t curCost0 = RDCOST(d0, sigCoefBits + levelBits0);
993
994
9.92k
                    const int unquantAbsLevel1 = (unQuantLevel - preDQuantLevelDiff) >> unquantShift;
995
9.92k
                    X265_CHECK(UNQUANT(maxAbsLevel - 1) == (uint32_t)unquantAbsLevel1, "DQuant check failed\n");
996
9.92k
                    int d1 = abs(signCoef) - unquantAbsLevel1;
997
9.92k
                    int64_t curCost1 = RDCOST(d1, sigCoefBits + levelBits1);
998
999
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
1000
9.92k
                    if (usePsyMask & scanPos)
1001
0
                    {
1002
0
                        int reconCoef;
1003
0
                        reconCoef = abs(unquantAbsLevel0 + SIGN(predictedCoef, signCoef));
1004
0
                        curCost0 -= PSYVALUE(reconCoef);
1005
1006
0
                        reconCoef = abs(unquantAbsLevel1 + SIGN(predictedCoef, signCoef));
1007
0
                        curCost1 -= PSYVALUE(reconCoef);
1008
0
                    }
1009
9.92k
                    if (curCost0 < costCoeff[scanPos])
1010
9.92k
                    {
1011
9.92k
                        level = maxAbsLevel;
1012
9.92k
                        costCoeff[scanPos] = curCost0;
1013
9.92k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1014
9.92k
                    }
1015
9.92k
                    if (curCost1 < costCoeff[scanPos])
1016
0
                    {
1017
0
                        level = maxAbsLevel - 1;
1018
0
                        costCoeff[scanPos] = curCost1;
1019
0
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1020
0
                    }
1021
9.92k
                }
1022
1023
18.2k
                dstCoeff[blkPos] = (int16_t)level;
1024
18.2k
                totalRdCost += costCoeff[scanPos];
1025
1026
                /* record costs for sign-hiding performed at the end */
1027
18.4E
                if ((cu.m_slice->m_pps->bSignHideEnabled ? ~0 : 0) & level)
1028
18.2k
                {
1029
18.2k
                    const int32_t diff0 = level - 1 - baseLevel;
1030
18.2k
                    const int32_t diff2 = level + 1 - baseLevel;
1031
18.2k
                    const int32_t maxVlc = g_goRiceRange[goRiceParam];
1032
18.2k
                    int rate0, rate1, rate2;
1033
1034
18.2k
                    if (diff0 < -2)  // prob (92.9, 86.5, 74.5)%
1035
8.36k
                    {
1036
                        // NOTE: Min: L - 1 - {1,2,1,3} < -2 ==> L < {0,1,0,2}
1037
                        //            additional L > 0, so I got (L > 0 && L < 2) ==> L = 1
1038
8.36k
                        X265_CHECK(level == 1, "absLevel check failure\n");
1039
1040
8.36k
                        const int rateEqual2 = greaterOneBits[1] + levelAbsBits[0];;
1041
8.36k
                        const int rateNotEqual2 = greaterOneBits[0];
1042
1043
8.36k
                        rate0 = 0;
1044
8.36k
                        rate2 = rateEqual2;
1045
8.36k
                        rate1 = rateNotEqual2;
1046
1047
8.36k
                        X265_CHECK(rate1 == getICRateNegDiff(level + 0, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1048
8.36k
                        X265_CHECK(rate2 == getICRateNegDiff(level + 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1049
8.36k
                        X265_CHECK(rate0 == getICRateNegDiff(level - 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1050
8.36k
                    }
1051
9.92k
                    else if (diff0 >= 0 && diff2 <= maxVlc)     // prob except from above path (98.6, 97.9, 96.9)%
1052
0
                    {
1053
                        // NOTE: no c1c2 correct rate since all of rate include this factor
1054
0
                        rate1 = getICRateLessVlc(level + 0, diff0 + 1, goRiceParam);
1055
0
                        rate2 = getICRateLessVlc(level + 1, diff0 + 2, goRiceParam);
1056
0
                        rate0 = getICRateLessVlc(level - 1, diff0 + 0, goRiceParam);
1057
0
                    }
1058
9.92k
                    else
1059
9.92k
                    {
1060
9.92k
                        rate1 = getICRate(level + 0, diff0 + 1, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1061
9.92k
                        rate2 = getICRate(level + 1, diff0 + 2, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1062
9.92k
                        rate0 = getICRate(level - 1, diff0 + 0, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1063
9.92k
                    }
1064
18.2k
                    rateIncUp[blkPos] = rate2 - rate1;
1065
18.2k
                    rateIncDown[blkPos] = rate0 - rate1;
1066
18.2k
                }
1067
18.4E
                else
1068
18.4E
                {
1069
18.4E
                    rateIncUp[blkPos] = greaterOneBits[0];
1070
18.4E
                    rateIncDown[blkPos] = 0;
1071
18.4E
                }
1072
1073
                /* Update CABAC estimation state */
1074
18.2k
                if ((level >= baseLevel) && (goRiceParam < 4) && (level > levelThreshold))
1075
9.92k
                {
1076
9.92k
                    goRiceParam++;
1077
9.92k
                    levelThreshold <<= 1;
1078
9.92k
                }
1079
1080
18.2k
                const uint32_t isNonZero = (uint32_t)(-(int32_t)level) >> 31;
1081
18.2k
                c1Idx += isNonZero;
1082
1083
                /* update bin model */
1084
18.2k
                if (level > 1)
1085
9.92k
                {
1086
9.92k
                    c1 = 0;
1087
9.92k
                    c2 += (uint32_t)(c2 - 2) >> 31;
1088
9.92k
                    c2Idx++;
1089
9.92k
                }
1090
8.32k
                else if (((c1 == 1) | (c1 == 2)) & isNonZero)
1091
8.36k
                    c1++;
1092
1093
18.2k
                if (dstCoeff[blkPos])
1094
18.2k
                {
1095
18.2k
                    sigCoeffGroupFlag64 |= cgBlkPosMask;
1096
18.2k
                    cgRdStats.codedLevelAndDist += costCoeff[scanPos] - costSig[scanPos];
1097
18.2k
                    cgRdStats.uncodedDist += costUncoded[blkPos];
1098
18.2k
                    cgRdStats.nnzBeforePos0 += scanPosinCG;
1099
18.2k
                }
1100
18.2k
            }
1101
1102
292k
            cgRdStats.sigCost += costSig[scanPos];
1103
292k
        } /* end for (scanPosinCG) */
1104
1105
18.2k
        X265_CHECK((cgScanPos << MLS_CG_SIZE) == (int)scanPos, "scanPos mistake\n");
1106
18.2k
        cgRdStats.sigCost0 = costSig[scanPos];
1107
1108
18.2k
        costCoeffGroupSig[cgScanPos] = 0;
1109
1110
        /* nothing to do at this case */
1111
18.2k
        X265_CHECK(cgLastScanPos >= 0, "cgLastScanPos check failure\n");
1112
1113
18.2k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1114
18.2k
        {
1115
            /* coeff group 0 is implied to be present, no signal cost */
1116
            /* coeff group with last NZ is implied to be present, handled below */
1117
18.2k
        }
1118
0
        else if (sigCoeffGroupFlag64 & cgBlkPosMask)
1119
0
        {
1120
0
            if (!cgRdStats.nnzBeforePos0)
1121
0
            {
1122
                /* if only coeff 0 in this CG is coded, its significant coeff bit is implied */
1123
0
                totalRdCost -= cgRdStats.sigCost0;
1124
0
                cgRdStats.sigCost -= cgRdStats.sigCost0;
1125
0
            }
1126
1127
            /* there are coded coefficients in this group, but now we include the signaling cost
1128
             * of the significant coefficient group flag and evaluate whether the RD cost of the
1129
             * coded group is more than the RD cost of the uncoded group */
1130
1131
0
            uint32_t sigCtx = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1132
1133
0
            int64_t costZeroCG = totalRdCost + SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1134
0
            costZeroCG += cgRdStats.uncodedDist;       /* add distortion for resetting non-zero levels to zero levels */
1135
0
            costZeroCG -= cgRdStats.codedLevelAndDist; /* remove distortion and level cost of coded coefficients */
1136
0
            costZeroCG -= cgRdStats.sigCost;           /* remove signaling cost of significant coeff bitmap */
1137
1138
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][1]);
1139
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add the cost of 1 bit in significant CG bitmap */
1140
1141
0
            if (costZeroCG < totalRdCost && m_rdoqLevel > 1)
1142
0
            {
1143
0
                sigCoeffGroupFlag64 &= ~cgBlkPosMask;
1144
0
                totalRdCost = costZeroCG;
1145
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1146
1147
                /* reset all coeffs to 0. UNCODE THIS COEFF GROUP! */
1148
0
                const uint32_t blkPos = codeParams.scan[cgScanPos * cgSize];
1149
0
                memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1150
0
                memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1151
0
                memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1152
0
                memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1153
0
            }
1154
0
        }
1155
0
        else
1156
0
        {
1157
            /* there were no coded coefficients in this coefficient group */
1158
0
            uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1159
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
1160
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
1161
0
            totalRdCost -= cgRdStats.sigCost;             /* remove cost of significant coefficient bitmap */
1162
0
        }
1163
18.2k
    } /* end for (cgScanPos) */
1164
1165
18.1k
    X265_CHECK(lastScanPos >= 0, "numSig non zero, but no coded CG\n");
1166
1167
    /* calculate RD cost of uncoded block CBF=0, and add cost of CBF=1 to total */
1168
18.1k
    int64_t bestCost;
1169
18.1k
    if (!cu.isIntra(absPartIdx) && bIsLuma && !cu.m_tuDepth[absPartIdx])
1170
0
    {
1171
0
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockRootCbpBits[0]);
1172
0
        totalRdCost += SIGCOST(estBitsSbac.blockRootCbpBits[1]);
1173
0
    }
1174
18.1k
    else
1175
18.1k
    {
1176
18.1k
        int ctx = ctxCbf[ttype][cu.m_tuDepth[absPartIdx]];
1177
18.1k
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockCbpBits[ctx][0]);
1178
18.1k
        totalRdCost += SIGCOST(estBitsSbac.blockCbpBits[ctx][1]);
1179
18.1k
    }
1180
1181
    /* This loop starts with the last non-zero found in the first loop and then refines this last
1182
     * non-zero by measuring the true RD cost of the last NZ at this position, and then the RD costs
1183
     * at all previous coefficients until a coefficient greater than 1 is encountered or we run out
1184
     * of coefficients to evaluate.  This will factor in the cost of coding empty groups and empty
1185
     * coeff prior to the last NZ. The base best cost is the RD cost of CBF=0 */
1186
18.1k
    int  bestLastIdx = 0;
1187
18.1k
    bool foundLast = false;
1188
36.4k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0 && !foundLast; cgScanPos--)
1189
18.2k
    {
1190
18.2k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1191
18.2k
        {
1192
            /* the presence of these coefficient groups are inferred, they have no bit in
1193
             * sigCoeffGroupFlag64 and no saved costCoeffGroupSig[] cost */
1194
18.2k
        }
1195
0
        else if (sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[cgScanPos]))
1196
0
        {
1197
            /* remove cost of significant coeff group flag, the group's presence would be inferred
1198
             * from lastNZ if it were present in this group */
1199
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1200
0
        }
1201
0
        else
1202
0
        {
1203
            /* remove cost of signaling this empty group as not present */
1204
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1205
0
            continue;
1206
0
        }
1207
1208
300k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
1209
292k
        {
1210
292k
            scanPos = cgScanPos * cgSize + scanPosinCG;
1211
292k
            if ((int)scanPos > lastScanPos)
1212
274k
                continue;
1213
1214
            /* if the coefficient was coded, measure the RD cost of it as the last non-zero and then
1215
             * continue as if it were uncoded. If the coefficient was already uncoded, remove the
1216
             * cost of signaling it as not-significant */
1217
18.2k
            uint32_t blkPos = codeParams.scan[scanPos];
1218
18.2k
            if (dstCoeff[blkPos])
1219
18.2k
            {
1220
                // Calculates the cost of signaling the last significant coefficient in the block 
1221
18.2k
                uint32_t pos[2] = { (blkPos & (trSize - 1)), (blkPos >> log2TrSize) };
1222
18.2k
                if (codeParams.scanType == SCAN_VER)
1223
371
                    std::swap(pos[0], pos[1]);
1224
18.2k
                uint32_t bitsLastNZ = 0;
1225
1226
54.8k
                for (int i = 0; i < 2; i++)
1227
36.5k
                {
1228
36.5k
                    int temp = g_lastCoeffTable[pos[i]];
1229
36.5k
                    int prefixOnes = temp & 15;
1230
36.5k
                    int suffixLen = temp >> 4;
1231
1232
36.5k
                    bitsLastNZ += m_entropyCoder->m_estBitsSbac.lastBits[i][prefixOnes];
1233
36.5k
                    bitsLastNZ += IEP_RATE * suffixLen;
1234
36.5k
                }
1235
1236
18.2k
                int64_t costAsLast = totalRdCost - costSig[scanPos] + SIGCOST(bitsLastNZ);
1237
1238
18.2k
                if (costAsLast < bestCost)
1239
10.6k
                {
1240
10.6k
                    bestLastIdx = scanPos + 1;
1241
10.6k
                    bestCost = costAsLast;
1242
10.6k
                }
1243
18.2k
                if (dstCoeff[blkPos] > 1 || m_rdoqLevel == 1)
1244
9.92k
                {
1245
9.92k
                    foundLast = true;
1246
9.92k
                    break;
1247
9.92k
                }
1248
1249
8.36k
                totalRdCost -= costCoeff[scanPos];
1250
8.36k
                totalRdCost += costUncoded[blkPos];
1251
8.36k
            }
1252
18.4E
            else
1253
18.4E
                totalRdCost -= costSig[scanPos];
1254
18.2k
        }
1255
18.2k
    }
1256
1257
    /* recount non-zero coefficients and re-apply sign of DCT coef */
1258
18.1k
    numSig = 0;
1259
28.8k
    for (int pos = 0; pos < bestLastIdx; pos++)
1260
10.6k
    {
1261
10.6k
        int blkPos = codeParams.scan[pos];
1262
10.6k
        int level  = dstCoeff[blkPos];
1263
10.6k
        numSig += (level != 0);
1264
1265
10.6k
        uint32_t mask = (int32_t)m_resiDctCoeff[blkPos] >> 31;
1266
10.6k
        dstCoeff[blkPos] = (int16_t)((level ^ mask) - mask);
1267
10.6k
    }
1268
1269
    // Average 49.62 pixels
1270
    /* clean uncoded coefficients */
1271
18.1k
    X265_CHECK((uint32_t)(fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)) < trSize * trSize, "array beyond bound\n");
1272
300k
    for (int pos = bestLastIdx; pos <= (fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)); pos++)
1273
281k
    {
1274
281k
        dstCoeff[codeParams.scan[pos]] = 0;
1275
281k
    }
1276
18.1k
    for (int pos = (bestLastIdx & ~(SCAN_SET_SIZE - 1)) + SCAN_SET_SIZE; pos <= lastScanPos; pos += SCAN_SET_SIZE)
1277
0
    {
1278
0
        const uint32_t blkPos = codeParams.scan[pos];
1279
0
        memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1280
0
        memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1281
0
        memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1282
0
        memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1283
0
    }
1284
1285
    /* rate-distortion based sign-hiding */
1286
18.2k
    if (cu.m_slice->m_pps->bSignHideEnabled && numSig >= 2)
1287
0
    {
1288
0
        const int realLastScanPos = (bestLastIdx - 1) >> LOG2_SCAN_SET_SIZE;
1289
0
        int lastCG = 1;
1290
1291
0
        for (int subSet = realLastScanPos; subSet >= 0; subSet--)
1292
0
        {
1293
0
            int subPos = subSet << LOG2_SCAN_SET_SIZE;
1294
0
            int n;
1295
1296
0
            if (!(sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[subSet])))
1297
0
                continue;
1298
1299
            /* measure distance between first and last non-zero coef in this
1300
             * coding group */
1301
0
            const uint32_t posFirstLast = primitives.findPosFirstLast(&dstCoeff[codeParams.scan[subPos]], trSize, g_scan4x4[codeParams.scanType]);
1302
0
            const int firstNZPosInCG = (uint8_t)posFirstLast;
1303
0
            const int lastNZPosInCG = (int8_t)(posFirstLast >> 8);
1304
0
            const uint32_t absSumSign = posFirstLast;
1305
1306
0
            if (lastNZPosInCG - firstNZPosInCG >= SBH_THRESHOLD)
1307
0
            {
1308
0
                const int32_t signbit = ((int32_t)dstCoeff[codeParams.scan[subPos + firstNZPosInCG]]);
1309
1310
#if CHECKED_BUILD || _DEBUG
1311
                int32_t absSum_dummy = 0;
1312
                for (n = firstNZPosInCG; n <= lastNZPosInCG; n++)
1313
                    absSum_dummy += dstCoeff[codeParams.scan[n + subPos]];
1314
                X265_CHECK(((uint32_t)absSum_dummy & 1) == (absSumSign >> 31), "absSumSign check failure\n");
1315
#endif
1316
1317
                //if (signbit != absSumSign)
1318
0
                if (((int32_t)(signbit ^ absSumSign)) < 0)
1319
0
                {
1320
                    /* We must find a coeff to toggle up or down so the sign bit of the first non-zero coeff
1321
                     * is properly implied. Note dstCoeff[] are signed by this point but curChange and
1322
                     * finalChange imply absolute levels (+1 is away from zero, -1 is towards zero) */
1323
1324
0
                    int64_t minCostInc = MAX_INT64, curCost = MAX_INT64;
1325
0
                    uint32_t minPos = 0;
1326
0
                    int8_t finalChange = 0;
1327
0
                    int curChange = 0;
1328
0
                    uint32_t lastCoeffAdjust = (lastCG & (abs(dstCoeff[codeParams.scan[lastNZPosInCG + subPos]]) == 1)) * 4 * IEP_RATE;
1329
1330
0
                    for (n = (lastCG ? lastNZPosInCG : SCAN_SET_SIZE - 1); n >= 0; --n)
1331
0
                    {
1332
0
                        const uint32_t blkPos = codeParams.scan[n + subPos];
1333
0
                        const int32_t signCoef = m_resiDctCoeff[blkPos]; /* pre-quantization DCT coeff */
1334
0
                        const int absLevel = abs(dstCoeff[blkPos]);
1335
                        // TODO: this is constant in non-scaling mode
1336
0
                        const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
1337
0
                        const uint32_t unQuantLevel = (absLevel * (unquantScale[blkPos] << per) + unquantRound);
1338
1339
0
                        int d = abs(signCoef) - (unQuantLevel >> unquantShift);
1340
0
                        X265_CHECK((uint32_t)UNQUANT(absLevel) == (unQuantLevel >> unquantShift), "dquant check failed\n");
1341
1342
0
                        const int64_t origDist = (((int64_t)d * d));
1343
1344
0
#define DELTARDCOST(d0, d, deltabits) ((((int64_t)d * d - d0) << scaleBits) + ((lambda2 * (int64_t)(deltabits)) >> 8))
1345
1346
0
                        const uint32_t isOne = (absLevel == 1);
1347
0
                        if (dstCoeff[blkPos])
1348
0
                        {
1349
0
                            d = abs(signCoef) - ((unQuantLevel + preDQuantLevelDiff) >> unquantShift);
1350
0
                            X265_CHECK((uint32_t)UNQUANT(absLevel + 1) == ((unQuantLevel + preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1351
0
                            int64_t costUp = DELTARDCOST(origDist, d, rateIncUp[blkPos]);
1352
1353
                            /* if decrementing would make the coeff 0, we can include the
1354
                             * significant coeff flag cost savings */
1355
0
                            d = abs(signCoef) - ((unQuantLevel - preDQuantLevelDiff) >> unquantShift);
1356
0
                            X265_CHECK((uint32_t)UNQUANT(absLevel - 1) == ((unQuantLevel - preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1357
0
                            int downBits = rateIncDown[blkPos] - (isOne ? (IEP_RATE + sigRateDelta[blkPos]) : 0);
1358
0
                            int64_t costDown = DELTARDCOST(origDist, d, downBits);
1359
1360
0
                            costDown -= lastCoeffAdjust;
1361
0
                            curCost = ((n == firstNZPosInCG) & isOne) ? MAX_INT64 : costDown;
1362
1363
0
                            curChange = 2 * (costUp < costDown) - 1;
1364
0
                            curCost = (costUp < costDown) ? costUp : curCost;
1365
0
                        }
1366
                        //else if ((n < firstNZPosInCG) & (signbit != ((uint32_t)signCoef >> 31)))
1367
0
                        else if ((n < firstNZPosInCG) & ((signbit ^ signCoef) < 0))
1368
0
                        {
1369
                            /* don't try to make a new coded coeff before the first coeff if its
1370
                             * sign would be different than the first coeff, the inferred sign would
1371
                             * still be wrong and we'd have to do this again. */
1372
0
                            curCost = MAX_INT64;
1373
0
                        }
1374
0
                        else
1375
0
                        {
1376
                            /* evaluate changing an uncoded coeff 0 to a coded coeff +/-1 */
1377
0
                            d = abs(signCoef) - ((preDQuantLevelDiff + unquantRound) >> unquantShift);
1378
0
                            X265_CHECK((uint32_t)UNQUANT(1) == ((preDQuantLevelDiff + unquantRound) >> unquantShift), "dquant check failed\n");
1379
0
                            curCost = DELTARDCOST(origDist, d, rateIncUp[blkPos] + IEP_RATE + sigRateDelta[blkPos]);
1380
0
                            curChange = 1;
1381
0
                        }
1382
1383
0
                        if (curCost < minCostInc)
1384
0
                        {
1385
0
                            minCostInc = curCost;
1386
0
                            finalChange = (int8_t)curChange;
1387
0
                            minPos = blkPos + (absLevel << 16);
1388
0
                        }
1389
0
                        lastCoeffAdjust = 0;
1390
0
                    }
1391
1392
0
                    const int absInMinPos = (minPos >> 16);
1393
0
                    minPos = (uint16_t)minPos;
1394
1395
                    // if (dstCoeff[minPos] == 32767 || dstCoeff[minPos] == -32768)
1396
0
                    if (absInMinPos >= 32767)
1397
                        /* don't allow sign hiding to violate the SPEC range */
1398
0
                        finalChange = -1;
1399
1400
                    // NOTE: Reference code
1401
                    //if (dstCoeff[minPos] == 0)
1402
                    //    numSig++;
1403
                    //else if (finalChange == -1 && abs(dstCoeff[minPos]) == 1)
1404
                    //    numSig--;
1405
0
                    numSig += (absInMinPos == 0) - ((finalChange == -1) & (absInMinPos == 1));
1406
1407
1408
                    // NOTE: Reference code
1409
                    //if (m_resiDctCoeff[minPos] >= 0)
1410
                    //    dstCoeff[minPos] += finalChange;
1411
                    //else
1412
                    //    dstCoeff[minPos] -= finalChange;
1413
0
                    const int16_t resiCoeffSign = ((int16_t)m_resiDctCoeff[minPos] >> 16);
1414
0
                    dstCoeff[minPos] += (((int16_t)finalChange ^ resiCoeffSign) - resiCoeffSign);
1415
0
                }
1416
0
            }
1417
1418
0
            lastCG = 0;
1419
0
        }
1420
0
    }
1421
1422
18.1k
    return numSig;
1423
1.14M
}
unsigned int x265::Quant::rdoQuant<4u>(x265::CUData const&, short*, x265::TextType, unsigned int, bool)
Line
Count
Source
611
245k
{
612
245k
    const int transformShift = MAX_TR_DYNAMIC_RANGE - X265_DEPTH - log2TrSize; /* Represents scaling through forward transform */
613
18.4E
    int scalingListType = (cu.isIntra(absPartIdx) ? 0 : 3) + ttype;
614
245k
    const uint32_t usePsyMask = usePsy ? -1 : 0;
615
616
245k
    X265_CHECK(scalingListType < 6, "scaling list type out of range\n");
617
618
245k
    int rem = m_qpParam[ttype].rem;
619
245k
    int per = m_qpParam[ttype].per;
620
245k
    int qbits = QUANT_SHIFT + per + transformShift; /* Right shift of non-RDOQ quantizer level = (coeff*Q + offset)>>q_bits */
621
245k
    int add = (1 << (qbits - 1));
622
245k
    const int32_t* qCoef = m_scalingList->m_quantCoef[log2TrSize - 2][scalingListType][rem];
623
624
245k
    const int numCoeff = 1 << (log2TrSize * 2);
625
245k
    uint32_t numSig = primitives.nquant(m_resiDctCoeff, qCoef, dstCoeff, qbits, add, numCoeff);
626
245k
    X265_CHECK((int)numSig == primitives.cu[log2TrSize - 2].count_nonzero(dstCoeff), "numSig differ\n");
627
245k
    if (!numSig)
628
235k
        return 0;
629
10.5k
    const uint32_t trSize = 1 << log2TrSize;
630
10.5k
    int64_t lambda2 = m_qpParam[ttype].lambda2;
631
10.5k
    int64_t psyScale = ((int64_t)m_psyRdoqScale * m_qpParam[ttype].lambda);
632
    /* unquant constants for measuring distortion. Scaling list quant coefficients have a (1 << 4)
633
     * scale applied that must be removed during unquant. Note that in real dequant there is clipping
634
     * at several stages. We skip the clipping for simplicity when measuring RD cost */
635
10.5k
    const int32_t* unquantScale = m_scalingList->m_dequantCoef[log2TrSize - 2][scalingListType][rem];
636
10.5k
    int unquantShift = QUANT_IQUANT_SHIFT - QUANT_SHIFT - transformShift + (m_scalingList->m_bEnabled ? 4 : 0);
637
10.5k
    int unquantRound = (unquantShift > per) ? 1 << (unquantShift - per - 1) : 0;
638
10.5k
    const int scaleBits = SCALE_BITS - 2 * transformShift;
639
640
10.5k
#define UNQUANT(lvl)    (((lvl) * (unquantScale[blkPos] << per) + unquantRound) >> unquantShift)
641
10.5k
#define SIGCOST(bits)   ((lambda2 * (bits)) >> 8)
642
10.5k
#define RDCOST(d, bits) ((((int64_t)d * d) << scaleBits) + SIGCOST(bits))
643
10.5k
#define PSYVALUE(rec)   ((psyScale * (rec)) >> X265_MAX(0, (2 * transformShift + 1)))
644
645
10.5k
    int64_t costCoeff[trSize * trSize];   /* d*d + lambda * bits */
646
10.5k
    int64_t costUncoded[trSize * trSize]; /* d*d + lambda * 0    */
647
10.5k
    int64_t costSig[trSize * trSize];     /* lambda * bits       */
648
649
10.5k
    int rateIncUp[trSize * trSize];      /* signal overhead of increasing level */
650
10.5k
    int rateIncDown[trSize * trSize];    /* signal overhead of decreasing level */
651
10.5k
    int sigRateDelta[trSize * trSize];   /* signal difference between zero and non-zero */
652
653
10.5k
    int64_t costCoeffGroupSig[MLS_GRP_NUM]; /* lambda * bits of group coding cost */
654
10.5k
    uint64_t sigCoeffGroupFlag64 = 0;
655
656
10.5k
    const uint32_t cgSize = (1 << MLS_CG_SIZE); /* 4x4 num coef = 16 */
657
10.5k
    bool bIsLuma = ttype == TEXT_LUMA;
658
659
    /* total rate distortion cost of transform block, as CBF=0 */
660
10.5k
    int64_t totalUncodedCost = 0;
661
662
    /* Total rate distortion cost of this transform block, counting te distortion of uncoded blocks,
663
     * the distortion and signal cost of coded blocks, and the coding cost of significant
664
     * coefficient and coefficient group bitmaps */
665
10.5k
    int64_t totalRdCost = 0;
666
667
10.5k
    TUEntropyCodingParameters codeParams;
668
10.5k
    cu.getTUEntropyCodingParameters(codeParams, absPartIdx, log2TrSize, bIsLuma);
669
10.5k
    const uint32_t log2TrSizeCG = log2TrSize - 2;
670
10.5k
    const uint32_t cgNum = 1 << (log2TrSizeCG * 2);
671
10.5k
    const uint32_t cgStride = (trSize >> MLS_CG_LOG2_SIZE);
672
673
10.5k
    uint8_t coeffNum[MLS_GRP_NUM];      // value range[0, 16]
674
10.5k
    uint16_t coeffSign[MLS_GRP_NUM];    // bit mask map for non-zero coeff sign
675
10.5k
    uint16_t coeffFlag[MLS_GRP_NUM];    // bit mask map for non-zero coeff
676
677
#if CHECKED_BUILD || _DEBUG
678
    // clean output buffer, the asm version of scanPosLast Never output anything after latest non-zero coeff group
679
    memset(coeffNum, 0, sizeof(coeffNum) * sizeof(uint8_t));
680
    memset(coeffSign, 0, sizeof(coeffNum) * sizeof(uint16_t));
681
    memset(coeffFlag, 0, sizeof(coeffNum) * sizeof(uint16_t));
682
#endif
683
10.5k
    const int lastScanPos = primitives.scanPosLast(codeParams.scan, dstCoeff, coeffSign, coeffFlag, coeffNum, numSig, g_scan4x4[codeParams.scanType], trSize);
684
10.5k
    const int cgLastScanPos = (lastScanPos >> LOG2_SCAN_SET_SIZE);
685
686
687
    /* TODO: update bit estimates if dirty */
688
10.5k
    EstBitsSbac& estBitsSbac = m_entropyCoder->m_estBitsSbac;
689
690
10.5k
    uint32_t scanPos = 0;
691
10.5k
    uint32_t c1 = 1;
692
693
    // process trail all zero Coeff Group
694
695
    /* coefficients after lastNZ have no distortion signal cost */
696
10.5k
    const int zeroCG = cgNum - 1 - cgLastScanPos;
697
10.5k
    memset(&costCoeff[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
698
10.5k
    memset(&costSig[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
699
700
    /* sum zero coeff (uncodec) cost */
701
702
    // TODO: does we need these cost?
703
10.5k
    if (usePsyMask)
704
6.59k
    {
705
105k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
706
98.8k
        {
707
98.8k
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
708
98.8k
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
709
98.8k
            uint32_t blkPos      = codeParams.scan[scanPosBase];
710
98.8k
#if X265_ARCH_X86
711
98.8k
            bool enable512 = detect512();
712
98.8k
            if (enable512)
713
0
                primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
714
98.8k
            else
715
98.8k
            {
716
98.8k
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff,  costUncoded, &totalUncodedCost, &totalRdCost,blkPos);
717
98.8k
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
718
98.8k
            }
719
#else
720
            primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
721
            primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
722
#endif
723
98.8k
        }
724
6.59k
    }
725
3.96k
    else
726
3.96k
    {
727
        // non-psy path
728
63.5k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
729
59.6k
        {
730
59.6k
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
731
59.6k
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
732
59.6k
            uint32_t blkPos      = codeParams.scan[scanPosBase];
733
59.6k
            primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
734
59.6k
        }
735
3.96k
    }
736
10.5k
    static const uint8_t table_cnt[5][SCAN_SET_SIZE] =
737
10.5k
    {
738
        // patternSigCtx = 0
739
10.5k
        {
740
10.5k
            2, 1, 1, 0,
741
10.5k
            1, 1, 0, 0,
742
10.5k
            1, 0, 0, 0,
743
10.5k
            0, 0, 0, 0,
744
10.5k
        },
745
        // patternSigCtx = 1
746
10.5k
        {
747
10.5k
            2, 2, 2, 2,
748
10.5k
            1, 1, 1, 1,
749
10.5k
            0, 0, 0, 0,
750
10.5k
            0, 0, 0, 0,
751
10.5k
        },
752
        // patternSigCtx = 2
753
10.5k
        {
754
10.5k
            2, 1, 0, 0,
755
10.5k
            2, 1, 0, 0,
756
10.5k
            2, 1, 0, 0,
757
10.5k
            2, 1, 0, 0,
758
10.5k
        },
759
        // patternSigCtx = 3
760
10.5k
        {
761
10.5k
            2, 2, 2, 2,
762
10.5k
            2, 2, 2, 2,
763
10.5k
            2, 2, 2, 2,
764
10.5k
            2, 2, 2, 2,
765
10.5k
        },
766
        // 4x4
767
10.5k
        {
768
10.5k
            0, 1, 4, 5,
769
10.5k
            2, 3, 4, 5,
770
10.5k
            6, 6, 8, 8,
771
10.5k
            7, 7, 8, 8
772
10.5k
        }
773
10.5k
    };
774
775
    /* iterate over coding groups in reverse scan order */
776
21.1k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0; cgScanPos--)
777
10.5k
    {
778
10.5k
        uint32_t ctxSet = (cgScanPos && bIsLuma) ? 2 : 0;
779
10.5k
        const uint32_t cgBlkPos = codeParams.scanCG[cgScanPos];
780
10.5k
        const uint32_t cgPosY   = cgBlkPos >> log2TrSizeCG;
781
10.5k
        const uint32_t cgPosX   = cgBlkPos & ((1 << log2TrSizeCG) - 1);
782
10.5k
        const uint64_t cgBlkPosMask = ((uint64_t)1 << cgBlkPos);
783
10.5k
        const int patternSigCtx = calcPatternSigCtx(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
784
10.5k
        const int ctxSigOffset = codeParams.firstSignificanceMapContext + (cgScanPos && bIsLuma ? 3 : 0);
785
786
10.5k
        if (c1 == 0)
787
0
            ctxSet++;
788
10.5k
        c1 = 1;
789
790
10.5k
        if (cgScanPos && (coeffNum[cgScanPos] == 0))
791
0
        {
792
            // TODO: does we need zero-coeff cost?
793
0
            const uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
794
0
            uint32_t blkPos = codeParams.scan[scanPosBase];
795
0
            if (usePsyMask)
796
0
            {
797
0
#if X265_ARCH_X86
798
0
                bool enable512 = detect512();
799
0
                if (enable512)
800
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
801
0
                else
802
0
                {
803
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
804
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
805
0
                }
806
#else
807
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
808
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
809
#endif
810
0
                blkPos = codeParams.scan[scanPosBase];
811
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
812
0
                {
813
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
814
0
                    {
815
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
816
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
817
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
818
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
819
820
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
821
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
822
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
823
0
                    }
824
0
                    blkPos += trSize;
825
0
                }
826
0
            }
827
0
            else
828
0
            {
829
                // non-psy path
830
0
                primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
831
0
                blkPos = codeParams.scan[scanPosBase];
832
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
833
0
                {
834
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
835
0
                    {
836
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
837
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
838
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
839
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
840
841
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
842
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
843
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
844
0
                    }
845
0
                    blkPos += trSize;
846
0
                }
847
0
            }
848
849
            /* there were no coded coefficients in this coefficient group */
850
0
            {
851
0
                uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
852
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
853
0
                totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
854
0
            }
855
0
            continue;
856
0
        }
857
858
10.5k
        coeffGroupRDStats cgRdStats;
859
10.5k
        memset(&cgRdStats, 0, sizeof(coeffGroupRDStats));
860
861
10.5k
        uint32_t subFlagMask = coeffFlag[cgScanPos];
862
10.5k
        int    c2            = 0;
863
10.5k
        uint32_t goRiceParam = 0;
864
10.5k
        uint32_t levelThreshold = 3;
865
10.5k
        uint32_t c1Idx       = 0;
866
10.5k
        uint32_t c2Idx       = 0;
867
        /* iterate over coefficients in each group in reverse scan order */
868
179k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
869
169k
        {
870
169k
            scanPos              = (cgScanPos << MLS_CG_SIZE) + scanPosinCG;
871
169k
            uint32_t blkPos      = codeParams.scan[scanPos];
872
169k
            uint32_t maxAbsLevel = dstCoeff[blkPos];                  /* abs(quantized coeff) */
873
169k
            int signCoef         = m_resiDctCoeff[blkPos];            /* pre-quantization DCT coeff */
874
169k
            int predictedCoef    = m_fencDctCoeff[blkPos] - signCoef; /* predicted DCT = source DCT - residual DCT*/
875
876
            /* RDOQ measures distortion as the squared difference between the unquantized coded level
877
             * and the original DCT coefficient. The result is shifted scaleBits to account for the
878
             * FIX15 nature of the CABAC cost tables minus the forward transform scale */
879
880
            /* cost of not coding this coefficient (all distortion, no signal bits) */
881
169k
            costUncoded[blkPos] = ((int64_t)signCoef * signCoef) << scaleBits;
882
169k
            X265_CHECK((!!scanPos ^ !!blkPos) == 0, "failed on (blkPos=0 && scanPos!=0)\n");
883
169k
            if (usePsyMask & scanPos)
884
                /* when no residual coefficient is coded, predicted coef == recon coef */
885
98.8k
                costUncoded[blkPos] -= PSYVALUE(predictedCoef);
886
887
169k
            totalUncodedCost += costUncoded[blkPos];
888
889
            // coefficient level estimation
890
169k
            const int* greaterOneBits = estBitsSbac.greaterOneBits[4 * ctxSet + c1];
891
            //const uint32_t ctxSig = (blkPos == 0) ? 0 : table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset;
892
169k
            static const uint64_t table_cnt64[4] = {0x0000000100110112ULL, 0x0000000011112222ULL, 0x0012001200120012ULL, 0x2222222222222222ULL};
893
169k
            uint64_t ctxCnt = (trSize == 4) ? 0x8877886654325410ULL : table_cnt64[patternSigCtx];
894
169k
            const uint32_t ctxSig = (blkPos == 0) ? 0 : ((ctxCnt >> (4 * g_scan4x4[codeParams.scanType][scanPosinCG])) & 0xF) + ctxSigOffset;
895
            // NOTE: above equal to 'table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset'
896
169k
            X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, blkPos, bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
897
898
            // before find lastest non-zero coeff
899
169k
            if (scanPos > (uint32_t)lastScanPos)
900
158k
            {
901
                /* coefficients after lastNZ have no distortion signal cost */
902
158k
                costCoeff[scanPos] = 0;
903
158k
                costSig[scanPos] = 0;
904
905
                /* No non-zero coefficient yet found, but this does not mean
906
                 * there is no uncoded-cost for this coefficient. Pre-
907
                 * quantization the coefficient may have been non-zero */
908
158k
                totalRdCost += costUncoded[blkPos];
909
158k
            }
910
10.5k
            else if (!(subFlagMask & 1))
911
0
            {
912
                // fast zero coeff path
913
                /* set default costs to uncoded costs */
914
0
                costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
915
0
                costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
916
0
                sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
917
0
                totalRdCost += costCoeff[scanPos];
918
0
                rateIncUp[blkPos] = greaterOneBits[0];
919
920
0
                subFlagMask >>= 1;
921
0
            }
922
10.5k
            else
923
10.5k
            {
924
10.5k
                subFlagMask >>= 1;
925
926
10.5k
                const uint32_t c1c2idx = ((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)) + (((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1) * 2;
927
10.5k
                const uint32_t baseLevel = ((uint32_t)0xD9 >> (c1c2idx * 2)) & 3;  // {1, 2, 1, 3}
928
929
10.5k
                X265_CHECK(!!((int)c1Idx < C1FLAG_NUMBER) == (int)((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)), "scan validation 1\n");
930
10.5k
                X265_CHECK(!!(c2Idx == 0) == ((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1, "scan validation 2\n");
931
10.5k
                X265_CHECK((int)baseLevel == ((c1Idx < C1FLAG_NUMBER) ? (2 + (c2Idx == 0)) : 1), "scan validation 3\n");
932
10.5k
                X265_CHECK(c1c2idx <= 3, "c1c2Idx check failure\n");
933
934
                // coefficient level estimation
935
10.5k
                const int* levelAbsBits = estBitsSbac.levelAbsBits[ctxSet + c2];
936
10.5k
                const uint32_t c1c2Rate = ((c1c2idx & 1) ?  greaterOneBits[1] : 0) + ((c1c2idx == 3) ? levelAbsBits[1] : 0);
937
938
10.5k
                uint32_t level = 0;
939
10.5k
                uint32_t sigCoefBits = 0;
940
10.5k
                costCoeff[scanPos] = MAX_INT64;
941
942
10.5k
                if ((int)scanPos == lastScanPos)
943
10.5k
                    sigRateDelta[blkPos] = 0;
944
0
                else
945
0
                {
946
0
                    if (maxAbsLevel < 3)
947
0
                    {
948
                        /* set default costs to uncoded costs */
949
0
                        costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
950
0
                        costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
951
0
                    }
952
0
                    sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
953
0
                    sigCoefBits = estBitsSbac.significantBits[1][ctxSig];
954
0
                }
955
956
10.5k
                const uint32_t unQuantLevel = (maxAbsLevel * (unquantScale[blkPos] << per) + unquantRound);
957
                // NOTE: X265_MAX(maxAbsLevel - 1, 1) ==> (X>=2 -> X-1), (X<2 -> 1)  | (0 < X < 2 ==> X=1)
958
10.5k
                if (maxAbsLevel == 1)
959
2.44k
                {
960
2.44k
                    uint32_t levelBits = (c1c2idx & 1) ? greaterOneBits[0] + IEP_RATE : ((1 + goRiceParam) << 15) + IEP_RATE;
961
2.44k
                    X265_CHECK(levelBits == getICRateCost(1, 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE, "levelBits mistake\n");
962
963
2.44k
                    int unquantAbsLevel = unQuantLevel >> unquantShift;
964
2.44k
                    X265_CHECK(UNQUANT(1) == unquantAbsLevel, "DQuant check failed\n");
965
2.44k
                    int d = abs(signCoef) - unquantAbsLevel;
966
2.44k
                    int64_t curCost = RDCOST(d, sigCoefBits + levelBits);
967
968
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
969
2.44k
                    if (usePsyMask & scanPos)
970
0
                    {
971
0
                        int reconCoef = abs(unquantAbsLevel + SIGN(predictedCoef, signCoef));
972
0
                        curCost -= PSYVALUE(reconCoef);
973
0
                    }
974
975
2.44k
                    if (curCost < costCoeff[scanPos])
976
2.44k
                    {
977
2.44k
                        level = 1;
978
2.44k
                        costCoeff[scanPos] = curCost;
979
2.44k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
980
2.44k
                    }
981
2.44k
                }
982
8.12k
                else if (maxAbsLevel)
983
8.12k
                {
984
8.12k
                    uint32_t levelBits0 = getICRateCost(maxAbsLevel,     maxAbsLevel     - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
985
8.12k
                    uint32_t levelBits1 = getICRateCost(maxAbsLevel - 1, maxAbsLevel - 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
986
987
8.12k
                    const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
988
989
8.12k
                    const int unquantAbsLevel0 = unQuantLevel >> unquantShift;
990
8.12k
                    X265_CHECK(UNQUANT(maxAbsLevel) == (uint32_t)unquantAbsLevel0, "DQuant check failed\n");
991
8.12k
                    int d0 = abs(signCoef) - unquantAbsLevel0;
992
8.12k
                    int64_t curCost0 = RDCOST(d0, sigCoefBits + levelBits0);
993
994
8.12k
                    const int unquantAbsLevel1 = (unQuantLevel - preDQuantLevelDiff) >> unquantShift;
995
8.12k
                    X265_CHECK(UNQUANT(maxAbsLevel - 1) == (uint32_t)unquantAbsLevel1, "DQuant check failed\n");
996
8.12k
                    int d1 = abs(signCoef) - unquantAbsLevel1;
997
8.12k
                    int64_t curCost1 = RDCOST(d1, sigCoefBits + levelBits1);
998
999
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
1000
8.12k
                    if (usePsyMask & scanPos)
1001
0
                    {
1002
0
                        int reconCoef;
1003
0
                        reconCoef = abs(unquantAbsLevel0 + SIGN(predictedCoef, signCoef));
1004
0
                        curCost0 -= PSYVALUE(reconCoef);
1005
1006
0
                        reconCoef = abs(unquantAbsLevel1 + SIGN(predictedCoef, signCoef));
1007
0
                        curCost1 -= PSYVALUE(reconCoef);
1008
0
                    }
1009
8.12k
                    if (curCost0 < costCoeff[scanPos])
1010
8.12k
                    {
1011
8.12k
                        level = maxAbsLevel;
1012
8.12k
                        costCoeff[scanPos] = curCost0;
1013
8.12k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1014
8.12k
                    }
1015
8.12k
                    if (curCost1 < costCoeff[scanPos])
1016
64
                    {
1017
64
                        level = maxAbsLevel - 1;
1018
64
                        costCoeff[scanPos] = curCost1;
1019
64
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1020
64
                    }
1021
8.12k
                }
1022
1023
10.5k
                dstCoeff[blkPos] = (int16_t)level;
1024
10.5k
                totalRdCost += costCoeff[scanPos];
1025
1026
                /* record costs for sign-hiding performed at the end */
1027
10.5k
                if ((cu.m_slice->m_pps->bSignHideEnabled ? ~0 : 0) & level)
1028
10.5k
                {
1029
10.5k
                    const int32_t diff0 = level - 1 - baseLevel;
1030
10.5k
                    const int32_t diff2 = level + 1 - baseLevel;
1031
10.5k
                    const int32_t maxVlc = g_goRiceRange[goRiceParam];
1032
10.5k
                    int rate0, rate1, rate2;
1033
1034
10.5k
                    if (diff0 < -2)  // prob (92.9, 86.5, 74.5)%
1035
2.44k
                    {
1036
                        // NOTE: Min: L - 1 - {1,2,1,3} < -2 ==> L < {0,1,0,2}
1037
                        //            additional L > 0, so I got (L > 0 && L < 2) ==> L = 1
1038
2.44k
                        X265_CHECK(level == 1, "absLevel check failure\n");
1039
1040
2.44k
                        const int rateEqual2 = greaterOneBits[1] + levelAbsBits[0];;
1041
2.44k
                        const int rateNotEqual2 = greaterOneBits[0];
1042
1043
2.44k
                        rate0 = 0;
1044
2.44k
                        rate2 = rateEqual2;
1045
2.44k
                        rate1 = rateNotEqual2;
1046
1047
2.44k
                        X265_CHECK(rate1 == getICRateNegDiff(level + 0, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1048
2.44k
                        X265_CHECK(rate2 == getICRateNegDiff(level + 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1049
2.44k
                        X265_CHECK(rate0 == getICRateNegDiff(level - 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1050
2.44k
                    }
1051
8.12k
                    else if (diff0 >= 0 && diff2 <= maxVlc)     // prob except from above path (98.6, 97.9, 96.9)%
1052
0
                    {
1053
                        // NOTE: no c1c2 correct rate since all of rate include this factor
1054
0
                        rate1 = getICRateLessVlc(level + 0, diff0 + 1, goRiceParam);
1055
0
                        rate2 = getICRateLessVlc(level + 1, diff0 + 2, goRiceParam);
1056
0
                        rate0 = getICRateLessVlc(level - 1, diff0 + 0, goRiceParam);
1057
0
                    }
1058
8.12k
                    else
1059
8.12k
                    {
1060
8.12k
                        rate1 = getICRate(level + 0, diff0 + 1, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1061
8.12k
                        rate2 = getICRate(level + 1, diff0 + 2, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1062
8.12k
                        rate0 = getICRate(level - 1, diff0 + 0, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1063
8.12k
                    }
1064
10.5k
                    rateIncUp[blkPos] = rate2 - rate1;
1065
10.5k
                    rateIncDown[blkPos] = rate0 - rate1;
1066
10.5k
                }
1067
0
                else
1068
0
                {
1069
0
                    rateIncUp[blkPos] = greaterOneBits[0];
1070
0
                    rateIncDown[blkPos] = 0;
1071
0
                }
1072
1073
                /* Update CABAC estimation state */
1074
10.5k
                if ((level >= baseLevel) && (goRiceParam < 4) && (level > levelThreshold))
1075
8.12k
                {
1076
8.12k
                    goRiceParam++;
1077
8.12k
                    levelThreshold <<= 1;
1078
8.12k
                }
1079
1080
10.5k
                const uint32_t isNonZero = (uint32_t)(-(int32_t)level) >> 31;
1081
10.5k
                c1Idx += isNonZero;
1082
1083
                /* update bin model */
1084
10.5k
                if (level > 1)
1085
8.12k
                {
1086
8.12k
                    c1 = 0;
1087
8.12k
                    c2 += (uint32_t)(c2 - 2) >> 31;
1088
8.12k
                    c2Idx++;
1089
8.12k
                }
1090
2.44k
                else if (((c1 == 1) | (c1 == 2)) & isNonZero)
1091
2.44k
                    c1++;
1092
1093
10.5k
                if (dstCoeff[blkPos])
1094
10.5k
                {
1095
10.5k
                    sigCoeffGroupFlag64 |= cgBlkPosMask;
1096
10.5k
                    cgRdStats.codedLevelAndDist += costCoeff[scanPos] - costSig[scanPos];
1097
10.5k
                    cgRdStats.uncodedDist += costUncoded[blkPos];
1098
10.5k
                    cgRdStats.nnzBeforePos0 += scanPosinCG;
1099
10.5k
                }
1100
10.5k
            }
1101
1102
169k
            cgRdStats.sigCost += costSig[scanPos];
1103
169k
        } /* end for (scanPosinCG) */
1104
1105
10.5k
        X265_CHECK((cgScanPos << MLS_CG_SIZE) == (int)scanPos, "scanPos mistake\n");
1106
10.5k
        cgRdStats.sigCost0 = costSig[scanPos];
1107
1108
10.5k
        costCoeffGroupSig[cgScanPos] = 0;
1109
1110
        /* nothing to do at this case */
1111
10.5k
        X265_CHECK(cgLastScanPos >= 0, "cgLastScanPos check failure\n");
1112
1113
10.5k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1114
10.5k
        {
1115
            /* coeff group 0 is implied to be present, no signal cost */
1116
            /* coeff group with last NZ is implied to be present, handled below */
1117
10.5k
        }
1118
0
        else if (sigCoeffGroupFlag64 & cgBlkPosMask)
1119
0
        {
1120
0
            if (!cgRdStats.nnzBeforePos0)
1121
0
            {
1122
                /* if only coeff 0 in this CG is coded, its significant coeff bit is implied */
1123
0
                totalRdCost -= cgRdStats.sigCost0;
1124
0
                cgRdStats.sigCost -= cgRdStats.sigCost0;
1125
0
            }
1126
1127
            /* there are coded coefficients in this group, but now we include the signaling cost
1128
             * of the significant coefficient group flag and evaluate whether the RD cost of the
1129
             * coded group is more than the RD cost of the uncoded group */
1130
1131
0
            uint32_t sigCtx = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1132
1133
0
            int64_t costZeroCG = totalRdCost + SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1134
0
            costZeroCG += cgRdStats.uncodedDist;       /* add distortion for resetting non-zero levels to zero levels */
1135
0
            costZeroCG -= cgRdStats.codedLevelAndDist; /* remove distortion and level cost of coded coefficients */
1136
0
            costZeroCG -= cgRdStats.sigCost;           /* remove signaling cost of significant coeff bitmap */
1137
1138
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][1]);
1139
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add the cost of 1 bit in significant CG bitmap */
1140
1141
0
            if (costZeroCG < totalRdCost && m_rdoqLevel > 1)
1142
0
            {
1143
0
                sigCoeffGroupFlag64 &= ~cgBlkPosMask;
1144
0
                totalRdCost = costZeroCG;
1145
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1146
1147
                /* reset all coeffs to 0. UNCODE THIS COEFF GROUP! */
1148
0
                const uint32_t blkPos = codeParams.scan[cgScanPos * cgSize];
1149
0
                memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1150
0
                memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1151
0
                memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1152
0
                memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1153
0
            }
1154
0
        }
1155
0
        else
1156
0
        {
1157
            /* there were no coded coefficients in this coefficient group */
1158
0
            uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1159
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
1160
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
1161
0
            totalRdCost -= cgRdStats.sigCost;             /* remove cost of significant coefficient bitmap */
1162
0
        }
1163
10.5k
    } /* end for (cgScanPos) */
1164
1165
10.5k
    X265_CHECK(lastScanPos >= 0, "numSig non zero, but no coded CG\n");
1166
1167
    /* calculate RD cost of uncoded block CBF=0, and add cost of CBF=1 to total */
1168
10.5k
    int64_t bestCost;
1169
10.5k
    if (!cu.isIntra(absPartIdx) && bIsLuma && !cu.m_tuDepth[absPartIdx])
1170
0
    {
1171
0
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockRootCbpBits[0]);
1172
0
        totalRdCost += SIGCOST(estBitsSbac.blockRootCbpBits[1]);
1173
0
    }
1174
10.5k
    else
1175
10.5k
    {
1176
10.5k
        int ctx = ctxCbf[ttype][cu.m_tuDepth[absPartIdx]];
1177
10.5k
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockCbpBits[ctx][0]);
1178
10.5k
        totalRdCost += SIGCOST(estBitsSbac.blockCbpBits[ctx][1]);
1179
10.5k
    }
1180
1181
    /* This loop starts with the last non-zero found in the first loop and then refines this last
1182
     * non-zero by measuring the true RD cost of the last NZ at this position, and then the RD costs
1183
     * at all previous coefficients until a coefficient greater than 1 is encountered or we run out
1184
     * of coefficients to evaluate.  This will factor in the cost of coding empty groups and empty
1185
     * coeff prior to the last NZ. The base best cost is the RD cost of CBF=0 */
1186
10.5k
    int  bestLastIdx = 0;
1187
10.5k
    bool foundLast = false;
1188
21.1k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0 && !foundLast; cgScanPos--)
1189
10.5k
    {
1190
10.5k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1191
10.5k
        {
1192
            /* the presence of these coefficient groups are inferred, they have no bit in
1193
             * sigCoeffGroupFlag64 and no saved costCoeffGroupSig[] cost */
1194
10.5k
        }
1195
0
        else if (sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[cgScanPos]))
1196
0
        {
1197
            /* remove cost of significant coeff group flag, the group's presence would be inferred
1198
             * from lastNZ if it were present in this group */
1199
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1200
0
        }
1201
0
        else
1202
0
        {
1203
            /* remove cost of signaling this empty group as not present */
1204
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1205
0
            continue;
1206
0
        }
1207
1208
171k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
1209
169k
        {
1210
169k
            scanPos = cgScanPos * cgSize + scanPosinCG;
1211
169k
            if ((int)scanPos > lastScanPos)
1212
158k
                continue;
1213
1214
            /* if the coefficient was coded, measure the RD cost of it as the last non-zero and then
1215
             * continue as if it were uncoded. If the coefficient was already uncoded, remove the
1216
             * cost of signaling it as not-significant */
1217
10.5k
            uint32_t blkPos = codeParams.scan[scanPos];
1218
10.5k
            if (dstCoeff[blkPos])
1219
10.5k
            {
1220
                // Calculates the cost of signaling the last significant coefficient in the block 
1221
10.5k
                uint32_t pos[2] = { (blkPos & (trSize - 1)), (blkPos >> log2TrSize) };
1222
10.5k
                if (codeParams.scanType == SCAN_VER)
1223
0
                    std::swap(pos[0], pos[1]);
1224
10.5k
                uint32_t bitsLastNZ = 0;
1225
1226
31.7k
                for (int i = 0; i < 2; i++)
1227
21.1k
                {
1228
21.1k
                    int temp = g_lastCoeffTable[pos[i]];
1229
21.1k
                    int prefixOnes = temp & 15;
1230
21.1k
                    int suffixLen = temp >> 4;
1231
1232
21.1k
                    bitsLastNZ += m_entropyCoder->m_estBitsSbac.lastBits[i][prefixOnes];
1233
21.1k
                    bitsLastNZ += IEP_RATE * suffixLen;
1234
21.1k
                }
1235
1236
10.5k
                int64_t costAsLast = totalRdCost - costSig[scanPos] + SIGCOST(bitsLastNZ);
1237
1238
10.5k
                if (costAsLast < bestCost)
1239
9.70k
                {
1240
9.70k
                    bestLastIdx = scanPos + 1;
1241
9.70k
                    bestCost = costAsLast;
1242
9.70k
                }
1243
10.5k
                if (dstCoeff[blkPos] > 1 || m_rdoqLevel == 1)
1244
8.12k
                {
1245
8.12k
                    foundLast = true;
1246
8.12k
                    break;
1247
8.12k
                }
1248
1249
2.44k
                totalRdCost -= costCoeff[scanPos];
1250
2.44k
                totalRdCost += costUncoded[blkPos];
1251
2.44k
            }
1252
0
            else
1253
0
                totalRdCost -= costSig[scanPos];
1254
10.5k
        }
1255
10.5k
    }
1256
1257
    /* recount non-zero coefficients and re-apply sign of DCT coef */
1258
10.5k
    numSig = 0;
1259
20.2k
    for (int pos = 0; pos < bestLastIdx; pos++)
1260
9.70k
    {
1261
9.70k
        int blkPos = codeParams.scan[pos];
1262
9.70k
        int level  = dstCoeff[blkPos];
1263
9.70k
        numSig += (level != 0);
1264
1265
9.70k
        uint32_t mask = (int32_t)m_resiDctCoeff[blkPos] >> 31;
1266
9.70k
        dstCoeff[blkPos] = (int16_t)((level ^ mask) - mask);
1267
9.70k
    }
1268
1269
    // Average 49.62 pixels
1270
    /* clean uncoded coefficients */
1271
10.5k
    X265_CHECK((uint32_t)(fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)) < trSize * trSize, "array beyond bound\n");
1272
169k
    for (int pos = bestLastIdx; pos <= (fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)); pos++)
1273
159k
    {
1274
159k
        dstCoeff[codeParams.scan[pos]] = 0;
1275
159k
    }
1276
10.5k
    for (int pos = (bestLastIdx & ~(SCAN_SET_SIZE - 1)) + SCAN_SET_SIZE; pos <= lastScanPos; pos += SCAN_SET_SIZE)
1277
0
    {
1278
0
        const uint32_t blkPos = codeParams.scan[pos];
1279
0
        memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1280
0
        memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1281
0
        memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1282
0
        memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1283
0
    }
1284
1285
    /* rate-distortion based sign-hiding */
1286
10.5k
    if (cu.m_slice->m_pps->bSignHideEnabled && numSig >= 2)
1287
0
    {
1288
0
        const int realLastScanPos = (bestLastIdx - 1) >> LOG2_SCAN_SET_SIZE;
1289
0
        int lastCG = 1;
1290
1291
0
        for (int subSet = realLastScanPos; subSet >= 0; subSet--)
1292
0
        {
1293
0
            int subPos = subSet << LOG2_SCAN_SET_SIZE;
1294
0
            int n;
1295
1296
0
            if (!(sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[subSet])))
1297
0
                continue;
1298
1299
            /* measure distance between first and last non-zero coef in this
1300
             * coding group */
1301
0
            const uint32_t posFirstLast = primitives.findPosFirstLast(&dstCoeff[codeParams.scan[subPos]], trSize, g_scan4x4[codeParams.scanType]);
1302
0
            const int firstNZPosInCG = (uint8_t)posFirstLast;
1303
0
            const int lastNZPosInCG = (int8_t)(posFirstLast >> 8);
1304
0
            const uint32_t absSumSign = posFirstLast;
1305
1306
0
            if (lastNZPosInCG - firstNZPosInCG >= SBH_THRESHOLD)
1307
0
            {
1308
0
                const int32_t signbit = ((int32_t)dstCoeff[codeParams.scan[subPos + firstNZPosInCG]]);
1309
1310
#if CHECKED_BUILD || _DEBUG
1311
                int32_t absSum_dummy = 0;
1312
                for (n = firstNZPosInCG; n <= lastNZPosInCG; n++)
1313
                    absSum_dummy += dstCoeff[codeParams.scan[n + subPos]];
1314
                X265_CHECK(((uint32_t)absSum_dummy & 1) == (absSumSign >> 31), "absSumSign check failure\n");
1315
#endif
1316
1317
                //if (signbit != absSumSign)
1318
0
                if (((int32_t)(signbit ^ absSumSign)) < 0)
1319
0
                {
1320
                    /* We must find a coeff to toggle up or down so the sign bit of the first non-zero coeff
1321
                     * is properly implied. Note dstCoeff[] are signed by this point but curChange and
1322
                     * finalChange imply absolute levels (+1 is away from zero, -1 is towards zero) */
1323
1324
0
                    int64_t minCostInc = MAX_INT64, curCost = MAX_INT64;
1325
0
                    uint32_t minPos = 0;
1326
0
                    int8_t finalChange = 0;
1327
0
                    int curChange = 0;
1328
0
                    uint32_t lastCoeffAdjust = (lastCG & (abs(dstCoeff[codeParams.scan[lastNZPosInCG + subPos]]) == 1)) * 4 * IEP_RATE;
1329
1330
0
                    for (n = (lastCG ? lastNZPosInCG : SCAN_SET_SIZE - 1); n >= 0; --n)
1331
0
                    {
1332
0
                        const uint32_t blkPos = codeParams.scan[n + subPos];
1333
0
                        const int32_t signCoef = m_resiDctCoeff[blkPos]; /* pre-quantization DCT coeff */
1334
0
                        const int absLevel = abs(dstCoeff[blkPos]);
1335
                        // TODO: this is constant in non-scaling mode
1336
0
                        const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
1337
0
                        const uint32_t unQuantLevel = (absLevel * (unquantScale[blkPos] << per) + unquantRound);
1338
1339
0
                        int d = abs(signCoef) - (unQuantLevel >> unquantShift);
1340
0
                        X265_CHECK((uint32_t)UNQUANT(absLevel) == (unQuantLevel >> unquantShift), "dquant check failed\n");
1341
1342
0
                        const int64_t origDist = (((int64_t)d * d));
1343
1344
0
#define DELTARDCOST(d0, d, deltabits) ((((int64_t)d * d - d0) << scaleBits) + ((lambda2 * (int64_t)(deltabits)) >> 8))
1345
1346
0
                        const uint32_t isOne = (absLevel == 1);
1347
0
                        if (dstCoeff[blkPos])
1348
0
                        {
1349
0
                            d = abs(signCoef) - ((unQuantLevel + preDQuantLevelDiff) >> unquantShift);
1350
0
                            X265_CHECK((uint32_t)UNQUANT(absLevel + 1) == ((unQuantLevel + preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1351
0
                            int64_t costUp = DELTARDCOST(origDist, d, rateIncUp[blkPos]);
1352
1353
                            /* if decrementing would make the coeff 0, we can include the
1354
                             * significant coeff flag cost savings */
1355
0
                            d = abs(signCoef) - ((unQuantLevel - preDQuantLevelDiff) >> unquantShift);
1356
0
                            X265_CHECK((uint32_t)UNQUANT(absLevel - 1) == ((unQuantLevel - preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1357
0
                            int downBits = rateIncDown[blkPos] - (isOne ? (IEP_RATE + sigRateDelta[blkPos]) : 0);
1358
0
                            int64_t costDown = DELTARDCOST(origDist, d, downBits);
1359
1360
0
                            costDown -= lastCoeffAdjust;
1361
0
                            curCost = ((n == firstNZPosInCG) & isOne) ? MAX_INT64 : costDown;
1362
1363
0
                            curChange = 2 * (costUp < costDown) - 1;
1364
0
                            curCost = (costUp < costDown) ? costUp : curCost;
1365
0
                        }
1366
                        //else if ((n < firstNZPosInCG) & (signbit != ((uint32_t)signCoef >> 31)))
1367
0
                        else if ((n < firstNZPosInCG) & ((signbit ^ signCoef) < 0))
1368
0
                        {
1369
                            /* don't try to make a new coded coeff before the first coeff if its
1370
                             * sign would be different than the first coeff, the inferred sign would
1371
                             * still be wrong and we'd have to do this again. */
1372
0
                            curCost = MAX_INT64;
1373
0
                        }
1374
0
                        else
1375
0
                        {
1376
                            /* evaluate changing an uncoded coeff 0 to a coded coeff +/-1 */
1377
0
                            d = abs(signCoef) - ((preDQuantLevelDiff + unquantRound) >> unquantShift);
1378
0
                            X265_CHECK((uint32_t)UNQUANT(1) == ((preDQuantLevelDiff + unquantRound) >> unquantShift), "dquant check failed\n");
1379
0
                            curCost = DELTARDCOST(origDist, d, rateIncUp[blkPos] + IEP_RATE + sigRateDelta[blkPos]);
1380
0
                            curChange = 1;
1381
0
                        }
1382
1383
0
                        if (curCost < minCostInc)
1384
0
                        {
1385
0
                            minCostInc = curCost;
1386
0
                            finalChange = (int8_t)curChange;
1387
0
                            minPos = blkPos + (absLevel << 16);
1388
0
                        }
1389
0
                        lastCoeffAdjust = 0;
1390
0
                    }
1391
1392
0
                    const int absInMinPos = (minPos >> 16);
1393
0
                    minPos = (uint16_t)minPos;
1394
1395
                    // if (dstCoeff[minPos] == 32767 || dstCoeff[minPos] == -32768)
1396
0
                    if (absInMinPos >= 32767)
1397
                        /* don't allow sign hiding to violate the SPEC range */
1398
0
                        finalChange = -1;
1399
1400
                    // NOTE: Reference code
1401
                    //if (dstCoeff[minPos] == 0)
1402
                    //    numSig++;
1403
                    //else if (finalChange == -1 && abs(dstCoeff[minPos]) == 1)
1404
                    //    numSig--;
1405
0
                    numSig += (absInMinPos == 0) - ((finalChange == -1) & (absInMinPos == 1));
1406
1407
1408
                    // NOTE: Reference code
1409
                    //if (m_resiDctCoeff[minPos] >= 0)
1410
                    //    dstCoeff[minPos] += finalChange;
1411
                    //else
1412
                    //    dstCoeff[minPos] -= finalChange;
1413
0
                    const int16_t resiCoeffSign = ((int16_t)m_resiDctCoeff[minPos] >> 16);
1414
0
                    dstCoeff[minPos] += (((int16_t)finalChange ^ resiCoeffSign) - resiCoeffSign);
1415
0
                }
1416
0
            }
1417
1418
0
            lastCG = 0;
1419
0
        }
1420
0
    }
1421
1422
10.5k
    return numSig;
1423
245k
}
unsigned int x265::Quant::rdoQuant<5u>(x265::CUData const&, short*, x265::TextType, unsigned int, bool)
Line
Count
Source
611
21.7k
{
612
21.7k
    const int transformShift = MAX_TR_DYNAMIC_RANGE - X265_DEPTH - log2TrSize; /* Represents scaling through forward transform */
613
21.7k
    int scalingListType = (cu.isIntra(absPartIdx) ? 0 : 3) + ttype;
614
21.7k
    const uint32_t usePsyMask = usePsy ? -1 : 0;
615
616
21.7k
    X265_CHECK(scalingListType < 6, "scaling list type out of range\n");
617
618
21.7k
    int rem = m_qpParam[ttype].rem;
619
21.7k
    int per = m_qpParam[ttype].per;
620
21.7k
    int qbits = QUANT_SHIFT + per + transformShift; /* Right shift of non-RDOQ quantizer level = (coeff*Q + offset)>>q_bits */
621
21.7k
    int add = (1 << (qbits - 1));
622
21.7k
    const int32_t* qCoef = m_scalingList->m_quantCoef[log2TrSize - 2][scalingListType][rem];
623
624
21.7k
    const int numCoeff = 1 << (log2TrSize * 2);
625
21.7k
    uint32_t numSig = primitives.nquant(m_resiDctCoeff, qCoef, dstCoeff, qbits, add, numCoeff);
626
21.7k
    X265_CHECK((int)numSig == primitives.cu[log2TrSize - 2].count_nonzero(dstCoeff), "numSig differ\n");
627
21.7k
    if (!numSig)
628
19.1k
        return 0;
629
2.59k
    const uint32_t trSize = 1 << log2TrSize;
630
2.59k
    int64_t lambda2 = m_qpParam[ttype].lambda2;
631
2.59k
    int64_t psyScale = ((int64_t)m_psyRdoqScale * m_qpParam[ttype].lambda);
632
    /* unquant constants for measuring distortion. Scaling list quant coefficients have a (1 << 4)
633
     * scale applied that must be removed during unquant. Note that in real dequant there is clipping
634
     * at several stages. We skip the clipping for simplicity when measuring RD cost */
635
2.59k
    const int32_t* unquantScale = m_scalingList->m_dequantCoef[log2TrSize - 2][scalingListType][rem];
636
2.59k
    int unquantShift = QUANT_IQUANT_SHIFT - QUANT_SHIFT - transformShift + (m_scalingList->m_bEnabled ? 4 : 0);
637
2.59k
    int unquantRound = (unquantShift > per) ? 1 << (unquantShift - per - 1) : 0;
638
2.59k
    const int scaleBits = SCALE_BITS - 2 * transformShift;
639
640
2.59k
#define UNQUANT(lvl)    (((lvl) * (unquantScale[blkPos] << per) + unquantRound) >> unquantShift)
641
2.59k
#define SIGCOST(bits)   ((lambda2 * (bits)) >> 8)
642
2.59k
#define RDCOST(d, bits) ((((int64_t)d * d) << scaleBits) + SIGCOST(bits))
643
2.59k
#define PSYVALUE(rec)   ((psyScale * (rec)) >> X265_MAX(0, (2 * transformShift + 1)))
644
645
2.59k
    int64_t costCoeff[trSize * trSize];   /* d*d + lambda * bits */
646
2.59k
    int64_t costUncoded[trSize * trSize]; /* d*d + lambda * 0    */
647
2.59k
    int64_t costSig[trSize * trSize];     /* lambda * bits       */
648
649
2.59k
    int rateIncUp[trSize * trSize];      /* signal overhead of increasing level */
650
2.59k
    int rateIncDown[trSize * trSize];    /* signal overhead of decreasing level */
651
2.59k
    int sigRateDelta[trSize * trSize];   /* signal difference between zero and non-zero */
652
653
2.59k
    int64_t costCoeffGroupSig[MLS_GRP_NUM]; /* lambda * bits of group coding cost */
654
2.59k
    uint64_t sigCoeffGroupFlag64 = 0;
655
656
2.59k
    const uint32_t cgSize = (1 << MLS_CG_SIZE); /* 4x4 num coef = 16 */
657
2.59k
    bool bIsLuma = ttype == TEXT_LUMA;
658
659
    /* total rate distortion cost of transform block, as CBF=0 */
660
2.59k
    int64_t totalUncodedCost = 0;
661
662
    /* Total rate distortion cost of this transform block, counting te distortion of uncoded blocks,
663
     * the distortion and signal cost of coded blocks, and the coding cost of significant
664
     * coefficient and coefficient group bitmaps */
665
2.59k
    int64_t totalRdCost = 0;
666
667
2.59k
    TUEntropyCodingParameters codeParams;
668
2.59k
    cu.getTUEntropyCodingParameters(codeParams, absPartIdx, log2TrSize, bIsLuma);
669
2.59k
    const uint32_t log2TrSizeCG = log2TrSize - 2;
670
2.59k
    const uint32_t cgNum = 1 << (log2TrSizeCG * 2);
671
2.59k
    const uint32_t cgStride = (trSize >> MLS_CG_LOG2_SIZE);
672
673
2.59k
    uint8_t coeffNum[MLS_GRP_NUM];      // value range[0, 16]
674
2.59k
    uint16_t coeffSign[MLS_GRP_NUM];    // bit mask map for non-zero coeff sign
675
2.59k
    uint16_t coeffFlag[MLS_GRP_NUM];    // bit mask map for non-zero coeff
676
677
#if CHECKED_BUILD || _DEBUG
678
    // clean output buffer, the asm version of scanPosLast Never output anything after latest non-zero coeff group
679
    memset(coeffNum, 0, sizeof(coeffNum) * sizeof(uint8_t));
680
    memset(coeffSign, 0, sizeof(coeffNum) * sizeof(uint16_t));
681
    memset(coeffFlag, 0, sizeof(coeffNum) * sizeof(uint16_t));
682
#endif
683
2.59k
    const int lastScanPos = primitives.scanPosLast(codeParams.scan, dstCoeff, coeffSign, coeffFlag, coeffNum, numSig, g_scan4x4[codeParams.scanType], trSize);
684
2.59k
    const int cgLastScanPos = (lastScanPos >> LOG2_SCAN_SET_SIZE);
685
686
687
    /* TODO: update bit estimates if dirty */
688
2.59k
    EstBitsSbac& estBitsSbac = m_entropyCoder->m_estBitsSbac;
689
690
2.59k
    uint32_t scanPos = 0;
691
2.59k
    uint32_t c1 = 1;
692
693
    // process trail all zero Coeff Group
694
695
    /* coefficients after lastNZ have no distortion signal cost */
696
2.59k
    const int zeroCG = cgNum - 1 - cgLastScanPos;
697
2.59k
    memset(&costCoeff[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
698
2.59k
    memset(&costSig[(cgLastScanPos + 1) << MLS_CG_SIZE], 0, zeroCG * MLS_CG_BLK_SIZE * sizeof(int64_t));
699
700
    /* sum zero coeff (uncodec) cost */
701
702
    // TODO: does we need these cost?
703
2.59k
    if (usePsyMask)
704
2.59k
    {
705
166k
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
706
163k
        {
707
163k
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
708
163k
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
709
163k
            uint32_t blkPos      = codeParams.scan[scanPosBase];
710
163k
#if X265_ARCH_X86
711
163k
            bool enable512 = detect512();
712
163k
            if (enable512)
713
0
                primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
714
163k
            else
715
163k
            {
716
163k
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff,  costUncoded, &totalUncodedCost, &totalRdCost,blkPos);
717
163k
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
718
163k
            }
719
#else
720
            primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
721
            primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
722
#endif
723
163k
        }
724
2.59k
    }
725
0
    else
726
0
    {
727
        // non-psy path
728
0
        for (int cgScanPos = cgLastScanPos + 1; cgScanPos < (int)cgNum ; cgScanPos++)
729
0
        {
730
0
            X265_CHECK(coeffNum[cgScanPos] == 0, "count of coeff failure\n");
731
0
            uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
732
0
            uint32_t blkPos      = codeParams.scan[scanPosBase];
733
0
            primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
734
0
        }
735
0
    }
736
2.59k
    static const uint8_t table_cnt[5][SCAN_SET_SIZE] =
737
2.59k
    {
738
        // patternSigCtx = 0
739
2.59k
        {
740
2.59k
            2, 1, 1, 0,
741
2.59k
            1, 1, 0, 0,
742
2.59k
            1, 0, 0, 0,
743
2.59k
            0, 0, 0, 0,
744
2.59k
        },
745
        // patternSigCtx = 1
746
2.59k
        {
747
2.59k
            2, 2, 2, 2,
748
2.59k
            1, 1, 1, 1,
749
2.59k
            0, 0, 0, 0,
750
2.59k
            0, 0, 0, 0,
751
2.59k
        },
752
        // patternSigCtx = 2
753
2.59k
        {
754
2.59k
            2, 1, 0, 0,
755
2.59k
            2, 1, 0, 0,
756
2.59k
            2, 1, 0, 0,
757
2.59k
            2, 1, 0, 0,
758
2.59k
        },
759
        // patternSigCtx = 3
760
2.59k
        {
761
2.59k
            2, 2, 2, 2,
762
2.59k
            2, 2, 2, 2,
763
2.59k
            2, 2, 2, 2,
764
2.59k
            2, 2, 2, 2,
765
2.59k
        },
766
        // 4x4
767
2.59k
        {
768
2.59k
            0, 1, 4, 5,
769
2.59k
            2, 3, 4, 5,
770
2.59k
            6, 6, 8, 8,
771
2.59k
            7, 7, 8, 8
772
2.59k
        }
773
2.59k
    };
774
775
    /* iterate over coding groups in reverse scan order */
776
5.19k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0; cgScanPos--)
777
2.59k
    {
778
2.59k
        uint32_t ctxSet = (cgScanPos && bIsLuma) ? 2 : 0;
779
2.59k
        const uint32_t cgBlkPos = codeParams.scanCG[cgScanPos];
780
2.59k
        const uint32_t cgPosY   = cgBlkPos >> log2TrSizeCG;
781
2.59k
        const uint32_t cgPosX   = cgBlkPos & ((1 << log2TrSizeCG) - 1);
782
2.59k
        const uint64_t cgBlkPosMask = ((uint64_t)1 << cgBlkPos);
783
2.59k
        const int patternSigCtx = calcPatternSigCtx(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
784
2.59k
        const int ctxSigOffset = codeParams.firstSignificanceMapContext + (cgScanPos && bIsLuma ? 3 : 0);
785
786
2.59k
        if (c1 == 0)
787
0
            ctxSet++;
788
2.59k
        c1 = 1;
789
790
2.59k
        if (cgScanPos && (coeffNum[cgScanPos] == 0))
791
0
        {
792
            // TODO: does we need zero-coeff cost?
793
0
            const uint32_t scanPosBase = (cgScanPos << MLS_CG_SIZE);
794
0
            uint32_t blkPos = codeParams.scan[scanPosBase];
795
0
            if (usePsyMask)
796
0
            {
797
0
#if X265_ARCH_X86
798
0
                bool enable512 = detect512();
799
0
                if (enable512)
800
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
801
0
                else
802
0
                {
803
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
804
0
                    primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
805
0
                }
806
#else
807
                primitives.cu[log2TrSize - 2].psyRdoQuant_1p(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
808
                primitives.cu[log2TrSize - 2].psyRdoQuant_2p(m_resiDctCoeff, m_fencDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, &psyScale, blkPos);
809
#endif
810
0
                blkPos = codeParams.scan[scanPosBase];
811
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
812
0
                {
813
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
814
0
                    {
815
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
816
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
817
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
818
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
819
820
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
821
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
822
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
823
0
                    }
824
0
                    blkPos += trSize;
825
0
                }
826
0
            }
827
0
            else
828
0
            {
829
                // non-psy path
830
0
                primitives.cu[log2TrSize - 2].nonPsyRdoQuant(m_resiDctCoeff, costUncoded, &totalUncodedCost, &totalRdCost, blkPos);
831
0
                blkPos = codeParams.scan[scanPosBase];
832
0
                for (int y = 0; y < MLS_CG_SIZE; y++)
833
0
                {
834
0
                    for (int x = 0; x < MLS_CG_SIZE; x++)
835
0
                    {
836
0
                        const uint32_t scanPosOffset =  y * MLS_CG_SIZE + x;
837
0
                        const uint32_t ctxSig = table_cnt[patternSigCtx][g_scan4x4[codeParams.scanType][scanPosOffset]] + ctxSigOffset;
838
0
                        X265_CHECK(trSize > 4, "trSize check failure\n");
839
0
                        X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, codeParams.scan[scanPosBase + scanPosOffset], bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
840
841
0
                        costSig[scanPosBase + scanPosOffset] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
842
0
                        costCoeff[scanPosBase + scanPosOffset] = costUncoded[blkPos + x];
843
0
                        sigRateDelta[blkPos + x] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
844
0
                    }
845
0
                    blkPos += trSize;
846
0
                }
847
0
            }
848
849
            /* there were no coded coefficients in this coefficient group */
850
0
            {
851
0
                uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
852
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
853
0
                totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
854
0
            }
855
0
            continue;
856
0
        }
857
858
2.59k
        coeffGroupRDStats cgRdStats;
859
2.59k
        memset(&cgRdStats, 0, sizeof(coeffGroupRDStats));
860
861
2.59k
        uint32_t subFlagMask = coeffFlag[cgScanPos];
862
2.59k
        int    c2            = 0;
863
2.59k
        uint32_t goRiceParam = 0;
864
2.59k
        uint32_t levelThreshold = 3;
865
2.59k
        uint32_t c1Idx       = 0;
866
2.59k
        uint32_t c2Idx       = 0;
867
        /* iterate over coefficients in each group in reverse scan order */
868
44.1k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
869
41.5k
        {
870
41.5k
            scanPos              = (cgScanPos << MLS_CG_SIZE) + scanPosinCG;
871
41.5k
            uint32_t blkPos      = codeParams.scan[scanPos];
872
41.5k
            uint32_t maxAbsLevel = dstCoeff[blkPos];                  /* abs(quantized coeff) */
873
41.5k
            int signCoef         = m_resiDctCoeff[blkPos];            /* pre-quantization DCT coeff */
874
41.5k
            int predictedCoef    = m_fencDctCoeff[blkPos] - signCoef; /* predicted DCT = source DCT - residual DCT*/
875
876
            /* RDOQ measures distortion as the squared difference between the unquantized coded level
877
             * and the original DCT coefficient. The result is shifted scaleBits to account for the
878
             * FIX15 nature of the CABAC cost tables minus the forward transform scale */
879
880
            /* cost of not coding this coefficient (all distortion, no signal bits) */
881
41.5k
            costUncoded[blkPos] = ((int64_t)signCoef * signCoef) << scaleBits;
882
41.5k
            X265_CHECK((!!scanPos ^ !!blkPos) == 0, "failed on (blkPos=0 && scanPos!=0)\n");
883
41.5k
            if (usePsyMask & scanPos)
884
                /* when no residual coefficient is coded, predicted coef == recon coef */
885
38.9k
                costUncoded[blkPos] -= PSYVALUE(predictedCoef);
886
887
41.5k
            totalUncodedCost += costUncoded[blkPos];
888
889
            // coefficient level estimation
890
41.5k
            const int* greaterOneBits = estBitsSbac.greaterOneBits[4 * ctxSet + c1];
891
            //const uint32_t ctxSig = (blkPos == 0) ? 0 : table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset;
892
41.5k
            static const uint64_t table_cnt64[4] = {0x0000000100110112ULL, 0x0000000011112222ULL, 0x0012001200120012ULL, 0x2222222222222222ULL};
893
41.5k
            uint64_t ctxCnt = (trSize == 4) ? 0x8877886654325410ULL : table_cnt64[patternSigCtx];
894
41.5k
            const uint32_t ctxSig = (blkPos == 0) ? 0 : ((ctxCnt >> (4 * g_scan4x4[codeParams.scanType][scanPosinCG])) & 0xF) + ctxSigOffset;
895
            // NOTE: above equal to 'table_cnt[(trSize == 4) ? 4 : patternSigCtx][g_scan4x4[codeParams.scanType][scanPosinCG]] + ctxSigOffset'
896
41.5k
            X265_CHECK(ctxSig == getSigCtxInc(patternSigCtx, log2TrSize, trSize, blkPos, bIsLuma, codeParams.firstSignificanceMapContext), "sigCtx check failure\n");
897
898
            // before find lastest non-zero coeff
899
41.5k
            if (scanPos > (uint32_t)lastScanPos)
900
38.9k
            {
901
                /* coefficients after lastNZ have no distortion signal cost */
902
38.9k
                costCoeff[scanPos] = 0;
903
38.9k
                costSig[scanPos] = 0;
904
905
                /* No non-zero coefficient yet found, but this does not mean
906
                 * there is no uncoded-cost for this coefficient. Pre-
907
                 * quantization the coefficient may have been non-zero */
908
38.9k
                totalRdCost += costUncoded[blkPos];
909
38.9k
            }
910
2.59k
            else if (!(subFlagMask & 1))
911
0
            {
912
                // fast zero coeff path
913
                /* set default costs to uncoded costs */
914
0
                costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
915
0
                costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
916
0
                sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
917
0
                totalRdCost += costCoeff[scanPos];
918
0
                rateIncUp[blkPos] = greaterOneBits[0];
919
920
0
                subFlagMask >>= 1;
921
0
            }
922
2.59k
            else
923
2.59k
            {
924
2.59k
                subFlagMask >>= 1;
925
926
2.59k
                const uint32_t c1c2idx = ((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)) + (((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1) * 2;
927
2.59k
                const uint32_t baseLevel = ((uint32_t)0xD9 >> (c1c2idx * 2)) & 3;  // {1, 2, 1, 3}
928
929
2.59k
                X265_CHECK(!!((int)c1Idx < C1FLAG_NUMBER) == (int)((c1Idx - 8) >> (sizeof(int) * CHAR_BIT - 1)), "scan validation 1\n");
930
2.59k
                X265_CHECK(!!(c2Idx == 0) == ((-(int)c2Idx) >> (sizeof(int) * CHAR_BIT - 1)) + 1, "scan validation 2\n");
931
2.59k
                X265_CHECK((int)baseLevel == ((c1Idx < C1FLAG_NUMBER) ? (2 + (c2Idx == 0)) : 1), "scan validation 3\n");
932
2.59k
                X265_CHECK(c1c2idx <= 3, "c1c2Idx check failure\n");
933
934
                // coefficient level estimation
935
2.59k
                const int* levelAbsBits = estBitsSbac.levelAbsBits[ctxSet + c2];
936
2.59k
                const uint32_t c1c2Rate = ((c1c2idx & 1) ?  greaterOneBits[1] : 0) + ((c1c2idx == 3) ? levelAbsBits[1] : 0);
937
938
2.59k
                uint32_t level = 0;
939
2.59k
                uint32_t sigCoefBits = 0;
940
2.59k
                costCoeff[scanPos] = MAX_INT64;
941
942
2.59k
                if ((int)scanPos == lastScanPos)
943
2.59k
                    sigRateDelta[blkPos] = 0;
944
0
                else
945
0
                {
946
0
                    if (maxAbsLevel < 3)
947
0
                    {
948
                        /* set default costs to uncoded costs */
949
0
                        costSig[scanPos] = SIGCOST(estBitsSbac.significantBits[0][ctxSig]);
950
0
                        costCoeff[scanPos] = costUncoded[blkPos] + costSig[scanPos];
951
0
                    }
952
0
                    sigRateDelta[blkPos] = estBitsSbac.significantBits[1][ctxSig] - estBitsSbac.significantBits[0][ctxSig];
953
0
                    sigCoefBits = estBitsSbac.significantBits[1][ctxSig];
954
0
                }
955
956
2.59k
                const uint32_t unQuantLevel = (maxAbsLevel * (unquantScale[blkPos] << per) + unquantRound);
957
                // NOTE: X265_MAX(maxAbsLevel - 1, 1) ==> (X>=2 -> X-1), (X<2 -> 1)  | (0 < X < 2 ==> X=1)
958
2.59k
                if (maxAbsLevel == 1)
959
0
                {
960
0
                    uint32_t levelBits = (c1c2idx & 1) ? greaterOneBits[0] + IEP_RATE : ((1 + goRiceParam) << 15) + IEP_RATE;
961
0
                    X265_CHECK(levelBits == getICRateCost(1, 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE, "levelBits mistake\n");
962
963
0
                    int unquantAbsLevel = unQuantLevel >> unquantShift;
964
0
                    X265_CHECK(UNQUANT(1) == unquantAbsLevel, "DQuant check failed\n");
965
0
                    int d = abs(signCoef) - unquantAbsLevel;
966
0
                    int64_t curCost = RDCOST(d, sigCoefBits + levelBits);
967
968
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
969
0
                    if (usePsyMask & scanPos)
970
0
                    {
971
0
                        int reconCoef = abs(unquantAbsLevel + SIGN(predictedCoef, signCoef));
972
0
                        curCost -= PSYVALUE(reconCoef);
973
0
                    }
974
975
0
                    if (curCost < costCoeff[scanPos])
976
0
                    {
977
0
                        level = 1;
978
0
                        costCoeff[scanPos] = curCost;
979
0
                        costSig[scanPos] = SIGCOST(sigCoefBits);
980
0
                    }
981
0
                }
982
2.59k
                else if (maxAbsLevel)
983
2.59k
                {
984
2.59k
                    uint32_t levelBits0 = getICRateCost(maxAbsLevel,     maxAbsLevel     - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
985
2.59k
                    uint32_t levelBits1 = getICRateCost(maxAbsLevel - 1, maxAbsLevel - 1 - baseLevel, greaterOneBits, levelAbsBits, goRiceParam, c1c2Rate) + IEP_RATE;
986
987
2.59k
                    const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
988
989
2.59k
                    const int unquantAbsLevel0 = unQuantLevel >> unquantShift;
990
2.59k
                    X265_CHECK(UNQUANT(maxAbsLevel) == (uint32_t)unquantAbsLevel0, "DQuant check failed\n");
991
2.59k
                    int d0 = abs(signCoef) - unquantAbsLevel0;
992
2.59k
                    int64_t curCost0 = RDCOST(d0, sigCoefBits + levelBits0);
993
994
2.59k
                    const int unquantAbsLevel1 = (unQuantLevel - preDQuantLevelDiff) >> unquantShift;
995
2.59k
                    X265_CHECK(UNQUANT(maxAbsLevel - 1) == (uint32_t)unquantAbsLevel1, "DQuant check failed\n");
996
2.59k
                    int d1 = abs(signCoef) - unquantAbsLevel1;
997
2.59k
                    int64_t curCost1 = RDCOST(d1, sigCoefBits + levelBits1);
998
999
                    /* Psy RDOQ: bias in favor of higher AC coefficients in the reconstructed frame */
1000
2.59k
                    if (usePsyMask & scanPos)
1001
0
                    {
1002
0
                        int reconCoef;
1003
0
                        reconCoef = abs(unquantAbsLevel0 + SIGN(predictedCoef, signCoef));
1004
0
                        curCost0 -= PSYVALUE(reconCoef);
1005
1006
0
                        reconCoef = abs(unquantAbsLevel1 + SIGN(predictedCoef, signCoef));
1007
0
                        curCost1 -= PSYVALUE(reconCoef);
1008
0
                    }
1009
2.59k
                    if (curCost0 < costCoeff[scanPos])
1010
2.59k
                    {
1011
2.59k
                        level = maxAbsLevel;
1012
2.59k
                        costCoeff[scanPos] = curCost0;
1013
2.59k
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1014
2.59k
                    }
1015
2.59k
                    if (curCost1 < costCoeff[scanPos])
1016
70
                    {
1017
70
                        level = maxAbsLevel - 1;
1018
70
                        costCoeff[scanPos] = curCost1;
1019
70
                        costSig[scanPos] = SIGCOST(sigCoefBits);
1020
70
                    }
1021
2.59k
                }
1022
1023
2.59k
                dstCoeff[blkPos] = (int16_t)level;
1024
2.59k
                totalRdCost += costCoeff[scanPos];
1025
1026
                /* record costs for sign-hiding performed at the end */
1027
2.59k
                if ((cu.m_slice->m_pps->bSignHideEnabled ? ~0 : 0) & level)
1028
2.59k
                {
1029
2.59k
                    const int32_t diff0 = level - 1 - baseLevel;
1030
2.59k
                    const int32_t diff2 = level + 1 - baseLevel;
1031
2.59k
                    const int32_t maxVlc = g_goRiceRange[goRiceParam];
1032
2.59k
                    int rate0, rate1, rate2;
1033
1034
2.59k
                    if (diff0 < -2)  // prob (92.9, 86.5, 74.5)%
1035
0
                    {
1036
                        // NOTE: Min: L - 1 - {1,2,1,3} < -2 ==> L < {0,1,0,2}
1037
                        //            additional L > 0, so I got (L > 0 && L < 2) ==> L = 1
1038
0
                        X265_CHECK(level == 1, "absLevel check failure\n");
1039
1040
0
                        const int rateEqual2 = greaterOneBits[1] + levelAbsBits[0];;
1041
0
                        const int rateNotEqual2 = greaterOneBits[0];
1042
1043
0
                        rate0 = 0;
1044
0
                        rate2 = rateEqual2;
1045
0
                        rate1 = rateNotEqual2;
1046
1047
0
                        X265_CHECK(rate1 == getICRateNegDiff(level + 0, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1048
0
                        X265_CHECK(rate2 == getICRateNegDiff(level + 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1049
0
                        X265_CHECK(rate0 == getICRateNegDiff(level - 1, greaterOneBits, levelAbsBits), "rate1 check failure!\n");
1050
0
                    }
1051
2.59k
                    else if (diff0 >= 0 && diff2 <= maxVlc)     // prob except from above path (98.6, 97.9, 96.9)%
1052
0
                    {
1053
                        // NOTE: no c1c2 correct rate since all of rate include this factor
1054
0
                        rate1 = getICRateLessVlc(level + 0, diff0 + 1, goRiceParam);
1055
0
                        rate2 = getICRateLessVlc(level + 1, diff0 + 2, goRiceParam);
1056
0
                        rate0 = getICRateLessVlc(level - 1, diff0 + 0, goRiceParam);
1057
0
                    }
1058
2.59k
                    else
1059
2.59k
                    {
1060
2.59k
                        rate1 = getICRate(level + 0, diff0 + 1, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1061
2.59k
                        rate2 = getICRate(level + 1, diff0 + 2, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1062
2.59k
                        rate0 = getICRate(level - 1, diff0 + 0, greaterOneBits, levelAbsBits, goRiceParam, maxVlc, c1c2Rate);
1063
2.59k
                    }
1064
2.59k
                    rateIncUp[blkPos] = rate2 - rate1;
1065
2.59k
                    rateIncDown[blkPos] = rate0 - rate1;
1066
2.59k
                }
1067
0
                else
1068
0
                {
1069
0
                    rateIncUp[blkPos] = greaterOneBits[0];
1070
0
                    rateIncDown[blkPos] = 0;
1071
0
                }
1072
1073
                /* Update CABAC estimation state */
1074
2.59k
                if ((level >= baseLevel) && (goRiceParam < 4) && (level > levelThreshold))
1075
2.59k
                {
1076
2.59k
                    goRiceParam++;
1077
2.59k
                    levelThreshold <<= 1;
1078
2.59k
                }
1079
1080
2.59k
                const uint32_t isNonZero = (uint32_t)(-(int32_t)level) >> 31;
1081
2.59k
                c1Idx += isNonZero;
1082
1083
                /* update bin model */
1084
2.59k
                if (level > 1)
1085
2.59k
                {
1086
2.59k
                    c1 = 0;
1087
2.59k
                    c2 += (uint32_t)(c2 - 2) >> 31;
1088
2.59k
                    c2Idx++;
1089
2.59k
                }
1090
0
                else if (((c1 == 1) | (c1 == 2)) & isNonZero)
1091
0
                    c1++;
1092
1093
2.59k
                if (dstCoeff[blkPos])
1094
2.59k
                {
1095
2.59k
                    sigCoeffGroupFlag64 |= cgBlkPosMask;
1096
2.59k
                    cgRdStats.codedLevelAndDist += costCoeff[scanPos] - costSig[scanPos];
1097
2.59k
                    cgRdStats.uncodedDist += costUncoded[blkPos];
1098
2.59k
                    cgRdStats.nnzBeforePos0 += scanPosinCG;
1099
2.59k
                }
1100
2.59k
            }
1101
1102
41.5k
            cgRdStats.sigCost += costSig[scanPos];
1103
41.5k
        } /* end for (scanPosinCG) */
1104
1105
2.59k
        X265_CHECK((cgScanPos << MLS_CG_SIZE) == (int)scanPos, "scanPos mistake\n");
1106
2.59k
        cgRdStats.sigCost0 = costSig[scanPos];
1107
1108
2.59k
        costCoeffGroupSig[cgScanPos] = 0;
1109
1110
        /* nothing to do at this case */
1111
2.59k
        X265_CHECK(cgLastScanPos >= 0, "cgLastScanPos check failure\n");
1112
1113
2.59k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1114
2.59k
        {
1115
            /* coeff group 0 is implied to be present, no signal cost */
1116
            /* coeff group with last NZ is implied to be present, handled below */
1117
2.59k
        }
1118
0
        else if (sigCoeffGroupFlag64 & cgBlkPosMask)
1119
0
        {
1120
0
            if (!cgRdStats.nnzBeforePos0)
1121
0
            {
1122
                /* if only coeff 0 in this CG is coded, its significant coeff bit is implied */
1123
0
                totalRdCost -= cgRdStats.sigCost0;
1124
0
                cgRdStats.sigCost -= cgRdStats.sigCost0;
1125
0
            }
1126
1127
            /* there are coded coefficients in this group, but now we include the signaling cost
1128
             * of the significant coefficient group flag and evaluate whether the RD cost of the
1129
             * coded group is more than the RD cost of the uncoded group */
1130
1131
0
            uint32_t sigCtx = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1132
1133
0
            int64_t costZeroCG = totalRdCost + SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1134
0
            costZeroCG += cgRdStats.uncodedDist;       /* add distortion for resetting non-zero levels to zero levels */
1135
0
            costZeroCG -= cgRdStats.codedLevelAndDist; /* remove distortion and level cost of coded coefficients */
1136
0
            costZeroCG -= cgRdStats.sigCost;           /* remove signaling cost of significant coeff bitmap */
1137
1138
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][1]);
1139
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add the cost of 1 bit in significant CG bitmap */
1140
1141
0
            if (costZeroCG < totalRdCost && m_rdoqLevel > 1)
1142
0
            {
1143
0
                sigCoeffGroupFlag64 &= ~cgBlkPosMask;
1144
0
                totalRdCost = costZeroCG;
1145
0
                costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[sigCtx][0]);
1146
1147
                /* reset all coeffs to 0. UNCODE THIS COEFF GROUP! */
1148
0
                const uint32_t blkPos = codeParams.scan[cgScanPos * cgSize];
1149
0
                memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1150
0
                memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1151
0
                memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1152
0
                memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1153
0
            }
1154
0
        }
1155
0
        else
1156
0
        {
1157
            /* there were no coded coefficients in this coefficient group */
1158
0
            uint32_t ctxSig = getSigCoeffGroupCtxInc(sigCoeffGroupFlag64, cgPosX, cgPosY, cgBlkPos, cgStride);
1159
0
            costCoeffGroupSig[cgScanPos] = SIGCOST(estBitsSbac.significantCoeffGroupBits[ctxSig][0]);
1160
0
            totalRdCost += costCoeffGroupSig[cgScanPos];  /* add cost of 0 bit in significant CG bitmap */
1161
0
            totalRdCost -= cgRdStats.sigCost;             /* remove cost of significant coefficient bitmap */
1162
0
        }
1163
2.59k
    } /* end for (cgScanPos) */
1164
1165
2.59k
    X265_CHECK(lastScanPos >= 0, "numSig non zero, but no coded CG\n");
1166
1167
    /* calculate RD cost of uncoded block CBF=0, and add cost of CBF=1 to total */
1168
2.59k
    int64_t bestCost;
1169
2.59k
    if (!cu.isIntra(absPartIdx) && bIsLuma && !cu.m_tuDepth[absPartIdx])
1170
0
    {
1171
0
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockRootCbpBits[0]);
1172
0
        totalRdCost += SIGCOST(estBitsSbac.blockRootCbpBits[1]);
1173
0
    }
1174
2.59k
    else
1175
2.59k
    {
1176
2.59k
        int ctx = ctxCbf[ttype][cu.m_tuDepth[absPartIdx]];
1177
2.59k
        bestCost = totalUncodedCost + SIGCOST(estBitsSbac.blockCbpBits[ctx][0]);
1178
2.59k
        totalRdCost += SIGCOST(estBitsSbac.blockCbpBits[ctx][1]);
1179
2.59k
    }
1180
1181
    /* This loop starts with the last non-zero found in the first loop and then refines this last
1182
     * non-zero by measuring the true RD cost of the last NZ at this position, and then the RD costs
1183
     * at all previous coefficients until a coefficient greater than 1 is encountered or we run out
1184
     * of coefficients to evaluate.  This will factor in the cost of coding empty groups and empty
1185
     * coeff prior to the last NZ. The base best cost is the RD cost of CBF=0 */
1186
2.59k
    int  bestLastIdx = 0;
1187
2.59k
    bool foundLast = false;
1188
5.19k
    for (int cgScanPos = cgLastScanPos; cgScanPos >= 0 && !foundLast; cgScanPos--)
1189
2.59k
    {
1190
2.59k
        if (!cgScanPos || cgScanPos == cgLastScanPos)
1191
2.59k
        {
1192
            /* the presence of these coefficient groups are inferred, they have no bit in
1193
             * sigCoeffGroupFlag64 and no saved costCoeffGroupSig[] cost */
1194
2.59k
        }
1195
0
        else if (sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[cgScanPos]))
1196
0
        {
1197
            /* remove cost of significant coeff group flag, the group's presence would be inferred
1198
             * from lastNZ if it were present in this group */
1199
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1200
0
        }
1201
0
        else
1202
0
        {
1203
            /* remove cost of signaling this empty group as not present */
1204
0
            totalRdCost -= costCoeffGroupSig[cgScanPos];
1205
0
            continue;
1206
0
        }
1207
1208
41.5k
        for (int scanPosinCG = cgSize - 1; scanPosinCG >= 0; scanPosinCG--)
1209
41.5k
        {
1210
41.5k
            scanPos = cgScanPos * cgSize + scanPosinCG;
1211
41.5k
            if ((int)scanPos > lastScanPos)
1212
38.9k
                continue;
1213
1214
            /* if the coefficient was coded, measure the RD cost of it as the last non-zero and then
1215
             * continue as if it were uncoded. If the coefficient was already uncoded, remove the
1216
             * cost of signaling it as not-significant */
1217
2.59k
            uint32_t blkPos = codeParams.scan[scanPos];
1218
2.59k
            if (dstCoeff[blkPos])
1219
2.59k
            {
1220
                // Calculates the cost of signaling the last significant coefficient in the block 
1221
2.59k
                uint32_t pos[2] = { (blkPos & (trSize - 1)), (blkPos >> log2TrSize) };
1222
2.59k
                if (codeParams.scanType == SCAN_VER)
1223
0
                    std::swap(pos[0], pos[1]);
1224
2.59k
                uint32_t bitsLastNZ = 0;
1225
1226
7.79k
                for (int i = 0; i < 2; i++)
1227
5.19k
                {
1228
5.19k
                    int temp = g_lastCoeffTable[pos[i]];
1229
5.19k
                    int prefixOnes = temp & 15;
1230
5.19k
                    int suffixLen = temp >> 4;
1231
1232
5.19k
                    bitsLastNZ += m_entropyCoder->m_estBitsSbac.lastBits[i][prefixOnes];
1233
5.19k
                    bitsLastNZ += IEP_RATE * suffixLen;
1234
5.19k
                }
1235
1236
2.59k
                int64_t costAsLast = totalRdCost - costSig[scanPos] + SIGCOST(bitsLastNZ);
1237
1238
2.59k
                if (costAsLast < bestCost)
1239
2.59k
                {
1240
2.59k
                    bestLastIdx = scanPos + 1;
1241
2.59k
                    bestCost = costAsLast;
1242
2.59k
                }
1243
2.59k
                if (dstCoeff[blkPos] > 1 || m_rdoqLevel == 1)
1244
2.59k
                {
1245
2.59k
                    foundLast = true;
1246
2.59k
                    break;
1247
2.59k
                }
1248
1249
0
                totalRdCost -= costCoeff[scanPos];
1250
0
                totalRdCost += costUncoded[blkPos];
1251
0
            }
1252
0
            else
1253
0
                totalRdCost -= costSig[scanPos];
1254
2.59k
        }
1255
2.59k
    }
1256
1257
    /* recount non-zero coefficients and re-apply sign of DCT coef */
1258
2.59k
    numSig = 0;
1259
5.19k
    for (int pos = 0; pos < bestLastIdx; pos++)
1260
2.59k
    {
1261
2.59k
        int blkPos = codeParams.scan[pos];
1262
2.59k
        int level  = dstCoeff[blkPos];
1263
2.59k
        numSig += (level != 0);
1264
1265
2.59k
        uint32_t mask = (int32_t)m_resiDctCoeff[blkPos] >> 31;
1266
2.59k
        dstCoeff[blkPos] = (int16_t)((level ^ mask) - mask);
1267
2.59k
    }
1268
1269
    // Average 49.62 pixels
1270
    /* clean uncoded coefficients */
1271
2.59k
    X265_CHECK((uint32_t)(fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)) < trSize * trSize, "array beyond bound\n");
1272
41.5k
    for (int pos = bestLastIdx; pos <= (fastMin(lastScanPos, bestLastIdx) | (SCAN_SET_SIZE - 1)); pos++)
1273
38.9k
    {
1274
38.9k
        dstCoeff[codeParams.scan[pos]] = 0;
1275
38.9k
    }
1276
2.59k
    for (int pos = (bestLastIdx & ~(SCAN_SET_SIZE - 1)) + SCAN_SET_SIZE; pos <= lastScanPos; pos += SCAN_SET_SIZE)
1277
0
    {
1278
0
        const uint32_t blkPos = codeParams.scan[pos];
1279
0
        memset(&dstCoeff[blkPos + 0 * trSize], 0, 4 * sizeof(*dstCoeff));
1280
0
        memset(&dstCoeff[blkPos + 1 * trSize], 0, 4 * sizeof(*dstCoeff));
1281
0
        memset(&dstCoeff[blkPos + 2 * trSize], 0, 4 * sizeof(*dstCoeff));
1282
0
        memset(&dstCoeff[blkPos + 3 * trSize], 0, 4 * sizeof(*dstCoeff));
1283
0
    }
1284
1285
    /* rate-distortion based sign-hiding */
1286
2.59k
    if (cu.m_slice->m_pps->bSignHideEnabled && numSig >= 2)
1287
0
    {
1288
0
        const int realLastScanPos = (bestLastIdx - 1) >> LOG2_SCAN_SET_SIZE;
1289
0
        int lastCG = 1;
1290
1291
0
        for (int subSet = realLastScanPos; subSet >= 0; subSet--)
1292
0
        {
1293
0
            int subPos = subSet << LOG2_SCAN_SET_SIZE;
1294
0
            int n;
1295
1296
0
            if (!(sigCoeffGroupFlag64 & (1ULL << codeParams.scanCG[subSet])))
1297
0
                continue;
1298
1299
            /* measure distance between first and last non-zero coef in this
1300
             * coding group */
1301
0
            const uint32_t posFirstLast = primitives.findPosFirstLast(&dstCoeff[codeParams.scan[subPos]], trSize, g_scan4x4[codeParams.scanType]);
1302
0
            const int firstNZPosInCG = (uint8_t)posFirstLast;
1303
0
            const int lastNZPosInCG = (int8_t)(posFirstLast >> 8);
1304
0
            const uint32_t absSumSign = posFirstLast;
1305
1306
0
            if (lastNZPosInCG - firstNZPosInCG >= SBH_THRESHOLD)
1307
0
            {
1308
0
                const int32_t signbit = ((int32_t)dstCoeff[codeParams.scan[subPos + firstNZPosInCG]]);
1309
1310
#if CHECKED_BUILD || _DEBUG
1311
                int32_t absSum_dummy = 0;
1312
                for (n = firstNZPosInCG; n <= lastNZPosInCG; n++)
1313
                    absSum_dummy += dstCoeff[codeParams.scan[n + subPos]];
1314
                X265_CHECK(((uint32_t)absSum_dummy & 1) == (absSumSign >> 31), "absSumSign check failure\n");
1315
#endif
1316
1317
                //if (signbit != absSumSign)
1318
0
                if (((int32_t)(signbit ^ absSumSign)) < 0)
1319
0
                {
1320
                    /* We must find a coeff to toggle up or down so the sign bit of the first non-zero coeff
1321
                     * is properly implied. Note dstCoeff[] are signed by this point but curChange and
1322
                     * finalChange imply absolute levels (+1 is away from zero, -1 is towards zero) */
1323
1324
0
                    int64_t minCostInc = MAX_INT64, curCost = MAX_INT64;
1325
0
                    uint32_t minPos = 0;
1326
0
                    int8_t finalChange = 0;
1327
0
                    int curChange = 0;
1328
0
                    uint32_t lastCoeffAdjust = (lastCG & (abs(dstCoeff[codeParams.scan[lastNZPosInCG + subPos]]) == 1)) * 4 * IEP_RATE;
1329
1330
0
                    for (n = (lastCG ? lastNZPosInCG : SCAN_SET_SIZE - 1); n >= 0; --n)
1331
0
                    {
1332
0
                        const uint32_t blkPos = codeParams.scan[n + subPos];
1333
0
                        const int32_t signCoef = m_resiDctCoeff[blkPos]; /* pre-quantization DCT coeff */
1334
0
                        const int absLevel = abs(dstCoeff[blkPos]);
1335
                        // TODO: this is constant in non-scaling mode
1336
0
                        const uint32_t preDQuantLevelDiff = (unquantScale[blkPos] << per);
1337
0
                        const uint32_t unQuantLevel = (absLevel * (unquantScale[blkPos] << per) + unquantRound);
1338
1339
0
                        int d = abs(signCoef) - (unQuantLevel >> unquantShift);
1340
0
                        X265_CHECK((uint32_t)UNQUANT(absLevel) == (unQuantLevel >> unquantShift), "dquant check failed\n");
1341
1342
0
                        const int64_t origDist = (((int64_t)d * d));
1343
1344
0
#define DELTARDCOST(d0, d, deltabits) ((((int64_t)d * d - d0) << scaleBits) + ((lambda2 * (int64_t)(deltabits)) >> 8))
1345
1346
0
                        const uint32_t isOne = (absLevel == 1);
1347
0
                        if (dstCoeff[blkPos])
1348
0
                        {
1349
0
                            d = abs(signCoef) - ((unQuantLevel + preDQuantLevelDiff) >> unquantShift);
1350
0
                            X265_CHECK((uint32_t)UNQUANT(absLevel + 1) == ((unQuantLevel + preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1351
0
                            int64_t costUp = DELTARDCOST(origDist, d, rateIncUp[blkPos]);
1352
1353
                            /* if decrementing would make the coeff 0, we can include the
1354
                             * significant coeff flag cost savings */
1355
0
                            d = abs(signCoef) - ((unQuantLevel - preDQuantLevelDiff) >> unquantShift);
1356
0
                            X265_CHECK((uint32_t)UNQUANT(absLevel - 1) == ((unQuantLevel - preDQuantLevelDiff) >> unquantShift), "dquant check failed\n");
1357
0
                            int downBits = rateIncDown[blkPos] - (isOne ? (IEP_RATE + sigRateDelta[blkPos]) : 0);
1358
0
                            int64_t costDown = DELTARDCOST(origDist, d, downBits);
1359
1360
0
                            costDown -= lastCoeffAdjust;
1361
0
                            curCost = ((n == firstNZPosInCG) & isOne) ? MAX_INT64 : costDown;
1362
1363
0
                            curChange = 2 * (costUp < costDown) - 1;
1364
0
                            curCost = (costUp < costDown) ? costUp : curCost;
1365
0
                        }
1366
                        //else if ((n < firstNZPosInCG) & (signbit != ((uint32_t)signCoef >> 31)))
1367
0
                        else if ((n < firstNZPosInCG) & ((signbit ^ signCoef) < 0))
1368
0
                        {
1369
                            /* don't try to make a new coded coeff before the first coeff if its
1370
                             * sign would be different than the first coeff, the inferred sign would
1371
                             * still be wrong and we'd have to do this again. */
1372
0
                            curCost = MAX_INT64;
1373
0
                        }
1374
0
                        else
1375
0
                        {
1376
                            /* evaluate changing an uncoded coeff 0 to a coded coeff +/-1 */
1377
0
                            d = abs(signCoef) - ((preDQuantLevelDiff + unquantRound) >> unquantShift);
1378
0
                            X265_CHECK((uint32_t)UNQUANT(1) == ((preDQuantLevelDiff + unquantRound) >> unquantShift), "dquant check failed\n");
1379
0
                            curCost = DELTARDCOST(origDist, d, rateIncUp[blkPos] + IEP_RATE + sigRateDelta[blkPos]);
1380
0
                            curChange = 1;
1381
0
                        }
1382
1383
0
                        if (curCost < minCostInc)
1384
0
                        {
1385
0
                            minCostInc = curCost;
1386
0
                            finalChange = (int8_t)curChange;
1387
0
                            minPos = blkPos + (absLevel << 16);
1388
0
                        }
1389
0
                        lastCoeffAdjust = 0;
1390
0
                    }
1391
1392
0
                    const int absInMinPos = (minPos >> 16);
1393
0
                    minPos = (uint16_t)minPos;
1394
1395
                    // if (dstCoeff[minPos] == 32767 || dstCoeff[minPos] == -32768)
1396
0
                    if (absInMinPos >= 32767)
1397
                        /* don't allow sign hiding to violate the SPEC range */
1398
0
                        finalChange = -1;
1399
1400
                    // NOTE: Reference code
1401
                    //if (dstCoeff[minPos] == 0)
1402
                    //    numSig++;
1403
                    //else if (finalChange == -1 && abs(dstCoeff[minPos]) == 1)
1404
                    //    numSig--;
1405
0
                    numSig += (absInMinPos == 0) - ((finalChange == -1) & (absInMinPos == 1));
1406
1407
1408
                    // NOTE: Reference code
1409
                    //if (m_resiDctCoeff[minPos] >= 0)
1410
                    //    dstCoeff[minPos] += finalChange;
1411
                    //else
1412
                    //    dstCoeff[minPos] -= finalChange;
1413
0
                    const int16_t resiCoeffSign = ((int16_t)m_resiDctCoeff[minPos] >> 16);
1414
0
                    dstCoeff[minPos] += (((int16_t)finalChange ^ resiCoeffSign) - resiCoeffSign);
1415
0
                }
1416
0
            }
1417
1418
0
            lastCG = 0;
1419
0
        }
1420
0
    }
1421
1422
2.59k
    return numSig;
1423
21.7k
}
1424
1425
/* Context derivation process of coeff_abs_significant_flag */
1426
uint32_t Quant::getSigCtxInc(uint32_t patternSigCtx, uint32_t log2TrSize, uint32_t trSize, uint32_t blkPos, bool bIsLuma,
1427
                             uint32_t firstSignificanceMapContext)
1428
0
{
1429
0
    static const uint8_t ctxIndMap[16] =
1430
0
    {
1431
0
        0, 1, 4, 5,
1432
0
        2, 3, 4, 5,
1433
0
        6, 6, 8, 8,
1434
0
        7, 7, 8, 8
1435
0
    };
1436
1437
0
    if (!blkPos) // special case for the DC context variable
1438
0
        return 0;
1439
1440
0
    if (log2TrSize == 2) // 4x4
1441
0
        return ctxIndMap[blkPos];
1442
1443
0
    const uint32_t posY = blkPos >> log2TrSize;
1444
0
    const uint32_t posX = blkPos & (trSize - 1);
1445
0
    X265_CHECK((blkPos - (posY << log2TrSize)) == posX, "block pos check failed\n");
1446
1447
0
    int posXinSubset = blkPos & 3;
1448
0
    X265_CHECK((posX & 3) == (blkPos & 3), "pos alignment fail\n");
1449
0
    int posYinSubset = posY & 3;
1450
1451
    // NOTE: [patternSigCtx][posXinSubset][posYinSubset]
1452
0
    static const uint8_t table_cnt[4][4][4] =
1453
0
    {
1454
        // patternSigCtx = 0
1455
0
        {
1456
0
            { 2, 1, 1, 0 },
1457
0
            { 1, 1, 0, 0 },
1458
0
            { 1, 0, 0, 0 },
1459
0
            { 0, 0, 0, 0 },
1460
0
        },
1461
        // patternSigCtx = 1
1462
0
        {
1463
0
            { 2, 1, 0, 0 },
1464
0
            { 2, 1, 0, 0 },
1465
0
            { 2, 1, 0, 0 },
1466
0
            { 2, 1, 0, 0 },
1467
0
        },
1468
        // patternSigCtx = 2
1469
0
        {
1470
0
            { 2, 2, 2, 2 },
1471
0
            { 1, 1, 1, 1 },
1472
0
            { 0, 0, 0, 0 },
1473
0
            { 0, 0, 0, 0 },
1474
0
        },
1475
        // patternSigCtx = 3
1476
0
        {
1477
0
            { 2, 2, 2, 2 },
1478
0
            { 2, 2, 2, 2 },
1479
0
            { 2, 2, 2, 2 },
1480
0
            { 2, 2, 2, 2 },
1481
0
        }
1482
0
    };
1483
1484
0
    int cnt = table_cnt[patternSigCtx][posXinSubset][posYinSubset];
1485
0
    int offset = firstSignificanceMapContext;
1486
1487
0
    offset += cnt;
1488
1489
0
    return (bIsLuma && (posX | posY) >= 4) ? 3 + offset : offset;
1490
0
}
1491