Coverage Report

Created: 2026-08-31 06:22

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.61k
{
64
3.61k
  ruiCode = m_pcBitstream->read( 1 );
65
3.61k
}
66
67
void VLCReader::xReadUvlc( uint32_t& ruiVal )
68
1.16k
{
69
1.16k
  ruiVal = xReadUvlc();
70
1.16k
}
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
956
{
79
956
  CHECK( uiLength == 0, "Reading a code of lenght '0'" );
80
956
  ruiCode = m_pcBitstream->read( uiLength );
81
956
}
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.9k
{
141
24.9k
  return m_pcBitstream->read( 1 ) & 0x1;
142
24.9k
}
143
144
uint32_t VLCReader::xReadUvlc()
145
9.93k
{
146
9.93k
  uint32_t uiVal = 0;
147
9.93k
  uint32_t uiCode = 0;
148
9.93k
  uint32_t uiLength = 0;
149
150
9.93k
  uiCode = m_pcBitstream->read( 1 );
151
9.93k
  if( 0 == uiCode )
152
3.45k
  {
153
3.45k
    uiLength = 0;
154
155
14.2k
    while( ! ( uiCode & 1 ) )
156
10.8k
    {
157
10.8k
      uiCode = m_pcBitstream->read( 1 );
158
10.8k
      uiLength++;
159
10.8k
    }
160
3.45k
    CHECK( uiLength > 31, "UVLC length overflow" );
161
162
3.45k
    uiVal = m_pcBitstream->read( uiLength );
163
164
3.45k
    uiVal += ( 1u << uiLength ) - 1;
165
3.45k
  }
166
167
9.93k
  return uiVal;
168
9.93k
}
169
170
int32_t VLCReader::xReadSvlc()
171
2.86k
{
172
2.86k
  uint32_t uiBits = m_pcBitstream->read( 1 );
173
2.86k
  if( 0 == uiBits )
174
878
  {
175
878
    uint32_t uiLength = 0;
176
177
3.29k
    while( ! ( uiBits & 1 ) )
178
2.41k
    {
179
2.41k
      uiBits = m_pcBitstream->read( 1 );
180
2.41k
      uiLength++;
181
2.41k
    }
182
878
    CHECK( uiLength > 30, "SVLC length overflow" );
183
184
876
    uiBits = m_pcBitstream->read( uiLength );
185
186
876
    uiBits += ( 1u << uiLength );
187
876
    return ( uiBits & 1 ) ? -(int32_t)( uiBits>>1 ) : (int32_t)( uiBits>>1 );
188
878
  }
189
1.99k
  else
190
1.99k
  {
191
1.99k
    return  0;
192
1.99k
  }
193
2.86k
}
194
195
uint32_t VLCReader::xReadCode( uint32_t uiLength )
196
5.01k
{
197
5.01k
  CHECK( uiLength == 0, "Reading a code of lenght '0'" );
198
5.01k
  return m_pcBitstream->read( uiLength );
199
5.01k
}
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
98
{
260
98
  X_READ_FLAG( rbsp_stop_one_bit );
261
98
  CHECK( rbsp_stop_one_bit != 1, "Trailing bit not '1'" );
262
66
  int cnt = 0;
263
208
  while( m_pcBitstream->getNumBitsUntilByteAligned() )
264
154
  {
265
154
    X_READ_FLAG( rbsp_alignment_zero_bit );
266
154
    CHECK( rbsp_alignment_zero_bit != 0, "Alignment bit is not '0'" );
267
142
    cnt++;
268
142
  }
269
54
  CHECK( cnt >= 8, "Read more than '8' trailing bits" );
270
54
}
271
272
}   // namespace vvdec