Coverage Report

Created: 2026-07-30 06:27

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/vvdec/source/Lib/DecoderLib/VLCReader.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) 2018-2026, Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. & The VVdeC 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
/** \file     VLCReader.cpp
44
 *  \brief    Reader for high level syntax
45
 */
46
47
//! \ingroup DecoderLib
48
//! \{
49
50
#include "VLCReader.h"
51
52
#include "CommonLib/CommonDef.h"
53
#include "CommonLib/dtrace_next.h"
54
55
namespace vvdec
56
{
57
58
// ====================================================================================================================
59
//  read functions taking a reference for the result value
60
// ====================================================================================================================
61
62
void VLCReader::xReadFlag( uint32_t& ruiCode )
63
3.47k
{
64
3.47k
  ruiCode = m_pcBitstream->read( 1 );
65
3.47k
}
66
67
void VLCReader::xReadUvlc( uint32_t& ruiVal )
68
628
{
69
628
  ruiVal = xReadUvlc();
70
628
}
71
72
void VLCReader::xReadSvlc( int32_t& riVal )
73
0
{
74
0
  riVal = xReadSvlc();
75
0
}
76
77
void VLCReader::xReadCode( uint32_t uiLength, uint32_t& ruiCode )
78
738
{
79
738
  CHECK( uiLength == 0, "Reading a code of lenght '0'" );
80
738
  ruiCode = m_pcBitstream->read( uiLength );
81
738
}
82
83
void VLCReader::xReadSCode( uint32_t length, int32_t& value )
84
0
{
85
0
  CHECK( length == 0 || length > 31, "wrong" );
86
0
  uint32_t val = m_pcBitstream->read( length );
87
0
  value = length >= 32 ? int32_t( val ) : ( ( -int32_t( val & ( uint32_t( 1 ) << ( length - 1 ) ) ) ) | int32_t( val ) );
88
0
}
89
90
void VLCReader::xReadFlag( uint32_t& rValue, const char *pSymbolName )
91
0
{
92
0
  xReadFlag( rValue );
93
0
  DTRACE( g_trace_ctx, D_HEADER, "%-50s u(1)  : %d\n", pSymbolName, rValue );
94
0
}
95
96
void VLCReader::xReadUvlc( uint32_t& rValue, const char *pSymbolName )
97
0
{
98
0
  xReadUvlc( rValue );
99
0
  DTRACE( g_trace_ctx, D_HEADER, "%-50s ue(v) : %u\n", pSymbolName, rValue );
100
0
}
101
102
void VLCReader::xReadSvlc( int32_t& rValue, const char *pSymbolName )
103
0
{
104
0
  xReadSvlc( rValue );
105
0
  DTRACE( g_trace_ctx, D_HEADER, "%-50s se(v) : %d\n", pSymbolName, rValue );
106
0
}
107
108
void VLCReader::xReadCode( uint32_t length, uint32_t& rValue, const char *pSymbolName )
109
0
{
110
0
  xReadCode( length, rValue );
111
0
  if( length < 10 )
112
0
  {
113
0
    DTRACE( g_trace_ctx, D_HEADER, "%-50s u(%d)  : %u\n", pSymbolName, length, rValue );
114
0
  }
115
0
  else
116
0
  {
117
0
    DTRACE( g_trace_ctx, D_HEADER, "%-50s u(%d) : %u\n", pSymbolName, length, rValue );
118
0
  }
119
0
}
120
121
void VLCReader::xReadSCode( uint32_t length, int32_t& value, const char *pSymbolName )
122
0
{
123
0
  xReadSCode( length, value );
124
125
0
  if( length < 10 )
126
0
  {
127
0
    DTRACE( g_trace_ctx, D_HEADER, "%-50s i(%d)  : %d\n", pSymbolName, length, value );
128
0
  }
129
0
  else
130
0
  {
131
0
    DTRACE( g_trace_ctx, D_HEADER, "%-50s i(%d) : %d\n", pSymbolName, length, value );
132
0
  }
133
0
}
134
135
// ====================================================================================================================
136
//  read functions returning the result value
137
// ====================================================================================================================
138
139
bool VLCReader::xReadFlag()
140
24.4k
{
141
24.4k
  return m_pcBitstream->read( 1 ) & 0x1;
142
24.4k
}
143
144
uint32_t VLCReader::xReadUvlc()
145
9.31k
{
146
9.31k
  uint32_t uiVal = 0;
147
9.31k
  uint32_t uiCode = 0;
148
9.31k
  uint32_t uiLength = 0;
149
150
9.31k
  uiCode = m_pcBitstream->read( 1 );
151
9.31k
  if( 0 == uiCode )
152
3.42k
  {
153
3.42k
    uiLength = 0;
154
155
13.9k
    while( ! ( uiCode & 1 ) )
156
10.5k
    {
157
10.5k
      uiCode = m_pcBitstream->read( 1 );
158
10.5k
      uiLength++;
159
10.5k
    }
160
3.42k
    CHECK( uiLength > 31, "UVLC length overflow" );
161
162
3.42k
    uiVal = m_pcBitstream->read( uiLength );
163
164
3.42k
    uiVal += ( 1u << uiLength ) - 1;
165
3.42k
  }
166
167
9.31k
  return uiVal;
168
9.31k
}
169
170
int32_t VLCReader::xReadSvlc()
171
3.25k
{
172
3.25k
  uint32_t uiBits = m_pcBitstream->read( 1 );
173
3.25k
  if( 0 == uiBits )
174
964
  {
175
964
    uint32_t uiLength = 0;
176
177
3.54k
    while( ! ( uiBits & 1 ) )
178
2.58k
    {
179
2.58k
      uiBits = m_pcBitstream->read( 1 );
180
2.58k
      uiLength++;
181
2.58k
    }
182
964
    CHECK( uiLength > 30, "SVLC length overflow" );
183
184
962
    uiBits = m_pcBitstream->read( uiLength );
185
186
962
    uiBits += ( 1u << uiLength );
187
962
    return ( uiBits & 1 ) ? -(int32_t)( uiBits>>1 ) : (int32_t)( uiBits>>1 );
188
964
  }
189
2.28k
  else
190
2.28k
  {
191
2.28k
    return  0;
192
2.28k
  }
193
3.25k
}
194
195
uint32_t VLCReader::xReadCode( uint32_t uiLength )
196
5.17k
{
197
5.17k
  CHECK( uiLength == 0, "Reading a code of lenght '0'" );
198
5.17k
  return m_pcBitstream->read( uiLength );
199
5.17k
}
200
201
int32_t VLCReader::xReadSCode( uint32_t length )
202
0
{
203
0
  CHECK( length == 0 || length > 31, "wrong" );
204
0
  uint32_t val = m_pcBitstream->read( length );
205
0
  return  ( -int32_t( val & ( 1u << ( length - 1 ) ) ) ) | int32_t( val ) ;
206
0
}
207
208
bool VLCReader::xReadFlag( const char* pSymbolName )
209
0
{
210
0
  bool value = xReadFlag();
211
0
  DTRACE( g_trace_ctx, D_HEADER, "%-50s u(1)  : %d\n", pSymbolName, value );
212
0
  return value;
213
0
}
214
215
uint32_t VLCReader::xReadUvlc( const char* pSymbolName )
216
0
{
217
0
  uint32_t value = xReadUvlc();
218
0
  DTRACE( g_trace_ctx, D_HEADER, "%-50s ue(v) : %u\n", pSymbolName, value );
219
0
  return value;
220
0
}
221
222
int32_t VLCReader::xReadSvlc( const char* pSymbolName )
223
0
{
224
0
  int32_t value = xReadSvlc();
225
0
  DTRACE( g_trace_ctx, D_HEADER, "%-50s se(v) : %d\n", pSymbolName, value );
226
0
  return value;
227
0
}
228
229
uint32_t VLCReader::xReadCode( uint32_t length, const char* pSymbolName )
230
0
{
231
0
  uint32_t value = xReadCode( length );
232
0
  if( length < 10 )
233
0
  {
234
0
    DTRACE( g_trace_ctx, D_HEADER, "%-50s u(%d)  : %u\n", pSymbolName, length, value );
235
0
  }
236
0
  else
237
0
  {
238
0
    DTRACE( g_trace_ctx, D_HEADER, "%-50s u(%d) : %u\n", pSymbolName, length, value );
239
0
  }
240
0
  return value;
241
0
}
242
243
int32_t VLCReader::xReadSCode( uint32_t length, const char* pSymbolName )
244
0
{
245
0
  int32_t value = xReadSCode( length );
246
247
0
  if( length < 10 )
248
0
  {
249
0
    DTRACE( g_trace_ctx, D_HEADER, "%-50s i(%d)  : %d\n", pSymbolName, length, value );
250
0
  }
251
0
  else
252
0
  {
253
0
    DTRACE( g_trace_ctx, D_HEADER, "%-50s i(%d) : %d\n", pSymbolName, length, value );
254
0
  }
255
0
  return value;
256
0
}
257
258
void VLCReader::xReadRbspTrailingBits()
259
84
{
260
84
  X_READ_FLAG( rbsp_stop_one_bit );
261
84
  CHECK( rbsp_stop_one_bit != 1, "Trailing bit not '1'" );
262
72
  int cnt = 0;
263
196
  while( m_pcBitstream->getNumBitsUntilByteAligned() )
264
138
  {
265
138
    X_READ_FLAG( rbsp_alignment_zero_bit );
266
138
    CHECK( rbsp_alignment_zero_bit != 0, "Alignment bit is not '0'" );
267
124
    cnt++;
268
124
  }
269
58
  CHECK( cnt >= 8, "Read more than '8' trailing bits" );
270
58
}
271
272
}   // namespace vvdec