Coverage Report

Created: 2026-04-01 07:49

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/vvenc/source/Lib/EncoderLib/EncHRD.cpp
Line
Count
Source
1
/* -----------------------------------------------------------------------------
2
The copyright in this software is being made available under the Clear BSD
3
License, included below. No patent rights, trademark rights and/or 
4
other Intellectual Property Rights other than the copyrights concerning 
5
the Software are granted under this license.
6
7
The Clear BSD License
8
9
Copyright (c) 2019-2026, Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. & The VVenC Authors.
10
All rights reserved.
11
12
Redistribution and use in source and binary forms, with or without modification,
13
are permitted (subject to the limitations in the disclaimer below) provided that
14
the following conditions are met:
15
16
     * Redistributions of source code must retain the above copyright notice,
17
     this list of conditions and the following disclaimer.
18
19
     * Redistributions in binary form must reproduce the above copyright
20
     notice, this list of conditions and the following disclaimer in the
21
     documentation and/or other materials provided with the distribution.
22
23
     * Neither the name of the copyright holder nor the names of its
24
     contributors may be used to endorse or promote products derived from this
25
     software without specific prior written permission.
26
27
NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY
28
THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
29
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
31
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
32
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
33
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
34
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
35
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
36
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38
POSSIBILITY OF SUCH DAMAGE.
39
40
41
------------------------------------------------------------------------------------------- */
42
43
#include "EncHRD.h"
44
#include "CommonLib/ProfileLevelTier.h"
45
46
namespace vvenc {
47
48
// calculate scale value of bitrate and initial delay
49
int EncHRD::xCalcScale(uint32_t x)
50
0
{
51
0
  if (x==0)
52
0
  {
53
0
    return 0;
54
0
  }
55
0
  uint32_t mask = 0xffffffff;
56
0
  int scaleValue = 32;
57
58
0
  while ((x&mask) != 0)
59
0
  {
60
0
    scaleValue--;
61
0
    mask = (mask >> 1);
62
0
  }
63
64
0
  return scaleValue;
65
0
}
66
67
void EncHRD::initHRDParameters(const VVEncCfg& encCfg, const SPS& sps)
68
0
{
69
//  if (!encCfg.m_hrdParametersPresent && !encCfg.getCpbSaturationEnabled())
70
//  {
71
//    return;
72
//  }
73
0
  ProfileLevelTierFeatures profileLevelTierFeatures;
74
0
  profileLevelTierFeatures.extractPTLInformation( sps );
75
76
0
  bool useSubCpbParams = false; //encCfg.getNoPicPartitionFlag() == false;
77
0
  uint32_t bitRate = (uint32_t)encCfg.m_RCTargetBitrate;
78
0
  uint32_t cpbSize = (uint32_t)profileLevelTierFeatures.getCpbSizeInBits();
79
80
0
  CHECK(!(cpbSize != 0), "Unspecified error");  // CPB size may not be equal to zero. ToDo: have a better default and check for level constraints
81
82
0
  generalHrdParams.timeScale      = encCfg.m_FrameRate;
83
0
  generalHrdParams.numUnitsInTick = encCfg.m_FrameScale;
84
85
0
  bool rateCnt = (bitRate > 0);
86
87
0
  generalHrdParams.generalNalHrdParamsPresent = rateCnt;
88
0
  generalHrdParams.generalVclHrdParamsPresent = rateCnt;
89
90
0
  generalHrdParams.generalSamePicTimingInAllOlsFlag = true;
91
0
  useSubCpbParams &= (generalHrdParams.generalNalHrdParamsPresent || generalHrdParams.generalVclHrdParamsPresent);
92
0
  generalHrdParams.generalDecodingUnitHrdParamsPresent = useSubCpbParams;
93
94
0
  if (generalHrdParams.generalDecodingUnitHrdParamsPresent)
95
0
  {
96
0
    generalHrdParams.tickDivisorMinus2 = (100 - 2);
97
0
  }
98
99
0
  if (xCalcScale(bitRate) <= 6)
100
0
  {
101
0
    generalHrdParams.bitRateScale = 0;
102
0
  }
103
0
  else
104
0
  {
105
0
    generalHrdParams.bitRateScale = xCalcScale(bitRate) - 6;
106
0
  }
107
108
0
  if (xCalcScale(cpbSize) <= 4)
109
0
  {
110
0
    generalHrdParams.cpbSizeScale = 0;
111
0
  }
112
0
  else
113
0
  {
114
0
    generalHrdParams.cpbSizeScale = xCalcScale(cpbSize) - 4;
115
0
  }
116
117
0
  generalHrdParams.cpbSizeDuScale = 6;                                     // in units of 2^( 4 + 6 ) = 1,024 bit
118
0
  generalHrdParams.hrdCpbCntMinus1 = 0;
119
120
121
  // Note: parameters for all temporal layers are initialized with the same values
122
0
  int i, j;
123
0
  uint32_t bitrateValue, cpbSizeValue;
124
0
  uint32_t duCpbSizeValue;
125
0
  uint32_t duBitRateValue = 0;
126
127
0
  for (i = 0; i < VVENC_MAX_TLAYER; i++)
128
0
  {
129
0
    olsHrdParams[i].fixedPicRateGeneralFlag = true;
130
0
    olsHrdParams[i].fixedPicRateWithinCvsFlag = true;
131
0
    olsHrdParams[i].elementDurationInTcMinus1 = 0;
132
0
    olsHrdParams[i].lowDelayHrdFlag = false;
133
134
    //! \todo check for possible PTL violations
135
    // BitRate[ i ] = ( bit_rate_value_minus1[ i ] + 1 ) * 2^( 6 + bit_rate_scale )
136
0
    bitrateValue = bitRate / (1 << (6 + generalHrdParams.bitRateScale));      // bitRate is in bits, so it needs to be scaled down
137
                                                                              // CpbSize[ i ] = ( cpb_size_value_minus1[ i ] + 1 ) * 2^( 4 + cpb_size_scale )
138
0
    cpbSizeValue = cpbSize / (1 << (4 + generalHrdParams.cpbSizeScale));      // using bitRate results in 1 second CPB size
139
140
                                                                              // DU CPB size could be smaller (i.e. bitrateValue / number of DUs), but we don't know
141
                                                                              // in how many DUs the slice segment settings will result
142
0
    duCpbSizeValue = bitrateValue;
143
0
    duBitRateValue = cpbSizeValue;
144
145
0
    for (j = 0; j < (generalHrdParams.hrdCpbCntMinus1 + 1); j++)
146
0
    {
147
0
      olsHrdParams[i].bitRateValueMinus1[j][0] =  bitrateValue - 1;
148
0
      olsHrdParams[i].cpbSizeValueMinus1[j][0] =  cpbSizeValue - 1;
149
0
      olsHrdParams[i].duCpbSizeValueMinus1[j][0] =  duCpbSizeValue - 1;
150
0
      olsHrdParams[i].duBitRateValueMinus1[j][0] =  duBitRateValue - 1;
151
0
      olsHrdParams[i].cbrFlag[j][0] =  false;
152
153
0
      olsHrdParams[i].bitRateValueMinus1[j][1] =  bitrateValue - 1;
154
0
      olsHrdParams[i].cpbSizeValueMinus1[j][1] =  cpbSizeValue - 1;
155
0
      olsHrdParams[i].duCpbSizeValueMinus1[j][1] =  duCpbSizeValue - 1;
156
0
      olsHrdParams[i].duBitRateValueMinus1[j][1] =  duBitRateValue - 1;
157
0
      olsHrdParams[i].cbrFlag[j][1] =  false;
158
0
    }
159
0
  }
160
0
}
161
162
} //namespace