Coverage Report

Created: 2026-07-25 07:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavcodec/get_bits.h
Line
Count
Source
1
/*
2
 * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
3
 *
4
 * This file is part of FFmpeg.
5
 *
6
 * FFmpeg is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU Lesser General Public
8
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
10
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 * Lesser General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with FFmpeg; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
 */
20
21
/**
22
 * @file
23
 * bitstream reader API header.
24
 */
25
26
#ifndef AVCODEC_GET_BITS_H
27
#define AVCODEC_GET_BITS_H
28
29
#include <stdint.h>
30
31
#include "libavutil/common.h"
32
#include "libavutil/intreadwrite.h"
33
#include "libavutil/avassert.h"
34
35
#include "defs.h"
36
#include "mathops.h"
37
#include "vlc.h"
38
39
/*
40
 * Safe bitstream reading:
41
 * optionally, the get_bits API can check to ensure that we
42
 * don't read past input buffer boundaries. This is protected
43
 * with CONFIG_SAFE_BITSTREAM_READER at the global level, and
44
 * then below that with UNCHECKED_BITSTREAM_READER at the per-
45
 * decoder level. This means that decoders that check internally
46
 * can "#define UNCHECKED_BITSTREAM_READER 1" to disable
47
 * overread checks.
48
 * Boundary checking causes a minor performance penalty so for
49
 * applications that won't want/need this, it can be disabled
50
 * globally using "#define CONFIG_SAFE_BITSTREAM_READER 0".
51
 */
52
#ifndef UNCHECKED_BITSTREAM_READER
53
#define UNCHECKED_BITSTREAM_READER !CONFIG_SAFE_BITSTREAM_READER
54
#endif
55
56
#ifndef CACHED_BITSTREAM_READER
57
#define CACHED_BITSTREAM_READER 0
58
#endif
59
60
#if CACHED_BITSTREAM_READER
61
62
// we always want the LE implementation, to provide get_bits_le()
63
#define BITSTREAM_LE
64
65
#ifndef BITSTREAM_READER_LE
66
# define BITSTREAM_BE
67
# define BITSTREAM_DEFAULT_BE
68
#endif
69
70
#include "bitstream.h"
71
72
#undef BITSTREAM_LE
73
#undef BITSTREAM_BE
74
#undef BITSTREAM_DEFAULT_BE
75
76
typedef BitstreamContext GetBitContext;
77
78
4.93M
#define get_bits_count      bits_tell
79
#define get_bits_bytesize   bits_bytesize
80
206M
#define get_bits_left       bits_left
81
1.49M
#define skip_bits_long      bits_skip
82
7.09M
#define skip_bits           bits_skip
83
152M
#define get_bits            bits_read_nz
84
#define get_bitsz           bits_read
85
43.5M
#define get_bits_long       bits_read
86
88.8M
#define get_bits1           bits_read_bit
87
102k
#define get_bits64          bits_read_64
88
#define get_xbits           bits_read_xbits
89
1.82M
#define get_sbits           bits_read_signed_nz
90
#define get_sbits_long      bits_read_signed
91
1.44M
#define show_bits           bits_peek
92
2.32M
#define show_bits_long      bits_peek
93
9.89k
#define init_get_bits       bits_init
94
5.32M
#define init_get_bits8      bits_init8
95
909k
#define align_get_bits      bits_align
96
3.57G
#define get_vlc2            bits_read_vlc
97
841k
#define get_vlc_multi       bits_read_vlc_multi
98
99
13.6k
#define init_get_bits8_le(s, buffer, byte_size) bits_init8_le((BitstreamContextLE*)s, buffer, byte_size)
100
33.5k
#define get_bits_le(s, n)                       bits_read_le((BitstreamContextLE*)s, n)
101
102
#define show_bits1(s)       bits_peek(s, 1)
103
#define skip_bits1(s)       bits_skip(s, 1)
104
105
#define skip_1stop_8data_bits bits_skip_1stop_8data
106
107
#else   // CACHED_BITSTREAM_READER
108
109
typedef struct GetBitContext {
110
    const uint8_t *buffer;
111
    int index;
112
    int size_in_bits;
113
    int size_in_bits_plus8;
114
} GetBitContext;
115
116
static inline unsigned int get_bits(GetBitContext *s, int n);
117
static inline void skip_bits(GetBitContext *s, int n);
118
static inline unsigned int show_bits(GetBitContext *s, int n);
119
120
/* Bitstream reader API docs:
121
 * name
122
 *   arbitrary name which is used as prefix for the internal variables
123
 *
124
 * gb
125
 *   getbitcontext
126
 *
127
 * OPEN_READER(name, gb)
128
 *   load gb into local variables
129
 *
130
 * CLOSE_READER(name, gb)
131
 *   store local vars in gb
132
 *
133
 * UPDATE_CACHE(name, gb)
134
 *   Refill the internal cache from the bitstream.
135
 *   After this call at least MIN_CACHE_BITS will be available.
136
 *
137
 * GET_CACHE(name, gb)
138
 *   Will output the contents of the internal cache,
139
 *   next bit is MSB of 32 or 64 bits (FIXME 64 bits).
140
 *
141
 * SHOW_UBITS(name, gb, num)
142
 *   Will return the next num bits.
143
 *
144
 * SHOW_SBITS(name, gb, num)
145
 *   Will return the next num bits and do sign extension.
146
 *
147
 * SKIP_BITS(name, gb, num)
148
 *   Will skip over the next num bits.
149
 *   Note, this is equivalent to SKIP_CACHE; SKIP_COUNTER.
150
 *
151
 * SKIP_CACHE(name, gb, num)
152
 *   Will remove the next num bits from the cache (note SKIP_COUNTER
153
 *   MUST be called before UPDATE_CACHE / CLOSE_READER).
154
 *
155
 * SKIP_COUNTER(name, gb, num)
156
 *   Will increment the internal bit counter (see SKIP_CACHE & SKIP_BITS).
157
 *
158
 * LAST_SKIP_BITS(name, gb, num)
159
 *   Like SKIP_BITS, to be used if next call is UPDATE_CACHE or CLOSE_READER.
160
 *
161
 * BITS_LEFT(name, gb)
162
 *   Return the number of bits left
163
 *
164
 * For examples see get_bits, show_bits, skip_bits, get_vlc.
165
 */
166
167
8.58G
#define MIN_CACHE_BITS 25
168
169
#define OPEN_READER_NOSIZE_NOCACHE(name, gb)    \
170
44.6G
    unsigned int name ## _index = (gb)->index
171
172
#define OPEN_READER_NOSIZE(name, gb)            \
173
19.6G
    OPEN_READER_NOSIZE_NOCACHE(name, gb);       \
174
19.6G
    unsigned int name ## _cache
175
176
#if UNCHECKED_BITSTREAM_READER
177
405M
#define OPEN_READER(name, gb) OPEN_READER_NOSIZE(name, gb)
178
66.9M
#define OPEN_READER_SIZE(name, gb) ((void)0)
179
#define BITS_AVAILABLE(name, gb) 1
180
#else
181
43.3G
#define OPEN_READER_SIZE(name, gb) unsigned int name ## _size_plus8 = (gb)->size_in_bits_plus8
182
#define OPEN_READER(name, gb)                   \
183
18.4G
    OPEN_READER_NOSIZE(name, gb);               \
184
18.4G
    OPEN_READER_SIZE(name, gb)
185
186
5.68M
#define BITS_AVAILABLE(name, gb) name ## _index < name ## _size_plus8
187
#endif
188
189
43.8G
#define CLOSE_READER(name, gb) (gb)->index = name ## _index
190
191
18.7G
#define UPDATE_CACHE_BE_EXT(name, gb, bits, dst_bits) name ## _cache = \
192
18.7G
    AV_RB ## bits((gb)->buffer + (name ## _index >> 3)) << (name ## _index & 7) >> (bits - dst_bits)
193
194
4.84G
#define UPDATE_CACHE_LE_EXT(name, gb, bits, dst_bits) name ## _cache = \
195
4.84G
    (uint ## dst_bits ## _t)(AV_RL ## bits((gb)->buffer + (name ## _index >> 3)) >> (name ## _index & 7))
196
197
/* Using these two macros ensures that 32 bits are available. */
198
# define UPDATE_CACHE_LE_32(name, gb) UPDATE_CACHE_LE_EXT(name, (gb), 64, 32)
199
1.31M
# define UPDATE_CACHE_BE_32(name, gb) UPDATE_CACHE_BE_EXT(name, (gb), 64, 32)
200
201
4.84G
# define UPDATE_CACHE_LE(name, gb) UPDATE_CACHE_LE_EXT(name, (gb), 32, 32)
202
18.7G
# define UPDATE_CACHE_BE(name, gb) UPDATE_CACHE_BE_EXT(name, (gb), 32, 32)
203
204
#ifdef BITSTREAM_READER_LE
205
206
2.54G
# define UPDATE_CACHE(name, gb) UPDATE_CACHE_LE(name, gb)
207
# define UPDATE_CACHE_32(name, gb) UPDATE_CACHE_LE_32(name, (gb))
208
209
593M
# define SKIP_CACHE(name, gb, num) name ## _cache >>= (num)
210
211
#else
212
213
18.7G
# define UPDATE_CACHE(name, gb) UPDATE_CACHE_BE(name, gb)
214
1.31M
# define UPDATE_CACHE_32(name, gb) UPDATE_CACHE_BE_32(name, (gb))
215
216
5.12G
# define SKIP_CACHE(name, gb, num) name ## _cache <<= (num)
217
218
#endif
219
220
#if UNCHECKED_BITSTREAM_READER
221
641M
#   define SKIP_COUNTER(name, gb, num) name ## _index += (num)
222
#else
223
#   define SKIP_COUNTER(name, gb, num) \
224
47.4G
    name ## _index = FFMIN(name ## _size_plus8, name ## _index + (num))
225
#endif
226
227
77.4M
#define BITS_LEFT(name, gb) ((int)((gb)->size_in_bits - name ## _index))
228
229
#define SKIP_BITS(name, gb, num)                \
230
5.71G
    do {                                        \
231
5.71G
        SKIP_CACHE(name, gb, num);              \
232
5.71G
        SKIP_COUNTER(name, gb, num);            \
233
5.71G
    } while (0)
234
235
42.3G
#define LAST_SKIP_BITS(name, gb, num) SKIP_COUNTER(name, gb, num)
236
237
4.83G
#define SHOW_UBITS_LE(name, gb, num) zero_extend(name ## _cache, num)
238
3.64M
#define SHOW_SBITS_LE(name, gb, num) sign_extend(name ## _cache, num)
239
240
17.4G
#define SHOW_UBITS_BE(name, gb, num) NEG_USR32(name ## _cache, num)
241
912M
#define SHOW_SBITS_BE(name, gb, num) NEG_SSR32(name ## _cache, num)
242
243
#ifdef BITSTREAM_READER_LE
244
2.54G
#   define SHOW_UBITS(name, gb, num) SHOW_UBITS_LE(name, gb, num)
245
3.64M
#   define SHOW_SBITS(name, gb, num) SHOW_SBITS_LE(name, gb, num)
246
#else
247
17.4G
#   define SHOW_UBITS(name, gb, num) SHOW_UBITS_BE(name, gb, num)
248
912M
#   define SHOW_SBITS(name, gb, num) SHOW_SBITS_BE(name, gb, num)
249
#endif
250
251
913M
#define GET_CACHE(name, gb) ((uint32_t) name ## _cache)
252
253
254
static inline int get_bits_count(const GetBitContext *s)
255
9.46G
{
256
9.46G
    return s->index;
257
9.46G
}
Unexecuted instantiation: mpegvideo_motion.c:get_bits_count
wmv2dec.c:get_bits_count
Line
Count
Source
255
7.65M
{
256
7.65M
    return s->index;
257
7.65M
}
aac_adtstoasc.c:get_bits_count
Line
Count
Source
255
1.73k
{
256
1.73k
    return s->index;
257
1.73k
}
Unexecuted instantiation: dovi_rpu.c:get_bits_count
Unexecuted instantiation: dovi_split.c:get_bits_count
Unexecuted instantiation: dts2pts.c:get_bits_count
Unexecuted instantiation: eac3_core.c:get_bits_count
Unexecuted instantiation: evc_frame_merge.c:get_bits_count
extract_extradata.c:get_bits_count
Line
Count
Source
255
15.9M
{
256
15.9M
    return s->index;
257
15.9M
}
Unexecuted instantiation: h264_metadata.c:get_bits_count
Unexecuted instantiation: h264_redundant_pps.c:get_bits_count
Unexecuted instantiation: h265_metadata.c:get_bits_count
Unexecuted instantiation: h266_metadata.c:get_bits_count
Unexecuted instantiation: lcevc_merge.c:get_bits_count
Unexecuted instantiation: lcevc_metadata.c:get_bits_count
Unexecuted instantiation: remove_extradata.c:get_bits_count
truehd_core.c:get_bits_count
Line
Count
Source
255
4.41k
{
256
4.41k
    return s->index;
257
4.41k
}
Unexecuted instantiation: vp9_raw_reorder.c:get_bits_count
Unexecuted instantiation: vp9_superframe.c:get_bits_count
Unexecuted instantiation: vp9_superframe_split.c:get_bits_count
cbs.c:get_bits_count
Line
Count
Source
255
3.60G
{
256
3.60G
    return s->index;
257
3.60G
}
cbs_apv.c:get_bits_count
Line
Count
Source
255
381k
{
256
381k
    return s->index;
257
381k
}
cbs_av1.c:get_bits_count
Line
Count
Source
255
161M
{
256
161M
    return s->index;
257
161M
}
cbs_h264.c:get_bits_count
Line
Count
Source
255
1.15M
{
256
1.15M
    return s->index;
257
1.15M
}
cbs_h2645.c:get_bits_count
Line
Count
Source
255
997M
{
256
997M
    return s->index;
257
997M
}
cbs_h265.c:get_bits_count
Line
Count
Source
255
2.49M
{
256
2.49M
    return s->index;
257
2.49M
}
cbs_h266.c:get_bits_count
Line
Count
Source
255
15.0M
{
256
15.0M
    return s->index;
257
15.0M
}
cbs_lcevc.c:get_bits_count
Line
Count
Source
255
39.8M
{
256
39.8M
    return s->index;
257
39.8M
}
cbs_mpeg2.c:get_bits_count
Line
Count
Source
255
7.94M
{
256
7.94M
    return s->index;
257
7.94M
}
cbs_sei.c:get_bits_count
Line
Count
Source
255
342M
{
256
342M
    return s->index;
257
342M
}
cbs_vp8.c:get_bits_count
Line
Count
Source
255
31.5M
{
256
31.5M
    return s->index;
257
31.5M
}
cbs_vp9.c:get_bits_count
Line
Count
Source
255
5.47M
{
256
5.47M
    return s->index;
257
5.47M
}
dovi_rpudec.c:get_bits_count
Line
Count
Source
255
45.9k
{
256
45.9k
    return s->index;
257
45.9k
}
Unexecuted instantiation: evc_parse.c:get_bits_count
Unexecuted instantiation: evc_ps.c:get_bits_count
h263dec.c:get_bits_count
Line
Count
Source
255
640k
{
256
640k
    return s->index;
257
640k
}
Unexecuted instantiation: h2645_parse.c:get_bits_count
Unexecuted instantiation: h264_parse.c:get_bits_count
h264_ps.c:get_bits_count
Line
Count
Source
255
6.88M
{
256
6.88M
    return s->index;
257
6.88M
}
Unexecuted instantiation: h264data.c:get_bits_count
Unexecuted instantiation: h265_profile_level.c:get_bits_count
ps.c:get_bits_count
Line
Count
Source
255
38.6M
{
256
38.6M
    return s->index;
257
38.6M
}
intelh263dec.c:get_bits_count
Line
Count
Source
255
226k
{
256
226k
    return s->index;
257
226k
}
intrax8.c:get_bits_count
Line
Count
Source
255
244k
{
256
244k
    return s->index;
257
244k
}
ituh263dec.c:get_bits_count
Line
Count
Source
255
52.8M
{
256
52.8M
    return s->index;
257
52.8M
}
Unexecuted instantiation: mlp_parse.c:get_bits_count
mpeg4audio.c:get_bits_count
Line
Count
Source
255
131M
{
256
131M
    return s->index;
257
131M
}
mpeg4videodec.c:get_bits_count
Line
Count
Source
255
85.7M
{
256
85.7M
    return s->index;
257
85.7M
}
Unexecuted instantiation: mpeg_er.c:get_bits_count
Unexecuted instantiation: mpegvideo_dec.c:get_bits_count
msmpeg4dec.c:get_bits_count
Line
Count
Source
255
18.8M
{
256
18.8M
    return s->index;
257
18.8M
}
rv10.c:get_bits_count
Line
Count
Source
255
11.2M
{
256
11.2M
    return s->index;
257
11.2M
}
ac3_parser.c:get_bits_count
Line
Count
Source
255
1.52M
{
256
1.52M
    return s->index;
257
1.52M
}
Unexecuted instantiation: adts_header.c:get_bits_count
av1_parse.c:get_bits_count
Line
Count
Source
255
2.49M
{
256
2.49M
    return s->index;
257
2.49M
}
flvdec.c:get_bits_count
Line
Count
Source
255
90.7k
{
256
90.7k
    return s->index;
257
90.7k
}
Unexecuted instantiation: h2645_vui.c:get_bits_count
Unexecuted instantiation: vc1_parser.c:get_bits_count
vorbis_parser.c:get_bits_count
Line
Count
Source
255
2.36M
{
256
2.36M
    return s->index;
257
2.36M
}
Unexecuted instantiation: vp9_parser.c:get_bits_count
Unexecuted instantiation: vvc_parser.c:get_bits_count
Unexecuted instantiation: aac_ac3_parser.c:get_bits_count
Unexecuted instantiation: av1_parser.c:get_bits_count
Unexecuted instantiation: avs2_parser.c:get_bits_count
Unexecuted instantiation: avs3_parser.c:get_bits_count
Unexecuted instantiation: cavs_parser.c:get_bits_count
Unexecuted instantiation: dca_parser.c:get_bits_count
Unexecuted instantiation: dolby_e_parser.c:get_bits_count
Unexecuted instantiation: evc_parser.c:get_bits_count
Unexecuted instantiation: ffv1_parser.c:get_bits_count
Unexecuted instantiation: flac_parser.c:get_bits_count
Unexecuted instantiation: ftr_parser.c:get_bits_count
h264_parser.c:get_bits_count
Line
Count
Source
255
15.7M
{
256
15.7M
    return s->index;
257
15.7M
}
h264_sei.c:get_bits_count
Line
Count
Source
255
9.57M
{
256
9.57M
    return s->index;
257
9.57M
}
Unexecuted instantiation: h264idct.c:get_bits_count
Unexecuted instantiation: parser.c:get_bits_count
sei.c:get_bits_count
Line
Count
Source
255
4.42M
{
256
4.42M
    return s->index;
257
4.42M
}
jpegxl_parser.c:get_bits_count
Line
Count
Source
255
178M
{
256
178M
    return s->index;
257
178M
}
Unexecuted instantiation: jpegxs_parser.c:get_bits_count
lcevc_parser.c:get_bits_count
Line
Count
Source
255
316
{
256
316
    return s->index;
257
316
}
Unexecuted instantiation: mlp_parser.c:get_bits_count
Unexecuted instantiation: mpeg4video_parser.c:get_bits_count
vc1.c:get_bits_count
Line
Count
Source
255
724k
{
256
724k
    return s->index;
257
724k
}
Unexecuted instantiation: vc1data.c:get_bits_count
Unexecuted instantiation: dca.c:get_bits_count
dca_exss.c:get_bits_count
Line
Count
Source
255
3.02M
{
256
3.02M
    return s->index;
257
3.02M
}
dolby_e_parse.c:get_bits_count
Line
Count
Source
255
195k
{
256
195k
    return s->index;
257
195k
}
Unexecuted instantiation: ffv1.c:get_bits_count
Unexecuted instantiation: ffv1_parse.c:get_bits_count
flac.c:get_bits_count
Line
Count
Source
255
11.5M
{
256
11.5M
    return s->index;
257
11.5M
}
Unexecuted instantiation: h2645_sei.c:get_bits_count
Unexecuted instantiation: parse.c:get_bits_count
jpegxl_parse.c:get_bits_count
Line
Count
Source
255
21.3M
{
256
21.3M
    return s->index;
257
21.3M
}
aom_film_grain.c:get_bits_count
Line
Count
Source
255
627k
{
256
627k
    return s->index;
257
627k
}
dynamic_hdr_vivid.c:get_bits_count
Line
Count
Source
255
646k
{
256
646k
    return s->index;
257
646k
}
hdr_dynamic_metadata.c:get_bits_count
Line
Count
Source
255
5.11M
{
256
5.11M
    return s->index;
257
5.11M
}
av1dec.c:get_bits_count
Line
Count
Source
255
6.30M
{
256
6.30M
    return s->index;
257
6.30M
}
Unexecuted instantiation: bit.c:get_bits_count
Unexecuted instantiation: dtsdec.c:get_bits_count
Unexecuted instantiation: dtshddec.c:get_bits_count
Unexecuted instantiation: h264dec.c:get_bits_count
Unexecuted instantiation: hls_sample_encryption.c:get_bits_count
Unexecuted instantiation: isom.c:get_bits_count
Unexecuted instantiation: matroskadec.c:get_bits_count
Unexecuted instantiation: mov.c:get_bits_count
mpc8.c:get_bits_count
Line
Count
Source
255
2.28M
{
256
2.28M
    return s->index;
257
2.28M
}
mpegts.c:get_bits_count
Line
Count
Source
255
14.8k
{
256
14.8k
    return s->index;
257
14.8k
}
Unexecuted instantiation: oggparsetheora.c:get_bits_count
Unexecuted instantiation: shortendec.c:get_bits_count
Unexecuted instantiation: swfdec.c:get_bits_count
Unexecuted instantiation: takdec.c:get_bits_count
iamf_parse.c:get_bits_count
Line
Count
Source
255
3.81M
{
256
3.81M
    return s->index;
257
3.81M
}
Unexecuted instantiation: dirac.c:get_bits_count
atrac9dec.c:get_bits_count
Line
Count
Source
255
2.73M
{
256
2.73M
    return s->index;
257
2.73M
}
Unexecuted instantiation: enc.c:get_bits_count
Unexecuted instantiation: enc_psy.c:get_bits_count
Unexecuted instantiation: pvq.c:get_bits_count
Unexecuted instantiation: rc.c:get_bits_count
Unexecuted instantiation: celt.c:get_bits_count
Unexecuted instantiation: gsmdec.c:get_bits_count
Unexecuted instantiation: msgsmdec.c:get_bits_count
imc.c:get_bits_count
Line
Count
Source
255
29.9M
{
256
29.9M
    return s->index;
257
29.9M
}
adpcm.c:get_bits_count
Line
Count
Source
255
71.7M
{
256
71.7M
    return s->index;
257
71.7M
}
Unexecuted instantiation: wmaenc.c:get_bits_count
Unexecuted instantiation: wma.c:get_bits_count
cfhd.c:get_bits_count
Line
Count
Source
255
5.00k
{
256
5.00k
    return s->index;
257
5.00k
}
wavarc.c:get_bits_count
Line
Count
Source
255
21.8M
{
256
21.8M
    return s->index;
257
21.8M
}
escape130.c:get_bits_count
Line
Count
Source
255
8.73M
{
256
8.73M
    return s->index;
257
8.73M
}
asvdec.c:get_bits_count
Line
Count
Source
255
199k
{
256
199k
    return s->index;
257
199k
}
diracdec.c:get_bits_count
Line
Count
Source
255
31.1M
{
256
31.1M
    return s->index;
257
31.1M
}
dirac_arith.c:get_bits_count
Line
Count
Source
255
749k
{
256
749k
    return s->index;
257
749k
}
wmadec.c:get_bits_count
Line
Count
Source
255
448k
{
256
448k
    return s->index;
257
448k
}
Unexecuted instantiation: aacenc.c:get_bits_count
imm4.c:get_bits_count
Line
Count
Source
255
108k
{
256
108k
    return s->index;
257
108k
}
exr.c:get_bits_count
Line
Count
Source
255
74.2M
{
256
74.2M
    return s->index;
257
74.2M
}
aacdec.c:get_bits_count
Line
Count
Source
255
11.2M
{
256
11.2M
    return s->index;
257
11.2M
}
Unexecuted instantiation: aacdec_fixed.c:get_bits_count
Unexecuted instantiation: aacdec_float.c:get_bits_count
Unexecuted instantiation: aacdec_tab.c:get_bits_count
aacdec_usac.c:get_bits_count
Line
Count
Source
255
1.52M
{
256
1.52M
    return s->index;
257
1.52M
}
Unexecuted instantiation: aacdec_usac_mps212.c:get_bits_count
aacps_common.c:get_bits_count
Line
Count
Source
255
4.28M
{
256
4.28M
    return s->index;
257
4.28M
}
aacsbr.c:get_bits_count
Line
Count
Source
255
1.62M
{
256
1.62M
    return s->index;
257
1.62M
}
aacsbr_fixed.c:get_bits_count
Line
Count
Source
255
654k
{
256
654k
    return s->index;
257
654k
}
Unexecuted instantiation: aacdec_ac.c:get_bits_count
Unexecuted instantiation: aacdec_lpd.c:get_bits_count
Unexecuted instantiation: aacps_fixed.c:get_bits_count
Unexecuted instantiation: aacps_float.c:get_bits_count
mjpegdec.c:get_bits_count
Line
Count
Source
255
189M
{
256
189M
    return s->index;
257
189M
}
Unexecuted instantiation: mjpegdec_common.c:get_bits_count
jpeglsdec.c:get_bits_count
Line
Count
Source
255
46.6M
{
256
46.6M
    return s->index;
257
46.6M
}
Unexecuted instantiation: jvdec.c:get_bits_count
Unexecuted instantiation: rdt.c:get_bits_count
Unexecuted instantiation: rtpdec_h261.c:get_bits_count
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bits_count
Unexecuted instantiation: rtpdec_latm.c:get_bits_count
Unexecuted instantiation: rtpdec_mpeg4.c:get_bits_count
Unexecuted instantiation: rtpdec_qt.c:get_bits_count
h264_cavlc.c:get_bits_count
Line
Count
Source
255
10.2k
{
256
10.2k
    return s->index;
257
10.2k
}
Unexecuted instantiation: h264_direct.c:get_bits_count
Unexecuted instantiation: h264_mb.c:get_bits_count
Unexecuted instantiation: h264_picture.c:get_bits_count
Unexecuted instantiation: h264_refs.c:get_bits_count
h264_slice.c:get_bits_count
Line
Count
Source
255
10.4M
{
256
10.4M
    return s->index;
257
10.4M
}
Unexecuted instantiation: h264_cabac.c:get_bits_count
Unexecuted instantiation: h264_loopfilter.c:get_bits_count
alsdec.c:get_bits_count
Line
Count
Source
255
65.8M
{
256
65.8M
    return s->index;
257
65.8M
}
bgmc.c:get_bits_count
Line
Count
Source
255
29.6k
{
256
29.6k
    return s->index;
257
29.6k
}
Unexecuted instantiation: mlz.c:get_bits_count
bonk.c:get_bits_count
Line
Count
Source
255
1.60M
{
256
1.60M
    return s->index;
257
1.60M
}
Unexecuted instantiation: mxpegdec.c:get_bits_count
Unexecuted instantiation: rv30.c:get_bits_count
rv34.c:get_bits_count
Line
Count
Source
255
7.69M
{
256
7.69M
    return s->index;
257
7.69M
}
indeo3.c:get_bits_count
Line
Count
Source
255
156k
{
256
156k
    return s->index;
257
156k
}
Unexecuted instantiation: eamad.c:get_bits_count
Unexecuted instantiation: mpeg12.c:get_bits_count
g726.c:get_bits_count
Line
Count
Source
255
273k
{
256
273k
    return s->index;
257
273k
}
vc1dec.c:get_bits_count
Line
Count
Source
255
312k
{
256
312k
    return s->index;
257
312k
}
vc1_block.c:get_bits_count
Line
Count
Source
255
336M
{
256
336M
    return s->index;
257
336M
}
Unexecuted instantiation: vc1_loopfilter.c:get_bits_count
Unexecuted instantiation: vc1_mc.c:get_bits_count
Unexecuted instantiation: vc1_pred.c:get_bits_count
mpegaudiodec_float.c:get_bits_count
Line
Count
Source
255
36.3M
{
256
36.3M
    return s->index;
257
36.3M
}
huffyuvdec.c:get_bits_count
Line
Count
Source
255
20.5M
{
256
20.5M
    return s->index;
257
20.5M
}
speexdec.c:get_bits_count
Line
Count
Source
255
4.74M
{
256
4.74M
    return s->index;
257
4.74M
}
atrac3plusdec.c:get_bits_count
Line
Count
Source
255
2.37M
{
256
2.37M
    return s->index;
257
2.37M
}
Unexecuted instantiation: atrac3plusdsp.c:get_bits_count
Unexecuted instantiation: atrac3plus.c:get_bits_count
Unexecuted instantiation: mss4.c:get_bits_count
Unexecuted instantiation: tiff.c:get_bits_count
faxcompr.c:get_bits_count
Line
Count
Source
255
10.9M
{
256
10.9M
    return s->index;
257
10.9M
}
Unexecuted instantiation: ac3dec_float.c:get_bits_count
Unexecuted instantiation: on2avc.c:get_bits_count
smacker.c:get_bits_count
Line
Count
Source
255
712M
{
256
712M
    return s->index;
257
712M
}
dvbsubdec.c:get_bits_count
Line
Count
Source
255
1.66M
{
256
1.66M
    return s->index;
257
1.66M
}
mss1.c:get_bits_count
Line
Count
Source
255
164M
{
256
164M
    return s->index;
257
164M
}
Unexecuted instantiation: mss12.c:get_bits_count
mss2.c:get_bits_count
Line
Count
Source
255
412k
{
256
412k
    return s->index;
257
412k
}
mdec.c:get_bits_count
Line
Count
Source
255
7.10M
{
256
7.10M
    return s->index;
257
7.10M
}
osq.c:get_bits_count
Line
Count
Source
255
7.71M
{
256
7.71M
    return s->index;
257
7.71M
}
vp6.c:get_bits_count
Line
Count
Source
255
35.4M
{
256
35.4M
    return s->index;
257
35.4M
}
Unexecuted instantiation: vp56.c:get_bits_count
Unexecuted instantiation: vp56data.c:get_bits_count
loco.c:get_bits_count
Line
Count
Source
255
3.62M
{
256
3.62M
    return s->index;
257
3.62M
}
Unexecuted instantiation: vp5.c:get_bits_count
Unexecuted instantiation: ra144dec.c:get_bits_count
indeo5.c:get_bits_count
Line
Count
Source
255
1.71M
{
256
1.71M
    return s->index;
257
1.71M
}
ivi.c:get_bits_count
Line
Count
Source
255
3.66M
{
256
3.66M
    return s->index;
257
3.66M
}
Unexecuted instantiation: ivi_dsp.c:get_bits_count
apac.c:get_bits_count
Line
Count
Source
255
351M
{
256
351M
    return s->index;
257
351M
}
clearvideo.c:get_bits_count
Line
Count
Source
255
3.72M
{
256
3.72M
    return s->index;
257
3.72M
}
dxtory.c:get_bits_count
Line
Count
Source
255
3.72M
{
256
3.72M
    return s->index;
257
3.72M
}
mpegaudiodec_fixed.c:get_bits_count
Line
Count
Source
255
24.4M
{
256
24.4M
    return s->index;
257
24.4M
}
ralf.c:get_bits_count
Line
Count
Source
255
1.05M
{
256
1.05M
    return s->index;
257
1.05M
}
pixlet.c:get_bits_count
Line
Count
Source
255
107k
{
256
107k
    return s->index;
257
107k
}
Unexecuted instantiation: wnv1.c:get_bits_count
Unexecuted instantiation: qoadec.c:get_bits_count
Unexecuted instantiation: vima.c:get_bits_count
leaddec.c:get_bits_count
Line
Count
Source
255
1.42M
{
256
1.42M
    return s->index;
257
1.42M
}
Unexecuted instantiation: eatqi.c:get_bits_count
Unexecuted instantiation: lagarith.c:get_bits_count
lagarithrac.c:get_bits_count
Line
Count
Source
255
22.2k
{
256
22.2k
    return s->index;
257
22.2k
}
Unexecuted instantiation: dss_sp.c:get_bits_count
siren.c:get_bits_count
Line
Count
Source
255
60.7M
{
256
60.7M
    return s->index;
257
60.7M
}
cavsdec.c:get_bits_count
Line
Count
Source
255
3.67M
{
256
3.67M
    return s->index;
257
3.67M
}
Unexecuted instantiation: cavs.c:get_bits_count
Unexecuted instantiation: cavsdata.c:get_bits_count
hcom.c:get_bits_count
Line
Count
Source
255
23.0M
{
256
23.0M
    return s->index;
257
23.0M
}
vp3.c:get_bits_count
Line
Count
Source
255
247M
{
256
247M
    return s->index;
257
247M
}
webp.c:get_bits_count
Line
Count
Source
255
411M
{
256
411M
    return s->index;
257
411M
}
eatgv.c:get_bits_count
Line
Count
Source
255
3.32k
{
256
3.32k
    return s->index;
257
3.32k
}
Unexecuted instantiation: eatgq.c:get_bits_count
Unexecuted instantiation: sga.c:get_bits_count
binkaudio.c:get_bits_count
Line
Count
Source
255
3.65M
{
256
3.65M
    return s->index;
257
3.65M
}
mpeg12dec.c:get_bits_count
Line
Count
Source
255
5.04M
{
256
5.04M
    return s->index;
257
5.04M
}
indeo2.c:get_bits_count
Line
Count
Source
255
10.1M
{
256
10.1M
    return s->index;
257
10.1M
}
4xm.c:get_bits_count
Line
Count
Source
255
613k
{
256
613k
    return s->index;
257
613k
}
wmalosslessdec.c:get_bits_count
Line
Count
Source
255
31.2M
{
256
31.2M
    return s->index;
257
31.2M
}
Unexecuted instantiation: ilbcdec.c:get_bits_count
hevcdec.c:get_bits_count
Line
Count
Source
255
746k
{
256
746k
    return s->index;
257
746k
}
Unexecuted instantiation: mvs.c:get_bits_count
Unexecuted instantiation: pred.c:get_bits_count
Unexecuted instantiation: refs.c:get_bits_count
Unexecuted instantiation: cabac.c:get_bits_count
Unexecuted instantiation: dsp.c:get_bits_count
Unexecuted instantiation: filter.c:get_bits_count
tscc2.c:get_bits_count
Line
Count
Source
255
1.10k
{
256
1.10k
    return s->index;
257
1.10k
}
Unexecuted instantiation: hqx.c:get_bits_count
mobiclip.c:get_bits_count
Line
Count
Source
255
2.37M
{
256
2.37M
    return s->index;
257
2.37M
}
wmaprodec.c:get_bits_count
Line
Count
Source
255
25.7M
{
256
25.7M
    return s->index;
257
25.7M
}
Unexecuted instantiation: g729dec.c:get_bits_count
Unexecuted instantiation: sipr.c:get_bits_count
Unexecuted instantiation: g722dec.c:get_bits_count
Unexecuted instantiation: nellymoserdec.c:get_bits_count
Unexecuted instantiation: dcaenc.c:get_bits_count
Unexecuted instantiation: dcaadpcm.c:get_bits_count
Unexecuted instantiation: dcadata.c:get_bits_count
interplayvideo.c:get_bits_count
Line
Count
Source
255
379k
{
256
379k
    return s->index;
257
379k
}
Unexecuted instantiation: dec.c:get_bits_count
Unexecuted instantiation: dec_celt.c:get_bits_count
Unexecuted instantiation: silk.c:get_bits_count
Unexecuted instantiation: mjpegbdec.c:get_bits_count
bink.c:get_bits_count
Line
Count
Source
255
30.4M
{
256
30.4M
    return s->index;
257
30.4M
}
dvdsubdec.c:get_bits_count
Line
Count
Source
255
15.0M
{
256
15.0M
    return s->index;
257
15.0M
}
rtjpeg.c:get_bits_count
Line
Count
Source
255
64.4M
{
256
64.4M
    return s->index;
257
64.4M
}
Unexecuted instantiation: truespeech.c:get_bits_count
metasound.c:get_bits_count
Line
Count
Source
255
447k
{
256
447k
    return s->index;
257
447k
}
escape124.c:get_bits_count
Line
Count
Source
255
10.7M
{
256
10.7M
    return s->index;
257
10.7M
}
cllc.c:get_bits_count
Line
Count
Source
255
195k
{
256
195k
    return s->index;
257
195k
}
dvdec.c:get_bits_count
Line
Count
Source
255
41.2M
{
256
41.2M
    return s->index;
257
41.2M
}
tta.c:get_bits_count
Line
Count
Source
255
130M
{
256
130M
    return s->index;
257
130M
}
fraps.c:get_bits_count
Line
Count
Source
255
567k
{
256
567k
    return s->index;
257
567k
}
Unexecuted instantiation: motionpixels.c:get_bits_count
vp9.c:get_bits_count
Line
Count
Source
255
701k
{
256
701k
    return s->index;
257
701k
}
Unexecuted instantiation: vp9block.c:get_bits_count
Unexecuted instantiation: vp9data.c:get_bits_count
Unexecuted instantiation: vp9lpf.c:get_bits_count
Unexecuted instantiation: vp9mvs.c:get_bits_count
Unexecuted instantiation: vp9prob.c:get_bits_count
Unexecuted instantiation: vp9recon.c:get_bits_count
ffv1dec.c:get_bits_count
Line
Count
Source
255
10.5M
{
256
10.5M
    return s->index;
257
10.5M
}
Unexecuted instantiation: intra_utils.c:get_bits_count
Unexecuted instantiation: thread.c:get_bits_count
Unexecuted instantiation: ctu.c:get_bits_count
Unexecuted instantiation: inter.c:get_bits_count
Unexecuted instantiation: intra.c:get_bits_count
wmavoice.c:get_bits_count
Line
Count
Source
255
3.72M
{
256
3.72M
    return s->index;
257
3.72M
}
Unexecuted instantiation: rawdec.c:get_bits_count
svq1dec.c:get_bits_count
Line
Count
Source
255
151k
{
256
151k
    return s->index;
257
151k
}
mpc7.c:get_bits_count
Line
Count
Source
255
119k
{
256
119k
    return s->index;
257
119k
}
Unexecuted instantiation: truemotion2rt.c:get_bits_count
Unexecuted instantiation: adxdec.c:get_bits_count
rv40.c:get_bits_count
Line
Count
Source
255
966k
{
256
966k
    return s->index;
257
966k
}
xsubdec.c:get_bits_count
Line
Count
Source
255
2.15M
{
256
2.15M
    return s->index;
257
2.15M
}
Unexecuted instantiation: notchlc.c:get_bits_count
aic.c:get_bits_count
Line
Count
Source
255
456k
{
256
456k
    return s->index;
257
456k
}
vqcdec.c:get_bits_count
Line
Count
Source
255
16.6M
{
256
16.6M
    return s->index;
257
16.6M
}
dolby_e.c:get_bits_count
Line
Count
Source
255
9.65k
{
256
9.65k
    return s->index;
257
9.65k
}
proresdec.c:get_bits_count
Line
Count
Source
255
880k
{
256
880k
    return s->index;
257
880k
}
Unexecuted instantiation: evrcdec.c:get_bits_count
Unexecuted instantiation: dnxhddec.c:get_bits_count
Unexecuted instantiation: dcadec.c:get_bits_count
dca_core.c:get_bits_count
Line
Count
Source
255
1.43M
{
256
1.43M
    return s->index;
257
1.43M
}
dca_lbr.c:get_bits_count
Line
Count
Source
255
5.14M
{
256
5.14M
    return s->index;
257
5.14M
}
dca_xll.c:get_bits_count
Line
Count
Source
255
5.59M
{
256
5.59M
    return s->index;
257
5.59M
}
Unexecuted instantiation: mlpenc.c:get_bits_count
mlpdec.c:get_bits_count
Line
Count
Source
255
674k
{
256
674k
    return s->index;
257
674k
}
atrac3.c:get_bits_count
Line
Count
Source
255
6.15M
{
256
6.15M
    return s->index;
257
6.15M
}
Unexecuted instantiation: vorbisdec.c:get_bits_count
flashsv.c:get_bits_count
Line
Count
Source
255
1.26M
{
256
1.26M
    return s->index;
257
1.26M
}
wavpack.c:get_bits_count
Line
Count
Source
255
10.9M
{
256
10.9M
    return s->index;
257
10.9M
}
Unexecuted instantiation: speedhqdec.c:get_bits_count
Unexecuted instantiation: g723_1dec.c:get_bits_count
g2meet.c:get_bits_count
Line
Count
Source
255
50.3k
{
256
50.3k
    return s->index;
257
50.3k
}
shorten.c:get_bits_count
Line
Count
Source
255
98.3k
{
256
98.3k
    return s->index;
257
98.3k
}
indeo4.c:get_bits_count
Line
Count
Source
255
3.23M
{
256
3.23M
    return s->index;
257
3.23M
}
Unexecuted instantiation: sp5xdec.c:get_bits_count
Unexecuted instantiation: atrac1.c:get_bits_count
Unexecuted instantiation: apv_decode.c:get_bits_count
apv_entropy.c:get_bits_count
Line
Count
Source
255
46.2k
{
256
46.2k
    return s->index;
257
46.2k
}
avs.c:get_bits_count
Line
Count
Source
255
422k
{
256
422k
    return s->index;
257
422k
}
rv60dec.c:get_bits_count
Line
Count
Source
255
60.8k
{
256
60.8k
    return s->index;
257
60.8k
}
alac.c:get_bits_count
Line
Count
Source
255
22.4M
{
256
22.4M
    return s->index;
257
22.4M
}
tiertexseqv.c:get_bits_count
Line
Count
Source
255
56.3k
{
256
56.3k
    return s->index;
257
56.3k
}
Unexecuted instantiation: ffv1enc.c:get_bits_count
Unexecuted instantiation: hcadec.c:get_bits_count
Unexecuted instantiation: pcx.c:get_bits_count
Unexecuted instantiation: qcelpdec.c:get_bits_count
flacdec.c:get_bits_count
Line
Count
Source
255
1.20M
{
256
1.20M
    return s->index;
257
1.20M
}
Unexecuted instantiation: ac3dec_fixed.c:get_bits_count
Unexecuted instantiation: midivid.c:get_bits_count
Unexecuted instantiation: mimic.c:get_bits_count
fic.c:get_bits_count
Line
Count
Source
255
3.22M
{
256
3.22M
    return s->index;
257
3.22M
}
qdmc.c:get_bits_count
Line
Count
Source
255
7.63M
{
256
7.63M
    return s->index;
257
7.63M
}
Unexecuted instantiation: ra288.c:get_bits_count
interplayacm.c:get_bits_count
Line
Count
Source
255
227k
{
256
227k
    return s->index;
257
227k
}
ylc.c:get_bits_count
Line
Count
Source
255
19.5M
{
256
19.5M
    return s->index;
257
19.5M
}
Unexecuted instantiation: ftr.c:get_bits_count
agm.c:get_bits_count
Line
Count
Source
255
14.6M
{
256
14.6M
    return s->index;
257
14.6M
}
xan.c:get_bits_count
Line
Count
Source
255
4.09M
{
256
4.09M
    return s->index;
257
4.09M
}
svq3.c:get_bits_count
Line
Count
Source
255
2.88M
{
256
2.88M
    return s->index;
257
2.88M
}
cri.c:get_bits_count
Line
Count
Source
255
194k
{
256
194k
    return s->index;
257
194k
}
qdm2.c:get_bits_count
Line
Count
Source
255
8.17M
{
256
8.17M
    return s->index;
257
8.17M
}
Unexecuted instantiation: cljrdec.c:get_bits_count
Unexecuted instantiation: g728dec.c:get_bits_count
cook.c:get_bits_count
Line
Count
Source
255
3.28M
{
256
3.28M
    return s->index;
257
3.28M
}
twinvqdec.c:get_bits_count
Line
Count
Source
255
230k
{
256
230k
    return s->index;
257
230k
}
hq_hqa.c:get_bits_count
Line
Count
Source
255
27.0k
{
256
27.0k
    return s->index;
257
27.0k
}
Unexecuted instantiation: cdxl.c:get_bits_count
vble.c:get_bits_count
Line
Count
Source
255
110k
{
256
110k
    return s->index;
257
110k
}
mv30.c:get_bits_count
Line
Count
Source
255
910k
{
256
910k
    return s->index;
257
910k
}
apedec.c:get_bits_count
Line
Count
Source
255
2.64M
{
256
2.64M
    return s->index;
257
2.64M
}
h261dec.c:get_bits_count
Line
Count
Source
255
1.91M
{
256
1.91M
    return s->index;
257
1.91M
}
dstdec.c:get_bits_count
Line
Count
Source
255
309k
{
256
309k
    return s->index;
257
309k
}
jpeglsenc.c:get_bits_count
Line
Count
Source
255
5.58M
{
256
5.58M
    return s->index;
257
5.58M
}
truemotion2.c:get_bits_count
Line
Count
Source
255
3.06M
{
256
3.06M
    return s->index;
257
3.06M
}
258
259
/**
260
 * Get the size of the GetBitContext's buffer in bytes.
261
 *
262
 * @param s        the GetBitContext
263
 * @param round_up If set, the number of bits will be rounded up to full bytes;
264
 *                 this does not matter if the number of bits is known to be
265
 *                 a multiple of eight, e.g. if the GetBitContext has been
266
 *                 initialized with init_get_bits8.
267
 */
268
static inline int get_bits_bytesize(const GetBitContext *s, int round_up)
269
16.4M
{
270
16.4M
    return (s->size_in_bits + (round_up ? 7 : 0)) >> 3;
271
16.4M
}
Unexecuted instantiation: mpegvideo_motion.c:get_bits_bytesize
Unexecuted instantiation: wmv2dec.c:get_bits_bytesize
Unexecuted instantiation: aac_adtstoasc.c:get_bits_bytesize
Unexecuted instantiation: dovi_rpu.c:get_bits_bytesize
Unexecuted instantiation: dovi_split.c:get_bits_bytesize
Unexecuted instantiation: dts2pts.c:get_bits_bytesize
Unexecuted instantiation: eac3_core.c:get_bits_bytesize
Unexecuted instantiation: evc_frame_merge.c:get_bits_bytesize
Unexecuted instantiation: extract_extradata.c:get_bits_bytesize
Unexecuted instantiation: h264_metadata.c:get_bits_bytesize
Unexecuted instantiation: h264_redundant_pps.c:get_bits_bytesize
Unexecuted instantiation: h265_metadata.c:get_bits_bytesize
Unexecuted instantiation: h266_metadata.c:get_bits_bytesize
Unexecuted instantiation: lcevc_merge.c:get_bits_bytesize
Unexecuted instantiation: lcevc_metadata.c:get_bits_bytesize
Unexecuted instantiation: remove_extradata.c:get_bits_bytesize
Unexecuted instantiation: truehd_core.c:get_bits_bytesize
Unexecuted instantiation: vp9_raw_reorder.c:get_bits_bytesize
Unexecuted instantiation: vp9_superframe.c:get_bits_bytesize
Unexecuted instantiation: vp9_superframe_split.c:get_bits_bytesize
Unexecuted instantiation: cbs.c:get_bits_bytesize
Unexecuted instantiation: cbs_apv.c:get_bits_bytesize
Unexecuted instantiation: cbs_av1.c:get_bits_bytesize
Unexecuted instantiation: cbs_h264.c:get_bits_bytesize
Unexecuted instantiation: cbs_h2645.c:get_bits_bytesize
Unexecuted instantiation: cbs_h265.c:get_bits_bytesize
Unexecuted instantiation: cbs_h266.c:get_bits_bytesize
Unexecuted instantiation: cbs_lcevc.c:get_bits_bytesize
Unexecuted instantiation: cbs_mpeg2.c:get_bits_bytesize
Unexecuted instantiation: cbs_sei.c:get_bits_bytesize
Unexecuted instantiation: cbs_vp8.c:get_bits_bytesize
Unexecuted instantiation: cbs_vp9.c:get_bits_bytesize
Unexecuted instantiation: dovi_rpudec.c:get_bits_bytesize
Unexecuted instantiation: evc_parse.c:get_bits_bytesize
Unexecuted instantiation: evc_ps.c:get_bits_bytesize
h263dec.c:get_bits_bytesize
Line
Count
Source
269
2.87k
{
270
2.87k
    return (s->size_in_bits + (round_up ? 7 : 0)) >> 3;
271
2.87k
}
Unexecuted instantiation: h2645_parse.c:get_bits_bytesize
Unexecuted instantiation: h264_parse.c:get_bits_bytesize
h264_ps.c:get_bits_bytesize
Line
Count
Source
269
6.39M
{
270
6.39M
    return (s->size_in_bits + (round_up ? 7 : 0)) >> 3;
271
6.39M
}
Unexecuted instantiation: h264data.c:get_bits_bytesize
Unexecuted instantiation: h265_profile_level.c:get_bits_bytesize
ps.c:get_bits_bytesize
Line
Count
Source
269
10.0M
{
270
10.0M
    return (s->size_in_bits + (round_up ? 7 : 0)) >> 3;
271
10.0M
}
Unexecuted instantiation: intelh263dec.c:get_bits_bytesize
Unexecuted instantiation: intrax8.c:get_bits_bytesize
Unexecuted instantiation: ituh263dec.c:get_bits_bytesize
Unexecuted instantiation: mlp_parse.c:get_bits_bytesize
Unexecuted instantiation: mpeg4audio.c:get_bits_bytesize
Unexecuted instantiation: mpeg4videodec.c:get_bits_bytesize
Unexecuted instantiation: mpeg_er.c:get_bits_bytesize
Unexecuted instantiation: mpegvideo_dec.c:get_bits_bytesize
Unexecuted instantiation: msmpeg4dec.c:get_bits_bytesize
Unexecuted instantiation: rv10.c:get_bits_bytesize
Unexecuted instantiation: ac3_parser.c:get_bits_bytesize
Unexecuted instantiation: adts_header.c:get_bits_bytesize
Unexecuted instantiation: av1_parse.c:get_bits_bytesize
Unexecuted instantiation: flvdec.c:get_bits_bytesize
Unexecuted instantiation: h2645_vui.c:get_bits_bytesize
Unexecuted instantiation: vc1_parser.c:get_bits_bytesize
Unexecuted instantiation: vorbis_parser.c:get_bits_bytesize
Unexecuted instantiation: vp9_parser.c:get_bits_bytesize
Unexecuted instantiation: vvc_parser.c:get_bits_bytesize
Unexecuted instantiation: aac_ac3_parser.c:get_bits_bytesize
Unexecuted instantiation: av1_parser.c:get_bits_bytesize
Unexecuted instantiation: avs2_parser.c:get_bits_bytesize
Unexecuted instantiation: avs3_parser.c:get_bits_bytesize
Unexecuted instantiation: cavs_parser.c:get_bits_bytesize
Unexecuted instantiation: dca_parser.c:get_bits_bytesize
Unexecuted instantiation: dolby_e_parser.c:get_bits_bytesize
Unexecuted instantiation: evc_parser.c:get_bits_bytesize
Unexecuted instantiation: ffv1_parser.c:get_bits_bytesize
Unexecuted instantiation: flac_parser.c:get_bits_bytesize
Unexecuted instantiation: ftr_parser.c:get_bits_bytesize
Unexecuted instantiation: h264_parser.c:get_bits_bytesize
Unexecuted instantiation: h264_sei.c:get_bits_bytesize
Unexecuted instantiation: h264idct.c:get_bits_bytesize
Unexecuted instantiation: parser.c:get_bits_bytesize
Unexecuted instantiation: sei.c:get_bits_bytesize
Unexecuted instantiation: jpegxl_parser.c:get_bits_bytesize
Unexecuted instantiation: jpegxs_parser.c:get_bits_bytesize
Unexecuted instantiation: lcevc_parser.c:get_bits_bytesize
Unexecuted instantiation: mlp_parser.c:get_bits_bytesize
Unexecuted instantiation: mpeg4video_parser.c:get_bits_bytesize
Unexecuted instantiation: vc1.c:get_bits_bytesize
Unexecuted instantiation: vc1data.c:get_bits_bytesize
Unexecuted instantiation: dca.c:get_bits_bytesize
Unexecuted instantiation: dca_exss.c:get_bits_bytesize
Unexecuted instantiation: dolby_e_parse.c:get_bits_bytesize
Unexecuted instantiation: ffv1.c:get_bits_bytesize
Unexecuted instantiation: ffv1_parse.c:get_bits_bytesize
Unexecuted instantiation: flac.c:get_bits_bytesize
Unexecuted instantiation: h2645_sei.c:get_bits_bytesize
Unexecuted instantiation: parse.c:get_bits_bytesize
Unexecuted instantiation: jpegxl_parse.c:get_bits_bytesize
Unexecuted instantiation: aom_film_grain.c:get_bits_bytesize
Unexecuted instantiation: dynamic_hdr_vivid.c:get_bits_bytesize
Unexecuted instantiation: hdr_dynamic_metadata.c:get_bits_bytesize
Unexecuted instantiation: av1dec.c:get_bits_bytesize
Unexecuted instantiation: bit.c:get_bits_bytesize
Unexecuted instantiation: dtsdec.c:get_bits_bytesize
Unexecuted instantiation: dtshddec.c:get_bits_bytesize
Unexecuted instantiation: h264dec.c:get_bits_bytesize
Unexecuted instantiation: hls_sample_encryption.c:get_bits_bytesize
Unexecuted instantiation: isom.c:get_bits_bytesize
Unexecuted instantiation: matroskadec.c:get_bits_bytesize
Unexecuted instantiation: mlpdec.c:get_bits_bytesize
Unexecuted instantiation: mov.c:get_bits_bytesize
Unexecuted instantiation: mpc8.c:get_bits_bytesize
Unexecuted instantiation: mpegts.c:get_bits_bytesize
Unexecuted instantiation: oggparsetheora.c:get_bits_bytesize
Unexecuted instantiation: shortendec.c:get_bits_bytesize
Unexecuted instantiation: swfdec.c:get_bits_bytesize
Unexecuted instantiation: takdec.c:get_bits_bytesize
Unexecuted instantiation: iamf_parse.c:get_bits_bytesize
Unexecuted instantiation: dirac.c:get_bits_bytesize
Unexecuted instantiation: atrac9dec.c:get_bits_bytesize
Unexecuted instantiation: enc.c:get_bits_bytesize
Unexecuted instantiation: enc_psy.c:get_bits_bytesize
Unexecuted instantiation: pvq.c:get_bits_bytesize
Unexecuted instantiation: rc.c:get_bits_bytesize
Unexecuted instantiation: celt.c:get_bits_bytesize
Unexecuted instantiation: gsmdec.c:get_bits_bytesize
Unexecuted instantiation: msgsmdec.c:get_bits_bytesize
Unexecuted instantiation: imc.c:get_bits_bytesize
Unexecuted instantiation: adpcm.c:get_bits_bytesize
Unexecuted instantiation: wmaenc.c:get_bits_bytesize
Unexecuted instantiation: wma.c:get_bits_bytesize
Unexecuted instantiation: cfhd.c:get_bits_bytesize
Unexecuted instantiation: wavarc.c:get_bits_bytesize
Unexecuted instantiation: escape130.c:get_bits_bytesize
Unexecuted instantiation: asvdec.c:get_bits_bytesize
Unexecuted instantiation: diracdec.c:get_bits_bytesize
Unexecuted instantiation: dirac_arith.c:get_bits_bytesize
Unexecuted instantiation: wmadec.c:get_bits_bytesize
Unexecuted instantiation: aacenc.c:get_bits_bytesize
Unexecuted instantiation: imm4.c:get_bits_bytesize
Unexecuted instantiation: exr.c:get_bits_bytesize
Unexecuted instantiation: aacdec.c:get_bits_bytesize
Unexecuted instantiation: aacdec_fixed.c:get_bits_bytesize
Unexecuted instantiation: aacdec_float.c:get_bits_bytesize
Unexecuted instantiation: aacdec_tab.c:get_bits_bytesize
Unexecuted instantiation: aacdec_usac.c:get_bits_bytesize
Unexecuted instantiation: aacdec_usac_mps212.c:get_bits_bytesize
Unexecuted instantiation: aacps_common.c:get_bits_bytesize
Unexecuted instantiation: aacsbr.c:get_bits_bytesize
Unexecuted instantiation: aacsbr_fixed.c:get_bits_bytesize
Unexecuted instantiation: aacdec_ac.c:get_bits_bytesize
Unexecuted instantiation: aacdec_lpd.c:get_bits_bytesize
Unexecuted instantiation: aacps_fixed.c:get_bits_bytesize
Unexecuted instantiation: aacps_float.c:get_bits_bytesize
Unexecuted instantiation: mjpegdec.c:get_bits_bytesize
Unexecuted instantiation: mjpegdec_common.c:get_bits_bytesize
Unexecuted instantiation: jpeglsdec.c:get_bits_bytesize
Unexecuted instantiation: jvdec.c:get_bits_bytesize
Unexecuted instantiation: rdt.c:get_bits_bytesize
Unexecuted instantiation: rtpdec_h261.c:get_bits_bytesize
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bits_bytesize
Unexecuted instantiation: rtpdec_latm.c:get_bits_bytesize
Unexecuted instantiation: rtpdec_mpeg4.c:get_bits_bytesize
Unexecuted instantiation: rtpdec_qt.c:get_bits_bytesize
Unexecuted instantiation: h264_cavlc.c:get_bits_bytesize
Unexecuted instantiation: h264_direct.c:get_bits_bytesize
Unexecuted instantiation: h264_mb.c:get_bits_bytesize
Unexecuted instantiation: h264_picture.c:get_bits_bytesize
Unexecuted instantiation: h264_refs.c:get_bits_bytesize
Unexecuted instantiation: h264_slice.c:get_bits_bytesize
Unexecuted instantiation: h264_cabac.c:get_bits_bytesize
Unexecuted instantiation: h264_loopfilter.c:get_bits_bytesize
Unexecuted instantiation: alsdec.c:get_bits_bytesize
Unexecuted instantiation: bgmc.c:get_bits_bytesize
Unexecuted instantiation: mlz.c:get_bits_bytesize
Unexecuted instantiation: bonk.c:get_bits_bytesize
Unexecuted instantiation: mxpegdec.c:get_bits_bytesize
Unexecuted instantiation: rv30.c:get_bits_bytesize
Unexecuted instantiation: rv34.c:get_bits_bytesize
Unexecuted instantiation: indeo3.c:get_bits_bytesize
Unexecuted instantiation: eamad.c:get_bits_bytesize
Unexecuted instantiation: mpeg12.c:get_bits_bytesize
Unexecuted instantiation: g726.c:get_bits_bytesize
Unexecuted instantiation: vc1dec.c:get_bits_bytesize
Unexecuted instantiation: vc1_block.c:get_bits_bytesize
Unexecuted instantiation: vc1_loopfilter.c:get_bits_bytesize
Unexecuted instantiation: vc1_mc.c:get_bits_bytesize
Unexecuted instantiation: vc1_pred.c:get_bits_bytesize
Unexecuted instantiation: mpegaudiodec_float.c:get_bits_bytesize
Unexecuted instantiation: huffyuvdec.c:get_bits_bytesize
Unexecuted instantiation: speexdec.c:get_bits_bytesize
Unexecuted instantiation: atrac3plusdec.c:get_bits_bytesize
Unexecuted instantiation: atrac3plusdsp.c:get_bits_bytesize
Unexecuted instantiation: atrac3plus.c:get_bits_bytesize
Unexecuted instantiation: mss4.c:get_bits_bytesize
Unexecuted instantiation: tiff.c:get_bits_bytesize
Unexecuted instantiation: faxcompr.c:get_bits_bytesize
Unexecuted instantiation: ac3dec_float.c:get_bits_bytesize
Unexecuted instantiation: on2avc.c:get_bits_bytesize
Unexecuted instantiation: smacker.c:get_bits_bytesize
Unexecuted instantiation: dvbsubdec.c:get_bits_bytesize
Unexecuted instantiation: mss1.c:get_bits_bytesize
Unexecuted instantiation: mss12.c:get_bits_bytesize
Unexecuted instantiation: mss2.c:get_bits_bytesize
Unexecuted instantiation: mdec.c:get_bits_bytesize
Unexecuted instantiation: osq.c:get_bits_bytesize
Unexecuted instantiation: vp6.c:get_bits_bytesize
Unexecuted instantiation: vp56.c:get_bits_bytesize
Unexecuted instantiation: vp56data.c:get_bits_bytesize
Unexecuted instantiation: loco.c:get_bits_bytesize
Unexecuted instantiation: vp5.c:get_bits_bytesize
Unexecuted instantiation: ra144dec.c:get_bits_bytesize
Unexecuted instantiation: indeo5.c:get_bits_bytesize
Unexecuted instantiation: ivi.c:get_bits_bytesize
Unexecuted instantiation: ivi_dsp.c:get_bits_bytesize
Unexecuted instantiation: apac.c:get_bits_bytesize
Unexecuted instantiation: clearvideo.c:get_bits_bytesize
Unexecuted instantiation: dxtory.c:get_bits_bytesize
Unexecuted instantiation: mpegaudiodec_fixed.c:get_bits_bytesize
Unexecuted instantiation: ralf.c:get_bits_bytesize
Unexecuted instantiation: pixlet.c:get_bits_bytesize
Unexecuted instantiation: wnv1.c:get_bits_bytesize
Unexecuted instantiation: qoadec.c:get_bits_bytesize
Unexecuted instantiation: vima.c:get_bits_bytesize
Unexecuted instantiation: leaddec.c:get_bits_bytesize
Unexecuted instantiation: eatqi.c:get_bits_bytesize
Unexecuted instantiation: lagarith.c:get_bits_bytesize
Unexecuted instantiation: lagarithrac.c:get_bits_bytesize
Unexecuted instantiation: dss_sp.c:get_bits_bytesize
Unexecuted instantiation: siren.c:get_bits_bytesize
Unexecuted instantiation: cavsdec.c:get_bits_bytesize
Unexecuted instantiation: cavs.c:get_bits_bytesize
Unexecuted instantiation: cavsdata.c:get_bits_bytesize
Unexecuted instantiation: hcom.c:get_bits_bytesize
Unexecuted instantiation: vp3.c:get_bits_bytesize
Unexecuted instantiation: webp.c:get_bits_bytesize
Unexecuted instantiation: eatgv.c:get_bits_bytesize
Unexecuted instantiation: eatgq.c:get_bits_bytesize
Unexecuted instantiation: sga.c:get_bits_bytesize
Unexecuted instantiation: binkaudio.c:get_bits_bytesize
Unexecuted instantiation: mpeg12dec.c:get_bits_bytesize
Unexecuted instantiation: indeo2.c:get_bits_bytesize
Unexecuted instantiation: 4xm.c:get_bits_bytesize
Unexecuted instantiation: wmalosslessdec.c:get_bits_bytesize
Unexecuted instantiation: ilbcdec.c:get_bits_bytesize
hevcdec.c:get_bits_bytesize
Line
Count
Source
269
59.1k
{
270
59.1k
    return (s->size_in_bits + (round_up ? 7 : 0)) >> 3;
271
59.1k
}
Unexecuted instantiation: mvs.c:get_bits_bytesize
Unexecuted instantiation: pred.c:get_bits_bytesize
Unexecuted instantiation: refs.c:get_bits_bytesize
Unexecuted instantiation: cabac.c:get_bits_bytesize
Unexecuted instantiation: dsp.c:get_bits_bytesize
Unexecuted instantiation: filter.c:get_bits_bytesize
Unexecuted instantiation: tscc2.c:get_bits_bytesize
Unexecuted instantiation: hqx.c:get_bits_bytesize
Unexecuted instantiation: mobiclip.c:get_bits_bytesize
Unexecuted instantiation: wmaprodec.c:get_bits_bytesize
Unexecuted instantiation: g729dec.c:get_bits_bytesize
Unexecuted instantiation: sipr.c:get_bits_bytesize
Unexecuted instantiation: g722dec.c:get_bits_bytesize
Unexecuted instantiation: nellymoserdec.c:get_bits_bytesize
Unexecuted instantiation: dcaenc.c:get_bits_bytesize
Unexecuted instantiation: dcaadpcm.c:get_bits_bytesize
Unexecuted instantiation: dcadata.c:get_bits_bytesize
Unexecuted instantiation: interplayvideo.c:get_bits_bytesize
Unexecuted instantiation: dec.c:get_bits_bytesize
Unexecuted instantiation: dec_celt.c:get_bits_bytesize
Unexecuted instantiation: silk.c:get_bits_bytesize
Unexecuted instantiation: mjpegbdec.c:get_bits_bytesize
Unexecuted instantiation: bink.c:get_bits_bytesize
Unexecuted instantiation: dvdsubdec.c:get_bits_bytesize
Unexecuted instantiation: rtjpeg.c:get_bits_bytesize
Unexecuted instantiation: truespeech.c:get_bits_bytesize
Unexecuted instantiation: metasound.c:get_bits_bytesize
Unexecuted instantiation: escape124.c:get_bits_bytesize
Unexecuted instantiation: cllc.c:get_bits_bytesize
Unexecuted instantiation: dvdec.c:get_bits_bytesize
Unexecuted instantiation: tta.c:get_bits_bytesize
Unexecuted instantiation: fraps.c:get_bits_bytesize
Unexecuted instantiation: motionpixels.c:get_bits_bytesize
Unexecuted instantiation: vp9.c:get_bits_bytesize
Unexecuted instantiation: vp9block.c:get_bits_bytesize
Unexecuted instantiation: vp9data.c:get_bits_bytesize
Unexecuted instantiation: vp9lpf.c:get_bits_bytesize
Unexecuted instantiation: vp9mvs.c:get_bits_bytesize
Unexecuted instantiation: vp9prob.c:get_bits_bytesize
Unexecuted instantiation: vp9recon.c:get_bits_bytesize
Unexecuted instantiation: ffv1dec.c:get_bits_bytesize
Unexecuted instantiation: intra_utils.c:get_bits_bytesize
Unexecuted instantiation: thread.c:get_bits_bytesize
Unexecuted instantiation: ctu.c:get_bits_bytesize
Unexecuted instantiation: inter.c:get_bits_bytesize
Unexecuted instantiation: intra.c:get_bits_bytesize
Unexecuted instantiation: wmavoice.c:get_bits_bytesize
Unexecuted instantiation: rawdec.c:get_bits_bytesize
Unexecuted instantiation: svq1dec.c:get_bits_bytesize
Unexecuted instantiation: mpc7.c:get_bits_bytesize
Unexecuted instantiation: truemotion2rt.c:get_bits_bytesize
Unexecuted instantiation: adxdec.c:get_bits_bytesize
Unexecuted instantiation: rv40.c:get_bits_bytesize
Unexecuted instantiation: xsubdec.c:get_bits_bytesize
Unexecuted instantiation: notchlc.c:get_bits_bytesize
Unexecuted instantiation: aic.c:get_bits_bytesize
Unexecuted instantiation: vqcdec.c:get_bits_bytesize
Unexecuted instantiation: dolby_e.c:get_bits_bytesize
Unexecuted instantiation: proresdec.c:get_bits_bytesize
Unexecuted instantiation: evrcdec.c:get_bits_bytesize
Unexecuted instantiation: dnxhddec.c:get_bits_bytesize
Unexecuted instantiation: dcadec.c:get_bits_bytesize
Unexecuted instantiation: dca_core.c:get_bits_bytesize
Unexecuted instantiation: dca_lbr.c:get_bits_bytesize
Unexecuted instantiation: dca_xll.c:get_bits_bytesize
Unexecuted instantiation: mlpenc.c:get_bits_bytesize
Unexecuted instantiation: atrac3.c:get_bits_bytesize
Unexecuted instantiation: vorbisdec.c:get_bits_bytesize
Unexecuted instantiation: flashsv.c:get_bits_bytesize
Unexecuted instantiation: wavpack.c:get_bits_bytesize
Unexecuted instantiation: speedhqdec.c:get_bits_bytesize
Unexecuted instantiation: g723_1dec.c:get_bits_bytesize
Unexecuted instantiation: g2meet.c:get_bits_bytesize
Unexecuted instantiation: shorten.c:get_bits_bytesize
Unexecuted instantiation: indeo4.c:get_bits_bytesize
Unexecuted instantiation: sp5xdec.c:get_bits_bytesize
Unexecuted instantiation: atrac1.c:get_bits_bytesize
Unexecuted instantiation: apv_decode.c:get_bits_bytesize
Unexecuted instantiation: apv_entropy.c:get_bits_bytesize
Unexecuted instantiation: avs.c:get_bits_bytesize
Unexecuted instantiation: rv60dec.c:get_bits_bytesize
Unexecuted instantiation: alac.c:get_bits_bytesize
Unexecuted instantiation: tiertexseqv.c:get_bits_bytesize
Unexecuted instantiation: ffv1enc.c:get_bits_bytesize
Unexecuted instantiation: hcadec.c:get_bits_bytesize
Unexecuted instantiation: pcx.c:get_bits_bytesize
Unexecuted instantiation: qcelpdec.c:get_bits_bytesize
Unexecuted instantiation: flacdec.c:get_bits_bytesize
Unexecuted instantiation: ac3dec_fixed.c:get_bits_bytesize
Unexecuted instantiation: midivid.c:get_bits_bytesize
Unexecuted instantiation: mimic.c:get_bits_bytesize
Unexecuted instantiation: fic.c:get_bits_bytesize
Unexecuted instantiation: qdmc.c:get_bits_bytesize
Unexecuted instantiation: ra288.c:get_bits_bytesize
Unexecuted instantiation: interplayacm.c:get_bits_bytesize
Unexecuted instantiation: ylc.c:get_bits_bytesize
Unexecuted instantiation: ftr.c:get_bits_bytesize
Unexecuted instantiation: agm.c:get_bits_bytesize
Unexecuted instantiation: xan.c:get_bits_bytesize
Unexecuted instantiation: svq3.c:get_bits_bytesize
Unexecuted instantiation: cri.c:get_bits_bytesize
Unexecuted instantiation: qdm2.c:get_bits_bytesize
Unexecuted instantiation: cljrdec.c:get_bits_bytesize
Unexecuted instantiation: g728dec.c:get_bits_bytesize
Unexecuted instantiation: cook.c:get_bits_bytesize
Unexecuted instantiation: twinvqdec.c:get_bits_bytesize
Unexecuted instantiation: hq_hqa.c:get_bits_bytesize
Unexecuted instantiation: cdxl.c:get_bits_bytesize
Unexecuted instantiation: vble.c:get_bits_bytesize
Unexecuted instantiation: mv30.c:get_bits_bytesize
Unexecuted instantiation: apedec.c:get_bits_bytesize
Unexecuted instantiation: h261dec.c:get_bits_bytesize
Unexecuted instantiation: dstdec.c:get_bits_bytesize
Unexecuted instantiation: jpeglsenc.c:get_bits_bytesize
Unexecuted instantiation: truemotion2.c:get_bits_bytesize
272
273
/**
274
 * Skips the specified number of bits.
275
 * @param n the number of bits to skip,
276
 *          For the UNCHECKED_BITSTREAM_READER this must not cause the distance
277
 *          from the start to overflow int32_t. Staying within the bitstream + padding
278
 *          is sufficient, too.
279
 */
280
static inline void skip_bits_long(GetBitContext *s, int n)
281
1.78G
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
1.75G
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
#endif
287
1.78G
}
Unexecuted instantiation: mpegvideo_motion.c:skip_bits_long
Unexecuted instantiation: wmv2dec.c:skip_bits_long
Unexecuted instantiation: aac_adtstoasc.c:skip_bits_long
Unexecuted instantiation: dovi_rpu.c:skip_bits_long
Unexecuted instantiation: dovi_split.c:skip_bits_long
Unexecuted instantiation: dts2pts.c:skip_bits_long
Unexecuted instantiation: eac3_core.c:skip_bits_long
Unexecuted instantiation: evc_frame_merge.c:skip_bits_long
Unexecuted instantiation: extract_extradata.c:skip_bits_long
Unexecuted instantiation: h264_metadata.c:skip_bits_long
Unexecuted instantiation: h264_redundant_pps.c:skip_bits_long
Unexecuted instantiation: h265_metadata.c:skip_bits_long
Unexecuted instantiation: h266_metadata.c:skip_bits_long
Unexecuted instantiation: lcevc_merge.c:skip_bits_long
Unexecuted instantiation: lcevc_metadata.c:skip_bits_long
Unexecuted instantiation: remove_extradata.c:skip_bits_long
Unexecuted instantiation: truehd_core.c:skip_bits_long
Unexecuted instantiation: vp9_raw_reorder.c:skip_bits_long
Unexecuted instantiation: vp9_superframe.c:skip_bits_long
Unexecuted instantiation: vp9_superframe_split.c:skip_bits_long
cbs.c:skip_bits_long
Line
Count
Source
281
1.01G
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
1.01G
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
1.01G
#endif
287
1.01G
}
cbs_apv.c:skip_bits_long
Line
Count
Source
281
30.3k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
30.3k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
30.3k
#endif
287
30.3k
}
Unexecuted instantiation: cbs_av1.c:skip_bits_long
Unexecuted instantiation: cbs_h264.c:skip_bits_long
cbs_h2645.c:skip_bits_long
Line
Count
Source
281
160M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
160M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
160M
#endif
287
160M
}
Unexecuted instantiation: cbs_h265.c:skip_bits_long
cbs_h266.c:skip_bits_long
Line
Count
Source
281
16.8k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
16.8k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
16.8k
#endif
287
16.8k
}
cbs_lcevc.c:skip_bits_long
Line
Count
Source
281
19.5M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
19.5M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
19.5M
#endif
287
19.5M
}
Unexecuted instantiation: cbs_mpeg2.c:skip_bits_long
cbs_sei.c:skip_bits_long
Line
Count
Source
281
104M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
104M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
104M
#endif
287
104M
}
Unexecuted instantiation: cbs_vp8.c:skip_bits_long
Unexecuted instantiation: cbs_vp9.c:skip_bits_long
dovi_rpudec.c:skip_bits_long
Line
Count
Source
281
32.2k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
32.2k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
32.2k
#endif
287
32.2k
}
evc_parse.c:skip_bits_long
Line
Count
Source
281
350k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
350k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
350k
#endif
287
350k
}
evc_ps.c:skip_bits_long
Line
Count
Source
281
2.82M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
2.82M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
2.82M
#endif
287
2.82M
}
Unexecuted instantiation: h263dec.c:skip_bits_long
Unexecuted instantiation: h2645_parse.c:skip_bits_long
Unexecuted instantiation: h264_parse.c:skip_bits_long
h264_ps.c:skip_bits_long
Line
Count
Source
281
12.2M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
12.2M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
12.2M
#endif
287
12.2M
}
Unexecuted instantiation: h264data.c:skip_bits_long
Unexecuted instantiation: h265_profile_level.c:skip_bits_long
ps.c:skip_bits_long
Line
Count
Source
281
294M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
294M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
294M
#endif
287
294M
}
Unexecuted instantiation: intelh263dec.c:skip_bits_long
Unexecuted instantiation: intrax8.c:skip_bits_long
Unexecuted instantiation: ituh263dec.c:skip_bits_long
mlp_parse.c:skip_bits_long
Line
Count
Source
281
620k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
620k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
620k
#endif
287
620k
}
mpeg4audio.c:skip_bits_long
Line
Count
Source
281
2.32k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
2.32k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
2.32k
#endif
287
2.32k
}
mpeg4videodec.c:skip_bits_long
Line
Count
Source
281
768k
{
282
768k
#if UNCHECKED_BITSTREAM_READER
283
768k
    s->index += n;
284
#else
285
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
#endif
287
768k
}
Unexecuted instantiation: mpeg_er.c:skip_bits_long
Unexecuted instantiation: mpegvideo_dec.c:skip_bits_long
Unexecuted instantiation: msmpeg4dec.c:skip_bits_long
Unexecuted instantiation: rv10.c:skip_bits_long
ac3_parser.c:skip_bits_long
Line
Count
Source
281
459k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
459k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
459k
#endif
287
459k
}
Unexecuted instantiation: adts_header.c:skip_bits_long
Unexecuted instantiation: av1_parse.c:skip_bits_long
Unexecuted instantiation: flvdec.c:skip_bits_long
Unexecuted instantiation: h2645_vui.c:skip_bits_long
Unexecuted instantiation: vc1_parser.c:skip_bits_long
vorbis_parser.c:skip_bits_long
Line
Count
Source
281
4.58k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
4.58k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
4.58k
#endif
287
4.58k
}
Unexecuted instantiation: vp9_parser.c:skip_bits_long
Unexecuted instantiation: vvc_parser.c:skip_bits_long
Unexecuted instantiation: aac_ac3_parser.c:skip_bits_long
Unexecuted instantiation: av1_parser.c:skip_bits_long
Unexecuted instantiation: avs2_parser.c:skip_bits_long
Unexecuted instantiation: avs3_parser.c:skip_bits_long
Unexecuted instantiation: cavs_parser.c:skip_bits_long
dca_parser.c:skip_bits_long
Line
Count
Source
281
41.8k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
41.8k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
41.8k
#endif
287
41.8k
}
Unexecuted instantiation: dolby_e_parser.c:skip_bits_long
Unexecuted instantiation: evc_parser.c:skip_bits_long
Unexecuted instantiation: ffv1_parser.c:skip_bits_long
Unexecuted instantiation: flac_parser.c:skip_bits_long
Unexecuted instantiation: ftr_parser.c:skip_bits_long
h264_parser.c:skip_bits_long
Line
Count
Source
281
22.0M
{
282
22.0M
#if UNCHECKED_BITSTREAM_READER
283
22.0M
    s->index += n;
284
#else
285
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
#endif
287
22.0M
}
h264_sei.c:skip_bits_long
Line
Count
Source
281
330k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
330k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
330k
#endif
287
330k
}
Unexecuted instantiation: h264idct.c:skip_bits_long
Unexecuted instantiation: parser.c:skip_bits_long
sei.c:skip_bits_long
Line
Count
Source
281
378k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
378k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
378k
#endif
287
378k
}
jpegxl_parser.c:skip_bits_long
Line
Count
Source
281
8.85M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
8.85M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
8.85M
#endif
287
8.85M
}
Unexecuted instantiation: jpegxs_parser.c:skip_bits_long
Unexecuted instantiation: lcevc_parser.c:skip_bits_long
Unexecuted instantiation: mlp_parser.c:skip_bits_long
Unexecuted instantiation: mpeg4video_parser.c:skip_bits_long
Unexecuted instantiation: vc1.c:skip_bits_long
Unexecuted instantiation: vc1data.c:skip_bits_long
Unexecuted instantiation: dca.c:skip_bits_long
dca_exss.c:skip_bits_long
Line
Count
Source
281
16.6M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
16.6M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
16.6M
#endif
287
16.6M
}
dolby_e_parse.c:skip_bits_long
Line
Count
Source
281
391k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
391k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
391k
#endif
287
391k
}
Unexecuted instantiation: ffv1.c:skip_bits_long
Unexecuted instantiation: ffv1_parse.c:skip_bits_long
flac.c:skip_bits_long
Line
Count
Source
281
340
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
340
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
340
#endif
287
340
}
h2645_sei.c:skip_bits_long
Line
Count
Source
281
58.4M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
58.4M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
58.4M
#endif
287
58.4M
}
Unexecuted instantiation: parse.c:skip_bits_long
jpegxl_parse.c:skip_bits_long
Line
Count
Source
281
10.8M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
10.8M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
10.8M
#endif
287
10.8M
}
Unexecuted instantiation: aom_film_grain.c:skip_bits_long
Unexecuted instantiation: dynamic_hdr_vivid.c:skip_bits_long
Unexecuted instantiation: hdr_dynamic_metadata.c:skip_bits_long
Unexecuted instantiation: av1dec.c:skip_bits_long
Unexecuted instantiation: bit.c:skip_bits_long
dtsdec.c:skip_bits_long
Line
Count
Source
281
1.17M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
1.17M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
1.17M
#endif
287
1.17M
}
Unexecuted instantiation: dtshddec.c:skip_bits_long
h264dec.c:skip_bits_long
Line
Count
Source
281
1.73M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
1.73M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
1.73M
#endif
287
1.73M
}
Unexecuted instantiation: hls_sample_encryption.c:skip_bits_long
Unexecuted instantiation: isom.c:skip_bits_long
Unexecuted instantiation: matroskadec.c:skip_bits_long
Unexecuted instantiation: mlpdec.c:skip_bits_long
mov.c:skip_bits_long
Line
Count
Source
281
14.1k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
14.1k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
14.1k
#endif
287
14.1k
}
Unexecuted instantiation: mpc8.c:skip_bits_long
Unexecuted instantiation: mpegts.c:skip_bits_long
oggparsetheora.c:skip_bits_long
Line
Count
Source
281
42.5k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
42.5k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
42.5k
#endif
287
42.5k
}
Unexecuted instantiation: shortendec.c:skip_bits_long
Unexecuted instantiation: swfdec.c:skip_bits_long
Unexecuted instantiation: takdec.c:skip_bits_long
iamf_parse.c:skip_bits_long
Line
Count
Source
281
467k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
467k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
467k
#endif
287
467k
}
Unexecuted instantiation: dirac.c:skip_bits_long
atrac9dec.c:skip_bits_long
Line
Count
Source
281
58.7k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
58.7k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
58.7k
#endif
287
58.7k
}
Unexecuted instantiation: enc.c:skip_bits_long
Unexecuted instantiation: enc_psy.c:skip_bits_long
Unexecuted instantiation: pvq.c:skip_bits_long
Unexecuted instantiation: rc.c:skip_bits_long
Unexecuted instantiation: celt.c:skip_bits_long
Unexecuted instantiation: gsmdec.c:skip_bits_long
Unexecuted instantiation: msgsmdec.c:skip_bits_long
Unexecuted instantiation: imc.c:skip_bits_long
Unexecuted instantiation: adpcm.c:skip_bits_long
Unexecuted instantiation: wmaenc.c:skip_bits_long
Unexecuted instantiation: wma.c:skip_bits_long
Unexecuted instantiation: cfhd.c:skip_bits_long
wavarc.c:skip_bits_long
Line
Count
Source
281
6.46k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
6.46k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
6.46k
#endif
287
6.46k
}
escape130.c:skip_bits_long
Line
Count
Source
281
138k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
138k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
138k
#endif
287
138k
}
Unexecuted instantiation: asvdec.c:skip_bits_long
diracdec.c:skip_bits_long
Line
Count
Source
281
2.12M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
2.12M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
2.12M
#endif
287
2.12M
}
dirac_arith.c:skip_bits_long
Line
Count
Source
281
202k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
202k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
202k
#endif
287
202k
}
Unexecuted instantiation: wmadec.c:skip_bits_long
Unexecuted instantiation: aacenc.c:skip_bits_long
imm4.c:skip_bits_long
Line
Count
Source
281
115k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
115k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
115k
#endif
287
115k
}
Unexecuted instantiation: exr.c:skip_bits_long
aacdec.c:skip_bits_long
Line
Count
Source
281
723k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
723k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
723k
#endif
287
723k
}
Unexecuted instantiation: aacdec_fixed.c:skip_bits_long
Unexecuted instantiation: aacdec_float.c:skip_bits_long
Unexecuted instantiation: aacdec_tab.c:skip_bits_long
aacdec_usac.c:skip_bits_long
Line
Count
Source
281
38.6k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
38.6k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
38.6k
#endif
287
38.6k
}
Unexecuted instantiation: aacdec_usac_mps212.c:skip_bits_long
aacps_common.c:skip_bits_long
Line
Count
Source
281
62.4k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
62.4k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
62.4k
#endif
287
62.4k
}
aacsbr.c:skip_bits_long
Line
Count
Source
281
280k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
280k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
280k
#endif
287
280k
}
aacsbr_fixed.c:skip_bits_long
Line
Count
Source
281
194k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
194k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
194k
#endif
287
194k
}
Unexecuted instantiation: aacdec_ac.c:skip_bits_long
Unexecuted instantiation: aacdec_lpd.c:skip_bits_long
Unexecuted instantiation: aacps_fixed.c:skip_bits_long
Unexecuted instantiation: aacps_float.c:skip_bits_long
Unexecuted instantiation: mjpegdec.c:skip_bits_long
Unexecuted instantiation: mjpegdec_common.c:skip_bits_long
Unexecuted instantiation: jpeglsdec.c:skip_bits_long
Unexecuted instantiation: jvdec.c:skip_bits_long
Unexecuted instantiation: rdt.c:skip_bits_long
Unexecuted instantiation: rtpdec_h261.c:skip_bits_long
Unexecuted instantiation: rtpdec_h263_rfc2190.c:skip_bits_long
Unexecuted instantiation: rtpdec_latm.c:skip_bits_long
Unexecuted instantiation: rtpdec_mpeg4.c:skip_bits_long
Unexecuted instantiation: rtpdec_qt.c:skip_bits_long
h264_cavlc.c:skip_bits_long
Line
Count
Source
281
2.09M
{
282
2.09M
#if UNCHECKED_BITSTREAM_READER
283
2.09M
    s->index += n;
284
#else
285
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
#endif
287
2.09M
}
Unexecuted instantiation: h264_direct.c:skip_bits_long
Unexecuted instantiation: h264_mb.c:skip_bits_long
Unexecuted instantiation: h264_picture.c:skip_bits_long
h264_refs.c:skip_bits_long
Line
Count
Source
281
995k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
995k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
995k
#endif
287
995k
}
h264_slice.c:skip_bits_long
Line
Count
Source
281
5.91M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
5.91M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
5.91M
#endif
287
5.91M
}
Unexecuted instantiation: h264_cabac.c:skip_bits_long
Unexecuted instantiation: h264_loopfilter.c:skip_bits_long
alsdec.c:skip_bits_long
Line
Count
Source
281
149k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
149k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
149k
#endif
287
149k
}
bgmc.c:skip_bits_long
Line
Count
Source
281
27.3k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
27.3k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
27.3k
#endif
287
27.3k
}
Unexecuted instantiation: mlz.c:skip_bits_long
Unexecuted instantiation: bonk.c:skip_bits_long
Unexecuted instantiation: mxpegdec.c:skip_bits_long
Unexecuted instantiation: rv30.c:skip_bits_long
Unexecuted instantiation: rv34.c:skip_bits_long
indeo3.c:skip_bits_long
Line
Count
Source
281
8.55k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
8.55k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
8.55k
#endif
287
8.55k
}
Unexecuted instantiation: eamad.c:skip_bits_long
Unexecuted instantiation: mpeg12.c:skip_bits_long
Unexecuted instantiation: g726.c:skip_bits_long
Unexecuted instantiation: vc1dec.c:skip_bits_long
Unexecuted instantiation: vc1_block.c:skip_bits_long
Unexecuted instantiation: vc1_loopfilter.c:skip_bits_long
Unexecuted instantiation: vc1_mc.c:skip_bits_long
Unexecuted instantiation: vc1_pred.c:skip_bits_long
mpegaudiodec_float.c:skip_bits_long
Line
Count
Source
281
4.33M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
4.33M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
4.33M
#endif
287
4.33M
}
Unexecuted instantiation: huffyuvdec.c:skip_bits_long
speexdec.c:skip_bits_long
Line
Count
Source
281
88.1k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
88.1k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
88.1k
#endif
287
88.1k
}
Unexecuted instantiation: atrac3plusdec.c:skip_bits_long
Unexecuted instantiation: atrac3plusdsp.c:skip_bits_long
Unexecuted instantiation: atrac3plus.c:skip_bits_long
Unexecuted instantiation: mss4.c:skip_bits_long
Unexecuted instantiation: tiff.c:skip_bits_long
Unexecuted instantiation: faxcompr.c:skip_bits_long
ac3dec_float.c:skip_bits_long
Line
Count
Source
281
346k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
346k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
346k
#endif
287
346k
}
Unexecuted instantiation: on2avc.c:skip_bits_long
Unexecuted instantiation: smacker.c:skip_bits_long
Unexecuted instantiation: dvbsubdec.c:skip_bits_long
Unexecuted instantiation: mss1.c:skip_bits_long
Unexecuted instantiation: mss12.c:skip_bits_long
Unexecuted instantiation: mss2.c:skip_bits_long
Unexecuted instantiation: mdec.c:skip_bits_long
Unexecuted instantiation: osq.c:skip_bits_long
Unexecuted instantiation: vp6.c:skip_bits_long
Unexecuted instantiation: vp56.c:skip_bits_long
Unexecuted instantiation: vp56data.c:skip_bits_long
Unexecuted instantiation: loco.c:skip_bits_long
Unexecuted instantiation: vp5.c:skip_bits_long
Unexecuted instantiation: ra144dec.c:skip_bits_long
Unexecuted instantiation: indeo5.c:skip_bits_long
ivi.c:skip_bits_long
Line
Count
Source
281
2.43k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
2.43k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
2.43k
#endif
287
2.43k
}
Unexecuted instantiation: ivi_dsp.c:skip_bits_long
Unexecuted instantiation: apac.c:skip_bits_long
Unexecuted instantiation: clearvideo.c:skip_bits_long
Unexecuted instantiation: dxtory.c:skip_bits_long
mpegaudiodec_fixed.c:skip_bits_long
Line
Count
Source
281
4.55M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
4.55M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
4.55M
#endif
287
4.55M
}
Unexecuted instantiation: ralf.c:skip_bits_long
Unexecuted instantiation: pixlet.c:skip_bits_long
Unexecuted instantiation: wnv1.c:skip_bits_long
Unexecuted instantiation: qoadec.c:skip_bits_long
vima.c:skip_bits_long
Line
Count
Source
281
1.35k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
1.35k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
1.35k
#endif
287
1.35k
}
Unexecuted instantiation: leaddec.c:skip_bits_long
Unexecuted instantiation: eatqi.c:skip_bits_long
Unexecuted instantiation: lagarith.c:skip_bits_long
Unexecuted instantiation: lagarithrac.c:skip_bits_long
Unexecuted instantiation: dss_sp.c:skip_bits_long
Unexecuted instantiation: siren.c:skip_bits_long
cavsdec.c:skip_bits_long
Line
Count
Source
281
71.7k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
71.7k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
71.7k
#endif
287
71.7k
}
Unexecuted instantiation: cavs.c:skip_bits_long
Unexecuted instantiation: cavsdata.c:skip_bits_long
Unexecuted instantiation: hcom.c:skip_bits_long
vp3.c:skip_bits_long
Line
Count
Source
281
34.3k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
34.3k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
34.3k
#endif
287
34.3k
}
Unexecuted instantiation: webp.c:skip_bits_long
Unexecuted instantiation: eatgv.c:skip_bits_long
Unexecuted instantiation: eatgq.c:skip_bits_long
Unexecuted instantiation: sga.c:skip_bits_long
binkaudio.c:skip_bits_long
Line
Count
Source
281
470k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
470k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
470k
#endif
287
470k
}
Unexecuted instantiation: mpeg12dec.c:skip_bits_long
Unexecuted instantiation: indeo2.c:skip_bits_long
Unexecuted instantiation: 4xm.c:skip_bits_long
wmalosslessdec.c:skip_bits_long
Line
Count
Source
281
313k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
313k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
313k
#endif
287
313k
}
Unexecuted instantiation: ilbcdec.c:skip_bits_long
hevcdec.c:skip_bits_long
Line
Count
Source
281
852k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
852k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
852k
#endif
287
852k
}
Unexecuted instantiation: mvs.c:skip_bits_long
Unexecuted instantiation: pred.c:skip_bits_long
Unexecuted instantiation: refs.c:skip_bits_long
Unexecuted instantiation: cabac.c:skip_bits_long
Unexecuted instantiation: dsp.c:skip_bits_long
Unexecuted instantiation: filter.c:skip_bits_long
Unexecuted instantiation: tscc2.c:skip_bits_long
Unexecuted instantiation: hqx.c:skip_bits_long
Unexecuted instantiation: mobiclip.c:skip_bits_long
wmaprodec.c:skip_bits_long
Line
Count
Source
281
3.20M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
3.20M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
3.20M
#endif
287
3.20M
}
h264dec.c:skip_bits_long
Line
Count
Source
281
1.73M
{
282
1.73M
#if UNCHECKED_BITSTREAM_READER
283
1.73M
    s->index += n;
284
#else
285
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
#endif
287
1.73M
}
Unexecuted instantiation: g729dec.c:skip_bits_long
Unexecuted instantiation: sipr.c:skip_bits_long
Unexecuted instantiation: g722dec.c:skip_bits_long
nellymoserdec.c:skip_bits_long
Line
Count
Source
281
809k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
809k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
809k
#endif
287
809k
}
Unexecuted instantiation: dcaenc.c:skip_bits_long
Unexecuted instantiation: dcaadpcm.c:skip_bits_long
Unexecuted instantiation: dcadata.c:skip_bits_long
Unexecuted instantiation: interplayvideo.c:skip_bits_long
Unexecuted instantiation: dec.c:skip_bits_long
Unexecuted instantiation: dec_celt.c:skip_bits_long
Unexecuted instantiation: silk.c:skip_bits_long
Unexecuted instantiation: mjpegbdec.c:skip_bits_long
bink.c:skip_bits_long
Line
Count
Source
281
129k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
129k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
129k
#endif
287
129k
}
Unexecuted instantiation: dvdsubdec.c:skip_bits_long
Unexecuted instantiation: rtjpeg.c:skip_bits_long
Unexecuted instantiation: truespeech.c:skip_bits_long
Unexecuted instantiation: metasound.c:skip_bits_long
Unexecuted instantiation: escape124.c:skip_bits_long
Unexecuted instantiation: cllc.c:skip_bits_long
Unexecuted instantiation: dvdec.c:skip_bits_long
tta.c:skip_bits_long
Line
Count
Source
281
100k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
100k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
100k
#endif
287
100k
}
Unexecuted instantiation: fraps.c:skip_bits_long
Unexecuted instantiation: motionpixels.c:skip_bits_long
Unexecuted instantiation: vp9.c:skip_bits_long
Unexecuted instantiation: vp9block.c:skip_bits_long
Unexecuted instantiation: vp9data.c:skip_bits_long
Unexecuted instantiation: vp9lpf.c:skip_bits_long
Unexecuted instantiation: vp9mvs.c:skip_bits_long
Unexecuted instantiation: vp9prob.c:skip_bits_long
Unexecuted instantiation: vp9recon.c:skip_bits_long
Unexecuted instantiation: ffv1dec.c:skip_bits_long
Unexecuted instantiation: intra_utils.c:skip_bits_long
Unexecuted instantiation: thread.c:skip_bits_long
Unexecuted instantiation: ctu.c:skip_bits_long
Unexecuted instantiation: inter.c:skip_bits_long
Unexecuted instantiation: intra.c:skip_bits_long
wmavoice.c:skip_bits_long
Line
Count
Source
281
41.4k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
41.4k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
41.4k
#endif
287
41.4k
}
Unexecuted instantiation: rawdec.c:skip_bits_long
Unexecuted instantiation: svq1dec.c:skip_bits_long
mpc7.c:skip_bits_long
Line
Count
Source
281
139k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
139k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
139k
#endif
287
139k
}
Unexecuted instantiation: truemotion2rt.c:skip_bits_long
Unexecuted instantiation: adxdec.c:skip_bits_long
Unexecuted instantiation: rv40.c:skip_bits_long
Unexecuted instantiation: xsubdec.c:skip_bits_long
Unexecuted instantiation: notchlc.c:skip_bits_long
Unexecuted instantiation: aic.c:skip_bits_long
Unexecuted instantiation: vqcdec.c:skip_bits_long
Unexecuted instantiation: dolby_e.c:skip_bits_long
Unexecuted instantiation: proresdec.c:skip_bits_long
Unexecuted instantiation: evrcdec.c:skip_bits_long
Unexecuted instantiation: dnxhddec.c:skip_bits_long
Unexecuted instantiation: dcadec.c:skip_bits_long
dca_core.c:skip_bits_long
Line
Count
Source
281
187k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
187k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
187k
#endif
287
187k
}
dca_lbr.c:skip_bits_long
Line
Count
Source
281
304k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
304k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
304k
#endif
287
304k
}
dca_xll.c:skip_bits_long
Line
Count
Source
281
250k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
250k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
250k
#endif
287
250k
}
Unexecuted instantiation: mlpenc.c:skip_bits_long
Unexecuted instantiation: atrac3.c:skip_bits_long
Unexecuted instantiation: vorbisdec.c:skip_bits_long
flashsv.c:skip_bits_long
Line
Count
Source
281
60.4k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
60.4k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
60.4k
#endif
287
60.4k
}
Unexecuted instantiation: wavpack.c:skip_bits_long
Unexecuted instantiation: speedhqdec.c:skip_bits_long
Unexecuted instantiation: g723_1dec.c:skip_bits_long
g2meet.c:skip_bits_long
Line
Count
Source
281
668k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
668k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
668k
#endif
287
668k
}
Unexecuted instantiation: shorten.c:skip_bits_long
indeo4.c:skip_bits_long
Line
Count
Source
281
1.00k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
1.00k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
1.00k
#endif
287
1.00k
}
Unexecuted instantiation: sp5xdec.c:skip_bits_long
Unexecuted instantiation: atrac1.c:skip_bits_long
Unexecuted instantiation: apv_decode.c:skip_bits_long
Unexecuted instantiation: apv_entropy.c:skip_bits_long
Unexecuted instantiation: avs.c:skip_bits_long
Unexecuted instantiation: rv60dec.c:skip_bits_long
Unexecuted instantiation: alac.c:skip_bits_long
Unexecuted instantiation: tiertexseqv.c:skip_bits_long
Unexecuted instantiation: ffv1enc.c:skip_bits_long
hcadec.c:skip_bits_long
Line
Count
Source
281
15.7M
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
15.7M
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
15.7M
#endif
287
15.7M
}
Unexecuted instantiation: pcx.c:skip_bits_long
Unexecuted instantiation: qcelpdec.c:skip_bits_long
Unexecuted instantiation: flacdec.c:skip_bits_long
ac3dec_fixed.c:skip_bits_long
Line
Count
Source
281
253k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
253k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
253k
#endif
287
253k
}
midivid.c:skip_bits_long
Line
Count
Source
281
961k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
961k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
961k
#endif
287
961k
}
Unexecuted instantiation: mimic.c:skip_bits_long
Unexecuted instantiation: fic.c:skip_bits_long
Unexecuted instantiation: qdmc.c:skip_bits_long
Unexecuted instantiation: ra288.c:skip_bits_long
Unexecuted instantiation: interplayacm.c:skip_bits_long
Unexecuted instantiation: ylc.c:skip_bits_long
Unexecuted instantiation: ftr.c:skip_bits_long
Unexecuted instantiation: agm.c:skip_bits_long
Unexecuted instantiation: xan.c:skip_bits_long
svq3.c:skip_bits_long
Line
Count
Source
281
197k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
197k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
197k
#endif
287
197k
}
Unexecuted instantiation: cri.c:skip_bits_long
Unexecuted instantiation: qdm2.c:skip_bits_long
Unexecuted instantiation: cljrdec.c:skip_bits_long
Unexecuted instantiation: g728dec.c:skip_bits_long
Unexecuted instantiation: cook.c:skip_bits_long
Unexecuted instantiation: twinvqdec.c:skip_bits_long
Unexecuted instantiation: hq_hqa.c:skip_bits_long
Unexecuted instantiation: cdxl.c:skip_bits_long
Unexecuted instantiation: vble.c:skip_bits_long
mv30.c:skip_bits_long
Line
Count
Source
281
106k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
106k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
106k
#endif
287
106k
}
apedec.c:skip_bits_long
Line
Count
Source
281
28.8k
{
282
#if UNCHECKED_BITSTREAM_READER
283
    s->index += n;
284
#else
285
28.8k
    s->index += av_clip(n, -s->index, s->size_in_bits_plus8 - s->index);
286
28.8k
#endif
287
28.8k
}
Unexecuted instantiation: h261dec.c:skip_bits_long
Unexecuted instantiation: dstdec.c:skip_bits_long
Unexecuted instantiation: jpeglsenc.c:skip_bits_long
Unexecuted instantiation: truemotion2.c:skip_bits_long
288
289
/**
290
 * Read MPEG-1 dc-style VLC (sign bit + mantissa with no MSB).
291
 * if MSB not set it is negative
292
 * @param n length in bits
293
 */
294
static inline int get_xbits(GetBitContext *s, int n)
295
62.2M
{
296
62.2M
    register int sign;
297
62.2M
    register int32_t cache;
298
62.2M
    OPEN_READER(re, s);
299
62.2M
    av_assert2(n>0 && n<=25);
300
62.2M
    UPDATE_CACHE(re, s);
301
62.2M
    cache = GET_CACHE(re, s);
302
62.2M
    sign  = ~cache >> 31;
303
62.2M
    LAST_SKIP_BITS(re, s, n);
304
62.2M
    CLOSE_READER(re, s);
305
62.2M
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
62.2M
}
Unexecuted instantiation: mpegvideo_motion.c:get_xbits
Unexecuted instantiation: wmv2dec.c:get_xbits
Unexecuted instantiation: aac_adtstoasc.c:get_xbits
Unexecuted instantiation: dovi_rpu.c:get_xbits
Unexecuted instantiation: dovi_split.c:get_xbits
Unexecuted instantiation: dts2pts.c:get_xbits
Unexecuted instantiation: eac3_core.c:get_xbits
Unexecuted instantiation: evc_frame_merge.c:get_xbits
Unexecuted instantiation: extract_extradata.c:get_xbits
Unexecuted instantiation: h264_metadata.c:get_xbits
Unexecuted instantiation: h264_redundant_pps.c:get_xbits
Unexecuted instantiation: h265_metadata.c:get_xbits
Unexecuted instantiation: h266_metadata.c:get_xbits
Unexecuted instantiation: lcevc_merge.c:get_xbits
Unexecuted instantiation: lcevc_metadata.c:get_xbits
Unexecuted instantiation: remove_extradata.c:get_xbits
Unexecuted instantiation: truehd_core.c:get_xbits
Unexecuted instantiation: vp9_raw_reorder.c:get_xbits
Unexecuted instantiation: vp9_superframe.c:get_xbits
Unexecuted instantiation: vp9_superframe_split.c:get_xbits
Unexecuted instantiation: cbs.c:get_xbits
Unexecuted instantiation: cbs_apv.c:get_xbits
Unexecuted instantiation: cbs_av1.c:get_xbits
Unexecuted instantiation: cbs_h264.c:get_xbits
Unexecuted instantiation: cbs_h2645.c:get_xbits
Unexecuted instantiation: cbs_h265.c:get_xbits
Unexecuted instantiation: cbs_h266.c:get_xbits
Unexecuted instantiation: cbs_lcevc.c:get_xbits
Unexecuted instantiation: cbs_mpeg2.c:get_xbits
Unexecuted instantiation: cbs_sei.c:get_xbits
Unexecuted instantiation: cbs_vp8.c:get_xbits
Unexecuted instantiation: cbs_vp9.c:get_xbits
Unexecuted instantiation: dovi_rpudec.c:get_xbits
Unexecuted instantiation: evc_parse.c:get_xbits
Unexecuted instantiation: evc_ps.c:get_xbits
Unexecuted instantiation: h263dec.c:get_xbits
Unexecuted instantiation: h2645_parse.c:get_xbits
Unexecuted instantiation: h264_parse.c:get_xbits
Unexecuted instantiation: h264_ps.c:get_xbits
Unexecuted instantiation: h264data.c:get_xbits
Unexecuted instantiation: h265_profile_level.c:get_xbits
Unexecuted instantiation: ps.c:get_xbits
Unexecuted instantiation: intelh263dec.c:get_xbits
Unexecuted instantiation: intrax8.c:get_xbits
Unexecuted instantiation: ituh263dec.c:get_xbits
Unexecuted instantiation: mlp_parse.c:get_xbits
Unexecuted instantiation: mpeg4audio.c:get_xbits
mpeg4videodec.c:get_xbits
Line
Count
Source
295
1.62M
{
296
1.62M
    register int sign;
297
1.62M
    register int32_t cache;
298
1.62M
    OPEN_READER(re, s);
299
1.62M
    av_assert2(n>0 && n<=25);
300
1.62M
    UPDATE_CACHE(re, s);
301
1.62M
    cache = GET_CACHE(re, s);
302
1.62M
    sign  = ~cache >> 31;
303
1.62M
    LAST_SKIP_BITS(re, s, n);
304
1.62M
    CLOSE_READER(re, s);
305
1.62M
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
1.62M
}
Unexecuted instantiation: mpeg_er.c:get_xbits
Unexecuted instantiation: mpegvideo_dec.c:get_xbits
Unexecuted instantiation: msmpeg4dec.c:get_xbits
Unexecuted instantiation: rv10.c:get_xbits
Unexecuted instantiation: ac3_parser.c:get_xbits
Unexecuted instantiation: adts_header.c:get_xbits
Unexecuted instantiation: av1_parse.c:get_xbits
Unexecuted instantiation: flvdec.c:get_xbits
Unexecuted instantiation: h2645_vui.c:get_xbits
Unexecuted instantiation: vc1_parser.c:get_xbits
Unexecuted instantiation: vorbis_parser.c:get_xbits
Unexecuted instantiation: vp9_parser.c:get_xbits
Unexecuted instantiation: vvc_parser.c:get_xbits
Unexecuted instantiation: aac_ac3_parser.c:get_xbits
Unexecuted instantiation: av1_parser.c:get_xbits
Unexecuted instantiation: avs2_parser.c:get_xbits
Unexecuted instantiation: avs3_parser.c:get_xbits
Unexecuted instantiation: cavs_parser.c:get_xbits
Unexecuted instantiation: dca_parser.c:get_xbits
Unexecuted instantiation: dolby_e_parser.c:get_xbits
Unexecuted instantiation: evc_parser.c:get_xbits
Unexecuted instantiation: ffv1_parser.c:get_xbits
Unexecuted instantiation: flac_parser.c:get_xbits
Unexecuted instantiation: ftr_parser.c:get_xbits
Unexecuted instantiation: h264_parser.c:get_xbits
Unexecuted instantiation: h264_sei.c:get_xbits
Unexecuted instantiation: h264idct.c:get_xbits
Unexecuted instantiation: parser.c:get_xbits
Unexecuted instantiation: sei.c:get_xbits
Unexecuted instantiation: jpegxl_parser.c:get_xbits
Unexecuted instantiation: jpegxs_parser.c:get_xbits
Unexecuted instantiation: lcevc_parser.c:get_xbits
Unexecuted instantiation: mlp_parser.c:get_xbits
Unexecuted instantiation: mpeg4video_parser.c:get_xbits
Unexecuted instantiation: vc1.c:get_xbits
Unexecuted instantiation: vc1data.c:get_xbits
Unexecuted instantiation: dca.c:get_xbits
Unexecuted instantiation: dca_exss.c:get_xbits
Unexecuted instantiation: dolby_e_parse.c:get_xbits
Unexecuted instantiation: ffv1.c:get_xbits
Unexecuted instantiation: ffv1_parse.c:get_xbits
Unexecuted instantiation: flac.c:get_xbits
Unexecuted instantiation: h2645_sei.c:get_xbits
Unexecuted instantiation: parse.c:get_xbits
Unexecuted instantiation: jpegxl_parse.c:get_xbits
Unexecuted instantiation: aom_film_grain.c:get_xbits
Unexecuted instantiation: dynamic_hdr_vivid.c:get_xbits
Unexecuted instantiation: hdr_dynamic_metadata.c:get_xbits
Unexecuted instantiation: av1dec.c:get_xbits
Unexecuted instantiation: bit.c:get_xbits
Unexecuted instantiation: dtsdec.c:get_xbits
Unexecuted instantiation: dtshddec.c:get_xbits
Unexecuted instantiation: h264dec.c:get_xbits
Unexecuted instantiation: hls_sample_encryption.c:get_xbits
Unexecuted instantiation: isom.c:get_xbits
Unexecuted instantiation: matroskadec.c:get_xbits
Unexecuted instantiation: mlpdec.c:get_xbits
Unexecuted instantiation: mov.c:get_xbits
Unexecuted instantiation: mpc8.c:get_xbits
Unexecuted instantiation: mpegts.c:get_xbits
Unexecuted instantiation: oggparsetheora.c:get_xbits
Unexecuted instantiation: shortendec.c:get_xbits
Unexecuted instantiation: swfdec.c:get_xbits
Unexecuted instantiation: takdec.c:get_xbits
Unexecuted instantiation: iamf_parse.c:get_xbits
Unexecuted instantiation: dirac.c:get_xbits
Unexecuted instantiation: atrac9dec.c:get_xbits
Unexecuted instantiation: enc.c:get_xbits
Unexecuted instantiation: enc_psy.c:get_xbits
Unexecuted instantiation: pvq.c:get_xbits
Unexecuted instantiation: rc.c:get_xbits
Unexecuted instantiation: celt.c:get_xbits
Unexecuted instantiation: gsmdec.c:get_xbits
Unexecuted instantiation: msgsmdec.c:get_xbits
Unexecuted instantiation: imc.c:get_xbits
Unexecuted instantiation: adpcm.c:get_xbits
Unexecuted instantiation: wmaenc.c:get_xbits
Unexecuted instantiation: wma.c:get_xbits
Unexecuted instantiation: cfhd.c:get_xbits
Unexecuted instantiation: wavarc.c:get_xbits
Unexecuted instantiation: escape130.c:get_xbits
Unexecuted instantiation: asvdec.c:get_xbits
Unexecuted instantiation: diracdec.c:get_xbits
Unexecuted instantiation: dirac_arith.c:get_xbits
Unexecuted instantiation: wmadec.c:get_xbits
Unexecuted instantiation: aacenc.c:get_xbits
Unexecuted instantiation: imm4.c:get_xbits
Unexecuted instantiation: exr.c:get_xbits
Unexecuted instantiation: aacdec.c:get_xbits
Unexecuted instantiation: aacdec_fixed.c:get_xbits
Unexecuted instantiation: aacdec_float.c:get_xbits
Unexecuted instantiation: aacdec_tab.c:get_xbits
Unexecuted instantiation: aacdec_usac.c:get_xbits
Unexecuted instantiation: aacdec_usac_mps212.c:get_xbits
Unexecuted instantiation: aacps_common.c:get_xbits
Unexecuted instantiation: aacsbr.c:get_xbits
Unexecuted instantiation: aacsbr_fixed.c:get_xbits
Unexecuted instantiation: aacdec_ac.c:get_xbits
Unexecuted instantiation: aacdec_lpd.c:get_xbits
Unexecuted instantiation: aacps_fixed.c:get_xbits
Unexecuted instantiation: aacps_float.c:get_xbits
mjpegdec.c:get_xbits
Line
Count
Source
295
27.3M
{
296
27.3M
    register int sign;
297
27.3M
    register int32_t cache;
298
27.3M
    OPEN_READER(re, s);
299
27.3M
    av_assert2(n>0 && n<=25);
300
27.3M
    UPDATE_CACHE(re, s);
301
27.3M
    cache = GET_CACHE(re, s);
302
27.3M
    sign  = ~cache >> 31;
303
27.3M
    LAST_SKIP_BITS(re, s, n);
304
27.3M
    CLOSE_READER(re, s);
305
27.3M
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
27.3M
}
Unexecuted instantiation: mjpegdec_common.c:get_xbits
Unexecuted instantiation: jpeglsdec.c:get_xbits
Unexecuted instantiation: jvdec.c:get_xbits
Unexecuted instantiation: rdt.c:get_xbits
Unexecuted instantiation: rtpdec_h261.c:get_xbits
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_xbits
Unexecuted instantiation: rtpdec_latm.c:get_xbits
Unexecuted instantiation: rtpdec_mpeg4.c:get_xbits
Unexecuted instantiation: rtpdec_qt.c:get_xbits
Unexecuted instantiation: h264_cavlc.c:get_xbits
Unexecuted instantiation: h264_direct.c:get_xbits
Unexecuted instantiation: h264_mb.c:get_xbits
Unexecuted instantiation: h264_picture.c:get_xbits
Unexecuted instantiation: h264_refs.c:get_xbits
Unexecuted instantiation: h264_slice.c:get_xbits
Unexecuted instantiation: h264_cabac.c:get_xbits
Unexecuted instantiation: h264_loopfilter.c:get_xbits
Unexecuted instantiation: alsdec.c:get_xbits
Unexecuted instantiation: bgmc.c:get_xbits
Unexecuted instantiation: mlz.c:get_xbits
Unexecuted instantiation: bonk.c:get_xbits
Unexecuted instantiation: mxpegdec.c:get_xbits
Unexecuted instantiation: rv30.c:get_xbits
Unexecuted instantiation: rv34.c:get_xbits
Unexecuted instantiation: indeo3.c:get_xbits
Unexecuted instantiation: eamad.c:get_xbits
mpeg12.c:get_xbits
Line
Count
Source
295
1.32M
{
296
1.32M
    register int sign;
297
1.32M
    register int32_t cache;
298
1.32M
    OPEN_READER(re, s);
299
1.32M
    av_assert2(n>0 && n<=25);
300
1.32M
    UPDATE_CACHE(re, s);
301
1.32M
    cache = GET_CACHE(re, s);
302
1.32M
    sign  = ~cache >> 31;
303
1.32M
    LAST_SKIP_BITS(re, s, n);
304
1.32M
    CLOSE_READER(re, s);
305
1.32M
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
1.32M
}
Unexecuted instantiation: g726.c:get_xbits
Unexecuted instantiation: vc1dec.c:get_xbits
Unexecuted instantiation: vc1_block.c:get_xbits
Unexecuted instantiation: vc1_loopfilter.c:get_xbits
Unexecuted instantiation: vc1_mc.c:get_xbits
Unexecuted instantiation: vc1_pred.c:get_xbits
Unexecuted instantiation: mpegaudiodec_float.c:get_xbits
Unexecuted instantiation: huffyuvdec.c:get_xbits
Unexecuted instantiation: speexdec.c:get_xbits
Unexecuted instantiation: atrac3plusdec.c:get_xbits
Unexecuted instantiation: atrac3plusdsp.c:get_xbits
Unexecuted instantiation: atrac3plus.c:get_xbits
Unexecuted instantiation: mss4.c:get_xbits
Unexecuted instantiation: tiff.c:get_xbits
Unexecuted instantiation: faxcompr.c:get_xbits
Unexecuted instantiation: ac3dec_float.c:get_xbits
Unexecuted instantiation: on2avc.c:get_xbits
Unexecuted instantiation: smacker.c:get_xbits
Unexecuted instantiation: dvbsubdec.c:get_xbits
Unexecuted instantiation: mss1.c:get_xbits
Unexecuted instantiation: mss12.c:get_xbits
Unexecuted instantiation: mss2.c:get_xbits
mdec.c:get_xbits
Line
Count
Source
295
6.11M
{
296
6.11M
    register int sign;
297
6.11M
    register int32_t cache;
298
6.11M
    OPEN_READER(re, s);
299
6.11M
    av_assert2(n>0 && n<=25);
300
6.11M
    UPDATE_CACHE(re, s);
301
6.11M
    cache = GET_CACHE(re, s);
302
6.11M
    sign  = ~cache >> 31;
303
6.11M
    LAST_SKIP_BITS(re, s, n);
304
6.11M
    CLOSE_READER(re, s);
305
6.11M
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
6.11M
}
Unexecuted instantiation: osq.c:get_xbits
Unexecuted instantiation: vp6.c:get_xbits
Unexecuted instantiation: vp56.c:get_xbits
Unexecuted instantiation: vp56data.c:get_xbits
Unexecuted instantiation: loco.c:get_xbits
Unexecuted instantiation: vp5.c:get_xbits
Unexecuted instantiation: ra144dec.c:get_xbits
Unexecuted instantiation: indeo5.c:get_xbits
Unexecuted instantiation: ivi.c:get_xbits
Unexecuted instantiation: ivi_dsp.c:get_xbits
Unexecuted instantiation: apac.c:get_xbits
Unexecuted instantiation: clearvideo.c:get_xbits
Unexecuted instantiation: dxtory.c:get_xbits
Unexecuted instantiation: mpegaudiodec_fixed.c:get_xbits
Unexecuted instantiation: ralf.c:get_xbits
Unexecuted instantiation: pixlet.c:get_xbits
Unexecuted instantiation: wnv1.c:get_xbits
Unexecuted instantiation: qoadec.c:get_xbits
Unexecuted instantiation: vima.c:get_xbits
leaddec.c:get_xbits
Line
Count
Source
295
24.2M
{
296
24.2M
    register int sign;
297
24.2M
    register int32_t cache;
298
24.2M
    OPEN_READER(re, s);
299
24.2M
    av_assert2(n>0 && n<=25);
300
24.2M
    UPDATE_CACHE(re, s);
301
24.2M
    cache = GET_CACHE(re, s);
302
24.2M
    sign  = ~cache >> 31;
303
24.2M
    LAST_SKIP_BITS(re, s, n);
304
24.2M
    CLOSE_READER(re, s);
305
24.2M
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
24.2M
}
Unexecuted instantiation: eatqi.c:get_xbits
Unexecuted instantiation: lagarith.c:get_xbits
Unexecuted instantiation: lagarithrac.c:get_xbits
Unexecuted instantiation: dss_sp.c:get_xbits
Unexecuted instantiation: siren.c:get_xbits
Unexecuted instantiation: cavsdec.c:get_xbits
Unexecuted instantiation: cavs.c:get_xbits
Unexecuted instantiation: cavsdata.c:get_xbits
Unexecuted instantiation: hcom.c:get_xbits
Unexecuted instantiation: vp3.c:get_xbits
Unexecuted instantiation: webp.c:get_xbits
Unexecuted instantiation: eatgv.c:get_xbits
Unexecuted instantiation: eatgq.c:get_xbits
Unexecuted instantiation: sga.c:get_xbits
Unexecuted instantiation: binkaudio.c:get_xbits
mpeg12dec.c:get_xbits
Line
Count
Source
295
526k
{
296
526k
    register int sign;
297
526k
    register int32_t cache;
298
526k
    OPEN_READER(re, s);
299
526k
    av_assert2(n>0 && n<=25);
300
526k
    UPDATE_CACHE(re, s);
301
526k
    cache = GET_CACHE(re, s);
302
526k
    sign  = ~cache >> 31;
303
526k
    LAST_SKIP_BITS(re, s, n);
304
526k
    CLOSE_READER(re, s);
305
526k
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
526k
}
Unexecuted instantiation: indeo2.c:get_xbits
4xm.c:get_xbits
Line
Count
Source
295
341k
{
296
341k
    register int sign;
297
341k
    register int32_t cache;
298
341k
    OPEN_READER(re, s);
299
341k
    av_assert2(n>0 && n<=25);
300
341k
    UPDATE_CACHE(re, s);
301
341k
    cache = GET_CACHE(re, s);
302
341k
    sign  = ~cache >> 31;
303
341k
    LAST_SKIP_BITS(re, s, n);
304
341k
    CLOSE_READER(re, s);
305
341k
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
341k
}
Unexecuted instantiation: wmalosslessdec.c:get_xbits
Unexecuted instantiation: ilbcdec.c:get_xbits
Unexecuted instantiation: hevcdec.c:get_xbits
Unexecuted instantiation: mvs.c:get_xbits
Unexecuted instantiation: pred.c:get_xbits
Unexecuted instantiation: refs.c:get_xbits
Unexecuted instantiation: cabac.c:get_xbits
Unexecuted instantiation: dsp.c:get_xbits
Unexecuted instantiation: filter.c:get_xbits
Unexecuted instantiation: tscc2.c:get_xbits
Unexecuted instantiation: hqx.c:get_xbits
Unexecuted instantiation: mobiclip.c:get_xbits
Unexecuted instantiation: wmaprodec.c:get_xbits
Unexecuted instantiation: g729dec.c:get_xbits
Unexecuted instantiation: sipr.c:get_xbits
Unexecuted instantiation: g722dec.c:get_xbits
Unexecuted instantiation: nellymoserdec.c:get_xbits
Unexecuted instantiation: dcaenc.c:get_xbits
Unexecuted instantiation: dcaadpcm.c:get_xbits
Unexecuted instantiation: dcadata.c:get_xbits
Unexecuted instantiation: interplayvideo.c:get_xbits
Unexecuted instantiation: dec.c:get_xbits
Unexecuted instantiation: dec_celt.c:get_xbits
Unexecuted instantiation: silk.c:get_xbits
Unexecuted instantiation: mjpegbdec.c:get_xbits
Unexecuted instantiation: bink.c:get_xbits
Unexecuted instantiation: dvdsubdec.c:get_xbits
Unexecuted instantiation: rtjpeg.c:get_xbits
Unexecuted instantiation: truespeech.c:get_xbits
Unexecuted instantiation: metasound.c:get_xbits
Unexecuted instantiation: escape124.c:get_xbits
Unexecuted instantiation: cllc.c:get_xbits
Unexecuted instantiation: dvdec.c:get_xbits
Unexecuted instantiation: tta.c:get_xbits
Unexecuted instantiation: fraps.c:get_xbits
Unexecuted instantiation: motionpixels.c:get_xbits
Unexecuted instantiation: vp9.c:get_xbits
Unexecuted instantiation: vp9block.c:get_xbits
Unexecuted instantiation: vp9data.c:get_xbits
Unexecuted instantiation: vp9lpf.c:get_xbits
Unexecuted instantiation: vp9mvs.c:get_xbits
Unexecuted instantiation: vp9prob.c:get_xbits
Unexecuted instantiation: vp9recon.c:get_xbits
Unexecuted instantiation: ffv1dec.c:get_xbits
Unexecuted instantiation: intra_utils.c:get_xbits
Unexecuted instantiation: thread.c:get_xbits
Unexecuted instantiation: ctu.c:get_xbits
Unexecuted instantiation: inter.c:get_xbits
Unexecuted instantiation: intra.c:get_xbits
Unexecuted instantiation: wmavoice.c:get_xbits
Unexecuted instantiation: rawdec.c:get_xbits
Unexecuted instantiation: svq1dec.c:get_xbits
Unexecuted instantiation: mpc7.c:get_xbits
Unexecuted instantiation: truemotion2rt.c:get_xbits
Unexecuted instantiation: adxdec.c:get_xbits
Unexecuted instantiation: rv40.c:get_xbits
Unexecuted instantiation: xsubdec.c:get_xbits
Unexecuted instantiation: notchlc.c:get_xbits
Unexecuted instantiation: aic.c:get_xbits
Unexecuted instantiation: vqcdec.c:get_xbits
Unexecuted instantiation: dolby_e.c:get_xbits
Unexecuted instantiation: proresdec.c:get_xbits
Unexecuted instantiation: evrcdec.c:get_xbits
Unexecuted instantiation: dnxhddec.c:get_xbits
Unexecuted instantiation: dcadec.c:get_xbits
Unexecuted instantiation: dca_core.c:get_xbits
Unexecuted instantiation: dca_lbr.c:get_xbits
Unexecuted instantiation: dca_xll.c:get_xbits
Unexecuted instantiation: mlpenc.c:get_xbits
Unexecuted instantiation: atrac3.c:get_xbits
Unexecuted instantiation: vorbisdec.c:get_xbits
Unexecuted instantiation: flashsv.c:get_xbits
Unexecuted instantiation: wavpack.c:get_xbits
Unexecuted instantiation: speedhqdec.c:get_xbits
Unexecuted instantiation: g723_1dec.c:get_xbits
g2meet.c:get_xbits
Line
Count
Source
295
693k
{
296
693k
    register int sign;
297
693k
    register int32_t cache;
298
693k
    OPEN_READER(re, s);
299
693k
    av_assert2(n>0 && n<=25);
300
693k
    UPDATE_CACHE(re, s);
301
693k
    cache = GET_CACHE(re, s);
302
693k
    sign  = ~cache >> 31;
303
693k
    LAST_SKIP_BITS(re, s, n);
304
693k
    CLOSE_READER(re, s);
305
693k
    return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
306
693k
}
Unexecuted instantiation: shorten.c:get_xbits
Unexecuted instantiation: indeo4.c:get_xbits
Unexecuted instantiation: sp5xdec.c:get_xbits
Unexecuted instantiation: atrac1.c:get_xbits
Unexecuted instantiation: apv_decode.c:get_xbits
Unexecuted instantiation: apv_entropy.c:get_xbits
Unexecuted instantiation: avs.c:get_xbits
Unexecuted instantiation: rv60dec.c:get_xbits
Unexecuted instantiation: alac.c:get_xbits
Unexecuted instantiation: tiertexseqv.c:get_xbits
Unexecuted instantiation: ffv1enc.c:get_xbits
Unexecuted instantiation: hcadec.c:get_xbits
Unexecuted instantiation: pcx.c:get_xbits
Unexecuted instantiation: qcelpdec.c:get_xbits
Unexecuted instantiation: flacdec.c:get_xbits
Unexecuted instantiation: ac3dec_fixed.c:get_xbits
Unexecuted instantiation: midivid.c:get_xbits
Unexecuted instantiation: mimic.c:get_xbits
Unexecuted instantiation: fic.c:get_xbits
Unexecuted instantiation: qdmc.c:get_xbits
Unexecuted instantiation: ra288.c:get_xbits
Unexecuted instantiation: interplayacm.c:get_xbits
Unexecuted instantiation: ylc.c:get_xbits
Unexecuted instantiation: ftr.c:get_xbits
Unexecuted instantiation: agm.c:get_xbits
Unexecuted instantiation: xan.c:get_xbits
Unexecuted instantiation: svq3.c:get_xbits
Unexecuted instantiation: cri.c:get_xbits
Unexecuted instantiation: qdm2.c:get_xbits
Unexecuted instantiation: cljrdec.c:get_xbits
Unexecuted instantiation: g728dec.c:get_xbits
Unexecuted instantiation: cook.c:get_xbits
Unexecuted instantiation: twinvqdec.c:get_xbits
Unexecuted instantiation: hq_hqa.c:get_xbits
Unexecuted instantiation: cdxl.c:get_xbits
Unexecuted instantiation: vble.c:get_xbits
Unexecuted instantiation: mv30.c:get_xbits
Unexecuted instantiation: apedec.c:get_xbits
Unexecuted instantiation: h261dec.c:get_xbits
Unexecuted instantiation: dstdec.c:get_xbits
Unexecuted instantiation: jpeglsenc.c:get_xbits
Unexecuted instantiation: truemotion2.c:get_xbits
307
308
static inline int get_xbits_le(GetBitContext *s, int n)
309
214k
{
310
214k
    register int sign;
311
214k
    register int32_t cache;
312
214k
    OPEN_READER(re, s);
313
214k
    av_assert2(n>0 && n<=25);
314
214k
    UPDATE_CACHE_LE(re, s);
315
214k
    cache = GET_CACHE(re, s);
316
214k
    sign  = sign_extend(~cache, n) >> 31;
317
214k
    LAST_SKIP_BITS(re, s, n);
318
214k
    CLOSE_READER(re, s);
319
214k
    return (zero_extend(sign ^ cache, n) ^ sign) - sign;
320
214k
}
Unexecuted instantiation: mpegvideo_motion.c:get_xbits_le
Unexecuted instantiation: wmv2dec.c:get_xbits_le
Unexecuted instantiation: aac_adtstoasc.c:get_xbits_le
Unexecuted instantiation: dovi_rpu.c:get_xbits_le
Unexecuted instantiation: dovi_split.c:get_xbits_le
Unexecuted instantiation: dts2pts.c:get_xbits_le
Unexecuted instantiation: eac3_core.c:get_xbits_le
Unexecuted instantiation: evc_frame_merge.c:get_xbits_le
Unexecuted instantiation: extract_extradata.c:get_xbits_le
Unexecuted instantiation: h264_metadata.c:get_xbits_le
Unexecuted instantiation: h264_redundant_pps.c:get_xbits_le
Unexecuted instantiation: h265_metadata.c:get_xbits_le
Unexecuted instantiation: h266_metadata.c:get_xbits_le
Unexecuted instantiation: lcevc_merge.c:get_xbits_le
Unexecuted instantiation: lcevc_metadata.c:get_xbits_le
Unexecuted instantiation: remove_extradata.c:get_xbits_le
Unexecuted instantiation: truehd_core.c:get_xbits_le
Unexecuted instantiation: vp9_raw_reorder.c:get_xbits_le
Unexecuted instantiation: vp9_superframe.c:get_xbits_le
Unexecuted instantiation: vp9_superframe_split.c:get_xbits_le
Unexecuted instantiation: cbs.c:get_xbits_le
Unexecuted instantiation: cbs_apv.c:get_xbits_le
Unexecuted instantiation: cbs_av1.c:get_xbits_le
Unexecuted instantiation: cbs_h264.c:get_xbits_le
Unexecuted instantiation: cbs_h2645.c:get_xbits_le
Unexecuted instantiation: cbs_h265.c:get_xbits_le
Unexecuted instantiation: cbs_h266.c:get_xbits_le
Unexecuted instantiation: cbs_lcevc.c:get_xbits_le
Unexecuted instantiation: cbs_mpeg2.c:get_xbits_le
Unexecuted instantiation: cbs_sei.c:get_xbits_le
Unexecuted instantiation: cbs_vp8.c:get_xbits_le
Unexecuted instantiation: cbs_vp9.c:get_xbits_le
Unexecuted instantiation: dovi_rpudec.c:get_xbits_le
Unexecuted instantiation: evc_parse.c:get_xbits_le
Unexecuted instantiation: evc_ps.c:get_xbits_le
Unexecuted instantiation: h263dec.c:get_xbits_le
Unexecuted instantiation: h2645_parse.c:get_xbits_le
Unexecuted instantiation: h264_parse.c:get_xbits_le
Unexecuted instantiation: h264_ps.c:get_xbits_le
Unexecuted instantiation: h264data.c:get_xbits_le
Unexecuted instantiation: h265_profile_level.c:get_xbits_le
Unexecuted instantiation: ps.c:get_xbits_le
Unexecuted instantiation: intelh263dec.c:get_xbits_le
Unexecuted instantiation: intrax8.c:get_xbits_le
Unexecuted instantiation: ituh263dec.c:get_xbits_le
Unexecuted instantiation: mlp_parse.c:get_xbits_le
Unexecuted instantiation: mpeg4audio.c:get_xbits_le
Unexecuted instantiation: mpeg4videodec.c:get_xbits_le
Unexecuted instantiation: mpeg_er.c:get_xbits_le
Unexecuted instantiation: mpegvideo_dec.c:get_xbits_le
Unexecuted instantiation: msmpeg4dec.c:get_xbits_le
Unexecuted instantiation: rv10.c:get_xbits_le
Unexecuted instantiation: ac3_parser.c:get_xbits_le
Unexecuted instantiation: adts_header.c:get_xbits_le
Unexecuted instantiation: av1_parse.c:get_xbits_le
Unexecuted instantiation: flvdec.c:get_xbits_le
Unexecuted instantiation: h2645_vui.c:get_xbits_le
Unexecuted instantiation: vc1_parser.c:get_xbits_le
Unexecuted instantiation: vorbis_parser.c:get_xbits_le
Unexecuted instantiation: vp9_parser.c:get_xbits_le
Unexecuted instantiation: vvc_parser.c:get_xbits_le
Unexecuted instantiation: aac_ac3_parser.c:get_xbits_le
Unexecuted instantiation: av1_parser.c:get_xbits_le
Unexecuted instantiation: avs2_parser.c:get_xbits_le
Unexecuted instantiation: avs3_parser.c:get_xbits_le
Unexecuted instantiation: cavs_parser.c:get_xbits_le
Unexecuted instantiation: dca_parser.c:get_xbits_le
Unexecuted instantiation: dolby_e_parser.c:get_xbits_le
Unexecuted instantiation: evc_parser.c:get_xbits_le
Unexecuted instantiation: ffv1_parser.c:get_xbits_le
Unexecuted instantiation: flac_parser.c:get_xbits_le
Unexecuted instantiation: ftr_parser.c:get_xbits_le
Unexecuted instantiation: h264_parser.c:get_xbits_le
Unexecuted instantiation: h264_sei.c:get_xbits_le
Unexecuted instantiation: h264idct.c:get_xbits_le
Unexecuted instantiation: parser.c:get_xbits_le
Unexecuted instantiation: sei.c:get_xbits_le
Unexecuted instantiation: jpegxl_parser.c:get_xbits_le
Unexecuted instantiation: jpegxs_parser.c:get_xbits_le
Unexecuted instantiation: lcevc_parser.c:get_xbits_le
Unexecuted instantiation: mlp_parser.c:get_xbits_le
Unexecuted instantiation: mpeg4video_parser.c:get_xbits_le
Unexecuted instantiation: vc1.c:get_xbits_le
Unexecuted instantiation: vc1data.c:get_xbits_le
Unexecuted instantiation: dca.c:get_xbits_le
Unexecuted instantiation: dca_exss.c:get_xbits_le
Unexecuted instantiation: dolby_e_parse.c:get_xbits_le
Unexecuted instantiation: ffv1.c:get_xbits_le
Unexecuted instantiation: ffv1_parse.c:get_xbits_le
Unexecuted instantiation: flac.c:get_xbits_le
Unexecuted instantiation: h2645_sei.c:get_xbits_le
Unexecuted instantiation: parse.c:get_xbits_le
Unexecuted instantiation: jpegxl_parse.c:get_xbits_le
Unexecuted instantiation: aom_film_grain.c:get_xbits_le
Unexecuted instantiation: dynamic_hdr_vivid.c:get_xbits_le
Unexecuted instantiation: hdr_dynamic_metadata.c:get_xbits_le
Unexecuted instantiation: av1dec.c:get_xbits_le
Unexecuted instantiation: bit.c:get_xbits_le
Unexecuted instantiation: dtsdec.c:get_xbits_le
Unexecuted instantiation: dtshddec.c:get_xbits_le
Unexecuted instantiation: h264dec.c:get_xbits_le
Unexecuted instantiation: hls_sample_encryption.c:get_xbits_le
Unexecuted instantiation: isom.c:get_xbits_le
Unexecuted instantiation: matroskadec.c:get_xbits_le
Unexecuted instantiation: mlpdec.c:get_xbits_le
Unexecuted instantiation: mov.c:get_xbits_le
Unexecuted instantiation: mpc8.c:get_xbits_le
Unexecuted instantiation: mpegts.c:get_xbits_le
Unexecuted instantiation: oggparsetheora.c:get_xbits_le
Unexecuted instantiation: shortendec.c:get_xbits_le
Unexecuted instantiation: swfdec.c:get_xbits_le
Unexecuted instantiation: takdec.c:get_xbits_le
Unexecuted instantiation: iamf_parse.c:get_xbits_le
Unexecuted instantiation: dirac.c:get_xbits_le
Unexecuted instantiation: atrac9dec.c:get_xbits_le
Unexecuted instantiation: enc.c:get_xbits_le
Unexecuted instantiation: enc_psy.c:get_xbits_le
Unexecuted instantiation: pvq.c:get_xbits_le
Unexecuted instantiation: rc.c:get_xbits_le
Unexecuted instantiation: celt.c:get_xbits_le
Unexecuted instantiation: gsmdec.c:get_xbits_le
Unexecuted instantiation: msgsmdec.c:get_xbits_le
Unexecuted instantiation: imc.c:get_xbits_le
Unexecuted instantiation: adpcm.c:get_xbits_le
Unexecuted instantiation: wmaenc.c:get_xbits_le
Unexecuted instantiation: wma.c:get_xbits_le
Unexecuted instantiation: cfhd.c:get_xbits_le
Unexecuted instantiation: wavarc.c:get_xbits_le
Unexecuted instantiation: escape130.c:get_xbits_le
Unexecuted instantiation: asvdec.c:get_xbits_le
Unexecuted instantiation: diracdec.c:get_xbits_le
Unexecuted instantiation: dirac_arith.c:get_xbits_le
Unexecuted instantiation: wmadec.c:get_xbits_le
Unexecuted instantiation: aacenc.c:get_xbits_le
Unexecuted instantiation: imm4.c:get_xbits_le
Unexecuted instantiation: exr.c:get_xbits_le
Unexecuted instantiation: aacdec.c:get_xbits_le
Unexecuted instantiation: aacdec_fixed.c:get_xbits_le
Unexecuted instantiation: aacdec_float.c:get_xbits_le
Unexecuted instantiation: aacdec_tab.c:get_xbits_le
Unexecuted instantiation: aacdec_usac.c:get_xbits_le
Unexecuted instantiation: aacdec_usac_mps212.c:get_xbits_le
Unexecuted instantiation: aacps_common.c:get_xbits_le
Unexecuted instantiation: aacsbr.c:get_xbits_le
Unexecuted instantiation: aacsbr_fixed.c:get_xbits_le
Unexecuted instantiation: aacdec_ac.c:get_xbits_le
Unexecuted instantiation: aacdec_lpd.c:get_xbits_le
Unexecuted instantiation: aacps_fixed.c:get_xbits_le
Unexecuted instantiation: aacps_float.c:get_xbits_le
Unexecuted instantiation: mjpegdec.c:get_xbits_le
Unexecuted instantiation: mjpegdec_common.c:get_xbits_le
Unexecuted instantiation: jpeglsdec.c:get_xbits_le
Unexecuted instantiation: jvdec.c:get_xbits_le
Unexecuted instantiation: rdt.c:get_xbits_le
Unexecuted instantiation: rtpdec_h261.c:get_xbits_le
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_xbits_le
Unexecuted instantiation: rtpdec_latm.c:get_xbits_le
Unexecuted instantiation: rtpdec_mpeg4.c:get_xbits_le
Unexecuted instantiation: rtpdec_qt.c:get_xbits_le
Unexecuted instantiation: h264_cavlc.c:get_xbits_le
Unexecuted instantiation: h264_direct.c:get_xbits_le
Unexecuted instantiation: h264_mb.c:get_xbits_le
Unexecuted instantiation: h264_picture.c:get_xbits_le
Unexecuted instantiation: h264_refs.c:get_xbits_le
Unexecuted instantiation: h264_slice.c:get_xbits_le
Unexecuted instantiation: h264_cabac.c:get_xbits_le
Unexecuted instantiation: h264_loopfilter.c:get_xbits_le
Unexecuted instantiation: alsdec.c:get_xbits_le
Unexecuted instantiation: bgmc.c:get_xbits_le
Unexecuted instantiation: mlz.c:get_xbits_le
Unexecuted instantiation: bonk.c:get_xbits_le
Unexecuted instantiation: mxpegdec.c:get_xbits_le
Unexecuted instantiation: rv30.c:get_xbits_le
Unexecuted instantiation: rv34.c:get_xbits_le
Unexecuted instantiation: indeo3.c:get_xbits_le
Unexecuted instantiation: eamad.c:get_xbits_le
Unexecuted instantiation: mpeg12.c:get_xbits_le
Unexecuted instantiation: g726.c:get_xbits_le
Unexecuted instantiation: vc1dec.c:get_xbits_le
Unexecuted instantiation: vc1_block.c:get_xbits_le
Unexecuted instantiation: vc1_loopfilter.c:get_xbits_le
Unexecuted instantiation: vc1_mc.c:get_xbits_le
Unexecuted instantiation: vc1_pred.c:get_xbits_le
Unexecuted instantiation: mpegaudiodec_float.c:get_xbits_le
Unexecuted instantiation: huffyuvdec.c:get_xbits_le
Unexecuted instantiation: speexdec.c:get_xbits_le
Unexecuted instantiation: atrac3plusdec.c:get_xbits_le
Unexecuted instantiation: atrac3plusdsp.c:get_xbits_le
Unexecuted instantiation: atrac3plus.c:get_xbits_le
Unexecuted instantiation: mss4.c:get_xbits_le
Unexecuted instantiation: tiff.c:get_xbits_le
Unexecuted instantiation: faxcompr.c:get_xbits_le
Unexecuted instantiation: ac3dec_float.c:get_xbits_le
Unexecuted instantiation: on2avc.c:get_xbits_le
Unexecuted instantiation: smacker.c:get_xbits_le
Unexecuted instantiation: dvbsubdec.c:get_xbits_le
Unexecuted instantiation: mss1.c:get_xbits_le
Unexecuted instantiation: mss12.c:get_xbits_le
Unexecuted instantiation: mss2.c:get_xbits_le
Unexecuted instantiation: mdec.c:get_xbits_le
Unexecuted instantiation: osq.c:get_xbits_le
Unexecuted instantiation: vp6.c:get_xbits_le
Unexecuted instantiation: vp56.c:get_xbits_le
Unexecuted instantiation: vp56data.c:get_xbits_le
Unexecuted instantiation: loco.c:get_xbits_le
Unexecuted instantiation: vp5.c:get_xbits_le
Unexecuted instantiation: ra144dec.c:get_xbits_le
Unexecuted instantiation: indeo5.c:get_xbits_le
Unexecuted instantiation: ivi.c:get_xbits_le
Unexecuted instantiation: ivi_dsp.c:get_xbits_le
Unexecuted instantiation: apac.c:get_xbits_le
Unexecuted instantiation: clearvideo.c:get_xbits_le
Unexecuted instantiation: dxtory.c:get_xbits_le
Unexecuted instantiation: mpegaudiodec_fixed.c:get_xbits_le
Unexecuted instantiation: ralf.c:get_xbits_le
Unexecuted instantiation: pixlet.c:get_xbits_le
Unexecuted instantiation: wnv1.c:get_xbits_le
Unexecuted instantiation: qoadec.c:get_xbits_le
Unexecuted instantiation: vima.c:get_xbits_le
Unexecuted instantiation: leaddec.c:get_xbits_le
Unexecuted instantiation: eatqi.c:get_xbits_le
Unexecuted instantiation: lagarith.c:get_xbits_le
Unexecuted instantiation: lagarithrac.c:get_xbits_le
Unexecuted instantiation: dss_sp.c:get_xbits_le
Unexecuted instantiation: siren.c:get_xbits_le
Unexecuted instantiation: cavsdec.c:get_xbits_le
Unexecuted instantiation: cavs.c:get_xbits_le
Unexecuted instantiation: cavsdata.c:get_xbits_le
Unexecuted instantiation: hcom.c:get_xbits_le
Unexecuted instantiation: vp3.c:get_xbits_le
Unexecuted instantiation: webp.c:get_xbits_le
Unexecuted instantiation: eatgv.c:get_xbits_le
Unexecuted instantiation: eatgq.c:get_xbits_le
Unexecuted instantiation: sga.c:get_xbits_le
Unexecuted instantiation: binkaudio.c:get_xbits_le
Unexecuted instantiation: mpeg12dec.c:get_xbits_le
Unexecuted instantiation: indeo2.c:get_xbits_le
Unexecuted instantiation: 4xm.c:get_xbits_le
Unexecuted instantiation: wmalosslessdec.c:get_xbits_le
Unexecuted instantiation: ilbcdec.c:get_xbits_le
Unexecuted instantiation: hevcdec.c:get_xbits_le
Unexecuted instantiation: mvs.c:get_xbits_le
Unexecuted instantiation: pred.c:get_xbits_le
Unexecuted instantiation: refs.c:get_xbits_le
Unexecuted instantiation: cabac.c:get_xbits_le
Unexecuted instantiation: dsp.c:get_xbits_le
Unexecuted instantiation: filter.c:get_xbits_le
Unexecuted instantiation: tscc2.c:get_xbits_le
Unexecuted instantiation: hqx.c:get_xbits_le
Unexecuted instantiation: mobiclip.c:get_xbits_le
Unexecuted instantiation: wmaprodec.c:get_xbits_le
Unexecuted instantiation: g729dec.c:get_xbits_le
Unexecuted instantiation: sipr.c:get_xbits_le
Unexecuted instantiation: g722dec.c:get_xbits_le
Unexecuted instantiation: nellymoserdec.c:get_xbits_le
Unexecuted instantiation: dcaenc.c:get_xbits_le
Unexecuted instantiation: dcaadpcm.c:get_xbits_le
Unexecuted instantiation: dcadata.c:get_xbits_le
Unexecuted instantiation: interplayvideo.c:get_xbits_le
Unexecuted instantiation: dec.c:get_xbits_le
Unexecuted instantiation: dec_celt.c:get_xbits_le
Unexecuted instantiation: silk.c:get_xbits_le
Unexecuted instantiation: mjpegbdec.c:get_xbits_le
Unexecuted instantiation: bink.c:get_xbits_le
Unexecuted instantiation: dvdsubdec.c:get_xbits_le
Unexecuted instantiation: rtjpeg.c:get_xbits_le
Unexecuted instantiation: truespeech.c:get_xbits_le
Unexecuted instantiation: metasound.c:get_xbits_le
Unexecuted instantiation: escape124.c:get_xbits_le
Unexecuted instantiation: cllc.c:get_xbits_le
Unexecuted instantiation: dvdec.c:get_xbits_le
Unexecuted instantiation: tta.c:get_xbits_le
Unexecuted instantiation: fraps.c:get_xbits_le
Unexecuted instantiation: motionpixels.c:get_xbits_le
Unexecuted instantiation: vp9.c:get_xbits_le
Unexecuted instantiation: vp9block.c:get_xbits_le
Unexecuted instantiation: vp9data.c:get_xbits_le
Unexecuted instantiation: vp9lpf.c:get_xbits_le
Unexecuted instantiation: vp9mvs.c:get_xbits_le
Unexecuted instantiation: vp9prob.c:get_xbits_le
Unexecuted instantiation: vp9recon.c:get_xbits_le
Unexecuted instantiation: ffv1dec.c:get_xbits_le
Unexecuted instantiation: intra_utils.c:get_xbits_le
Unexecuted instantiation: thread.c:get_xbits_le
Unexecuted instantiation: ctu.c:get_xbits_le
Unexecuted instantiation: inter.c:get_xbits_le
Unexecuted instantiation: intra.c:get_xbits_le
Unexecuted instantiation: wmavoice.c:get_xbits_le
Unexecuted instantiation: rawdec.c:get_xbits_le
Unexecuted instantiation: svq1dec.c:get_xbits_le
Unexecuted instantiation: mpc7.c:get_xbits_le
Unexecuted instantiation: truemotion2rt.c:get_xbits_le
Unexecuted instantiation: adxdec.c:get_xbits_le
Unexecuted instantiation: rv40.c:get_xbits_le
Unexecuted instantiation: xsubdec.c:get_xbits_le
Unexecuted instantiation: notchlc.c:get_xbits_le
Unexecuted instantiation: aic.c:get_xbits_le
Unexecuted instantiation: vqcdec.c:get_xbits_le
Unexecuted instantiation: dolby_e.c:get_xbits_le
Unexecuted instantiation: proresdec.c:get_xbits_le
Unexecuted instantiation: evrcdec.c:get_xbits_le
Unexecuted instantiation: dnxhddec.c:get_xbits_le
Unexecuted instantiation: dcadec.c:get_xbits_le
Unexecuted instantiation: dca_core.c:get_xbits_le
Unexecuted instantiation: dca_lbr.c:get_xbits_le
Unexecuted instantiation: dca_xll.c:get_xbits_le
Unexecuted instantiation: mlpenc.c:get_xbits_le
Unexecuted instantiation: atrac3.c:get_xbits_le
Unexecuted instantiation: vorbisdec.c:get_xbits_le
Unexecuted instantiation: flashsv.c:get_xbits_le
Unexecuted instantiation: wavpack.c:get_xbits_le
speedhqdec.c:get_xbits_le
Line
Count
Source
309
214k
{
310
214k
    register int sign;
311
214k
    register int32_t cache;
312
214k
    OPEN_READER(re, s);
313
214k
    av_assert2(n>0 && n<=25);
314
214k
    UPDATE_CACHE_LE(re, s);
315
214k
    cache = GET_CACHE(re, s);
316
214k
    sign  = sign_extend(~cache, n) >> 31;
317
214k
    LAST_SKIP_BITS(re, s, n);
318
214k
    CLOSE_READER(re, s);
319
214k
    return (zero_extend(sign ^ cache, n) ^ sign) - sign;
320
214k
}
Unexecuted instantiation: g723_1dec.c:get_xbits_le
Unexecuted instantiation: g2meet.c:get_xbits_le
Unexecuted instantiation: shorten.c:get_xbits_le
Unexecuted instantiation: indeo4.c:get_xbits_le
Unexecuted instantiation: sp5xdec.c:get_xbits_le
Unexecuted instantiation: atrac1.c:get_xbits_le
Unexecuted instantiation: apv_decode.c:get_xbits_le
Unexecuted instantiation: apv_entropy.c:get_xbits_le
Unexecuted instantiation: avs.c:get_xbits_le
Unexecuted instantiation: rv60dec.c:get_xbits_le
Unexecuted instantiation: alac.c:get_xbits_le
Unexecuted instantiation: tiertexseqv.c:get_xbits_le
Unexecuted instantiation: ffv1enc.c:get_xbits_le
Unexecuted instantiation: hcadec.c:get_xbits_le
Unexecuted instantiation: pcx.c:get_xbits_le
Unexecuted instantiation: qcelpdec.c:get_xbits_le
Unexecuted instantiation: flacdec.c:get_xbits_le
Unexecuted instantiation: ac3dec_fixed.c:get_xbits_le
Unexecuted instantiation: midivid.c:get_xbits_le
Unexecuted instantiation: mimic.c:get_xbits_le
Unexecuted instantiation: fic.c:get_xbits_le
Unexecuted instantiation: qdmc.c:get_xbits_le
Unexecuted instantiation: ra288.c:get_xbits_le
Unexecuted instantiation: interplayacm.c:get_xbits_le
Unexecuted instantiation: ylc.c:get_xbits_le
Unexecuted instantiation: ftr.c:get_xbits_le
Unexecuted instantiation: agm.c:get_xbits_le
Unexecuted instantiation: xan.c:get_xbits_le
Unexecuted instantiation: svq3.c:get_xbits_le
Unexecuted instantiation: cri.c:get_xbits_le
Unexecuted instantiation: qdm2.c:get_xbits_le
Unexecuted instantiation: cljrdec.c:get_xbits_le
Unexecuted instantiation: g728dec.c:get_xbits_le
Unexecuted instantiation: cook.c:get_xbits_le
Unexecuted instantiation: twinvqdec.c:get_xbits_le
Unexecuted instantiation: hq_hqa.c:get_xbits_le
Unexecuted instantiation: cdxl.c:get_xbits_le
Unexecuted instantiation: vble.c:get_xbits_le
Unexecuted instantiation: mv30.c:get_xbits_le
Unexecuted instantiation: apedec.c:get_xbits_le
Unexecuted instantiation: h261dec.c:get_xbits_le
Unexecuted instantiation: dstdec.c:get_xbits_le
Unexecuted instantiation: jpeglsenc.c:get_xbits_le
Unexecuted instantiation: truemotion2.c:get_xbits_le
321
322
static inline int get_sbits(GetBitContext *s, int n)
323
612M
{
324
612M
    register int tmp;
325
612M
    OPEN_READER(re, s);
326
612M
    av_assert2(n>0 && n<=25);
327
612M
    UPDATE_CACHE(re, s);
328
612M
    tmp = SHOW_SBITS(re, s, n);
329
612M
    LAST_SKIP_BITS(re, s, n);
330
612M
    CLOSE_READER(re, s);
331
612M
    return tmp;
332
612M
}
Unexecuted instantiation: mpegvideo_motion.c:get_sbits
Unexecuted instantiation: wmv2dec.c:get_sbits
Unexecuted instantiation: aac_adtstoasc.c:get_sbits
Unexecuted instantiation: dovi_rpu.c:get_sbits
Unexecuted instantiation: dovi_split.c:get_sbits
Unexecuted instantiation: dts2pts.c:get_sbits
Unexecuted instantiation: eac3_core.c:get_sbits
Unexecuted instantiation: evc_frame_merge.c:get_sbits
Unexecuted instantiation: extract_extradata.c:get_sbits
Unexecuted instantiation: h264_metadata.c:get_sbits
Unexecuted instantiation: h264_redundant_pps.c:get_sbits
Unexecuted instantiation: h265_metadata.c:get_sbits
Unexecuted instantiation: h266_metadata.c:get_sbits
Unexecuted instantiation: lcevc_merge.c:get_sbits
Unexecuted instantiation: lcevc_metadata.c:get_sbits
Unexecuted instantiation: remove_extradata.c:get_sbits
Unexecuted instantiation: truehd_core.c:get_sbits
Unexecuted instantiation: vp9_raw_reorder.c:get_sbits
Unexecuted instantiation: vp9_superframe.c:get_sbits
Unexecuted instantiation: vp9_superframe_split.c:get_sbits
Unexecuted instantiation: cbs.c:get_sbits
Unexecuted instantiation: cbs_apv.c:get_sbits
Unexecuted instantiation: cbs_av1.c:get_sbits
Unexecuted instantiation: cbs_h264.c:get_sbits
Unexecuted instantiation: cbs_h2645.c:get_sbits
Unexecuted instantiation: cbs_h265.c:get_sbits
Unexecuted instantiation: cbs_h266.c:get_sbits
Unexecuted instantiation: cbs_lcevc.c:get_sbits
Unexecuted instantiation: cbs_mpeg2.c:get_sbits
Unexecuted instantiation: cbs_sei.c:get_sbits
Unexecuted instantiation: cbs_vp8.c:get_sbits
Unexecuted instantiation: cbs_vp9.c:get_sbits
dovi_rpudec.c:get_sbits
Line
Count
Source
323
1.31k
{
324
1.31k
    register int tmp;
325
1.31k
    OPEN_READER(re, s);
326
1.31k
    av_assert2(n>0 && n<=25);
327
1.31k
    UPDATE_CACHE(re, s);
328
1.31k
    tmp = SHOW_SBITS(re, s, n);
329
1.31k
    LAST_SKIP_BITS(re, s, n);
330
1.31k
    CLOSE_READER(re, s);
331
1.31k
    return tmp;
332
1.31k
}
Unexecuted instantiation: evc_parse.c:get_sbits
Unexecuted instantiation: evc_ps.c:get_sbits
Unexecuted instantiation: h263dec.c:get_sbits
Unexecuted instantiation: h2645_parse.c:get_sbits
Unexecuted instantiation: h264_parse.c:get_sbits
Unexecuted instantiation: h264_ps.c:get_sbits
Unexecuted instantiation: h264data.c:get_sbits
Unexecuted instantiation: h265_profile_level.c:get_sbits
Unexecuted instantiation: ps.c:get_sbits
Unexecuted instantiation: intelh263dec.c:get_sbits
Unexecuted instantiation: intrax8.c:get_sbits
ituh263dec.c:get_sbits
Line
Count
Source
323
79.7k
{
324
79.7k
    register int tmp;
325
79.7k
    OPEN_READER(re, s);
326
79.7k
    av_assert2(n>0 && n<=25);
327
79.7k
    UPDATE_CACHE(re, s);
328
79.7k
    tmp = SHOW_SBITS(re, s, n);
329
79.7k
    LAST_SKIP_BITS(re, s, n);
330
79.7k
    CLOSE_READER(re, s);
331
79.7k
    return tmp;
332
79.7k
}
Unexecuted instantiation: mlp_parse.c:get_sbits
Unexecuted instantiation: mpeg4audio.c:get_sbits
Unexecuted instantiation: mpeg4videodec.c:get_sbits
Unexecuted instantiation: mpeg_er.c:get_sbits
Unexecuted instantiation: mpegvideo_dec.c:get_sbits
Unexecuted instantiation: msmpeg4dec.c:get_sbits
Unexecuted instantiation: rv10.c:get_sbits
Unexecuted instantiation: ac3_parser.c:get_sbits
Unexecuted instantiation: adts_header.c:get_sbits
Unexecuted instantiation: av1_parse.c:get_sbits
Unexecuted instantiation: flvdec.c:get_sbits
Unexecuted instantiation: h2645_vui.c:get_sbits
Unexecuted instantiation: vc1_parser.c:get_sbits
Unexecuted instantiation: vorbis_parser.c:get_sbits
Unexecuted instantiation: vp9_parser.c:get_sbits
Unexecuted instantiation: vvc_parser.c:get_sbits
Unexecuted instantiation: aac_ac3_parser.c:get_sbits
Unexecuted instantiation: av1_parser.c:get_sbits
Unexecuted instantiation: avs2_parser.c:get_sbits
Unexecuted instantiation: avs3_parser.c:get_sbits
Unexecuted instantiation: cavs_parser.c:get_sbits
Unexecuted instantiation: dca_parser.c:get_sbits
Unexecuted instantiation: dolby_e_parser.c:get_sbits
Unexecuted instantiation: evc_parser.c:get_sbits
Unexecuted instantiation: ffv1_parser.c:get_sbits
Unexecuted instantiation: flac_parser.c:get_sbits
Unexecuted instantiation: ftr_parser.c:get_sbits
Unexecuted instantiation: h264_parser.c:get_sbits
Unexecuted instantiation: h264_sei.c:get_sbits
Unexecuted instantiation: h264idct.c:get_sbits
Unexecuted instantiation: parser.c:get_sbits
Unexecuted instantiation: sei.c:get_sbits
Unexecuted instantiation: jpegxl_parser.c:get_sbits
Unexecuted instantiation: jpegxs_parser.c:get_sbits
Unexecuted instantiation: lcevc_parser.c:get_sbits
Unexecuted instantiation: mlp_parser.c:get_sbits
Unexecuted instantiation: mpeg4video_parser.c:get_sbits
Unexecuted instantiation: vc1.c:get_sbits
Unexecuted instantiation: vc1data.c:get_sbits
Unexecuted instantiation: dca.c:get_sbits
Unexecuted instantiation: dca_exss.c:get_sbits
Unexecuted instantiation: dolby_e_parse.c:get_sbits
Unexecuted instantiation: ffv1.c:get_sbits
Unexecuted instantiation: ffv1_parse.c:get_sbits
Unexecuted instantiation: flac.c:get_sbits
Unexecuted instantiation: h2645_sei.c:get_sbits
Unexecuted instantiation: parse.c:get_sbits
Unexecuted instantiation: jpegxl_parse.c:get_sbits
Unexecuted instantiation: aom_film_grain.c:get_sbits
Unexecuted instantiation: dynamic_hdr_vivid.c:get_sbits
Unexecuted instantiation: hdr_dynamic_metadata.c:get_sbits
Unexecuted instantiation: av1dec.c:get_sbits
Unexecuted instantiation: bit.c:get_sbits
Unexecuted instantiation: dtsdec.c:get_sbits
Unexecuted instantiation: dtshddec.c:get_sbits
Unexecuted instantiation: h264dec.c:get_sbits
Unexecuted instantiation: hls_sample_encryption.c:get_sbits
Unexecuted instantiation: isom.c:get_sbits
Unexecuted instantiation: matroskadec.c:get_sbits
Unexecuted instantiation: mov.c:get_sbits
Unexecuted instantiation: mpc8.c:get_sbits
Unexecuted instantiation: mpegts.c:get_sbits
Unexecuted instantiation: oggparsetheora.c:get_sbits
Unexecuted instantiation: shortendec.c:get_sbits
Unexecuted instantiation: swfdec.c:get_sbits
Unexecuted instantiation: takdec.c:get_sbits
Unexecuted instantiation: iamf_parse.c:get_sbits
Unexecuted instantiation: dirac.c:get_sbits
Unexecuted instantiation: atrac9dec.c:get_sbits
Unexecuted instantiation: enc.c:get_sbits
Unexecuted instantiation: enc_psy.c:get_sbits
Unexecuted instantiation: pvq.c:get_sbits
Unexecuted instantiation: rc.c:get_sbits
Unexecuted instantiation: celt.c:get_sbits
Unexecuted instantiation: gsmdec.c:get_sbits
Unexecuted instantiation: msgsmdec.c:get_sbits
Unexecuted instantiation: imc.c:get_sbits
adpcm.c:get_sbits
Line
Count
Source
323
147k
{
324
147k
    register int tmp;
325
147k
    OPEN_READER(re, s);
326
147k
    av_assert2(n>0 && n<=25);
327
147k
    UPDATE_CACHE(re, s);
328
147k
    tmp = SHOW_SBITS(re, s, n);
329
147k
    LAST_SKIP_BITS(re, s, n);
330
147k
    CLOSE_READER(re, s);
331
147k
    return tmp;
332
147k
}
Unexecuted instantiation: wmaenc.c:get_sbits
Unexecuted instantiation: wma.c:get_sbits
Unexecuted instantiation: cfhd.c:get_sbits
Unexecuted instantiation: wavarc.c:get_sbits
Unexecuted instantiation: escape130.c:get_sbits
asvdec.c:get_sbits
Line
Count
Source
323
170k
{
324
170k
    register int tmp;
325
170k
    OPEN_READER(re, s);
326
170k
    av_assert2(n>0 && n<=25);
327
170k
    UPDATE_CACHE(re, s);
328
170k
    tmp = SHOW_SBITS(re, s, n);
329
170k
    LAST_SKIP_BITS(re, s, n);
330
170k
    CLOSE_READER(re, s);
331
170k
    return tmp;
332
170k
}
Unexecuted instantiation: diracdec.c:get_sbits
Unexecuted instantiation: dirac_arith.c:get_sbits
Unexecuted instantiation: wmadec.c:get_sbits
Unexecuted instantiation: aacenc.c:get_sbits
imm4.c:get_sbits
Line
Count
Source
323
45.3k
{
324
45.3k
    register int tmp;
325
45.3k
    OPEN_READER(re, s);
326
45.3k
    av_assert2(n>0 && n<=25);
327
45.3k
    UPDATE_CACHE(re, s);
328
45.3k
    tmp = SHOW_SBITS(re, s, n);
329
45.3k
    LAST_SKIP_BITS(re, s, n);
330
45.3k
    CLOSE_READER(re, s);
331
45.3k
    return tmp;
332
45.3k
}
Unexecuted instantiation: exr.c:get_sbits
Unexecuted instantiation: aacdec.c:get_sbits
Unexecuted instantiation: aacdec_fixed.c:get_sbits
Unexecuted instantiation: aacdec_float.c:get_sbits
Unexecuted instantiation: aacdec_tab.c:get_sbits
Unexecuted instantiation: aacdec_usac.c:get_sbits
Unexecuted instantiation: aacdec_usac_mps212.c:get_sbits
Unexecuted instantiation: aacps_common.c:get_sbits
Unexecuted instantiation: aacsbr.c:get_sbits
Unexecuted instantiation: aacsbr_fixed.c:get_sbits
Unexecuted instantiation: aacdec_ac.c:get_sbits
Unexecuted instantiation: aacdec_lpd.c:get_sbits
Unexecuted instantiation: aacps_fixed.c:get_sbits
Unexecuted instantiation: aacps_float.c:get_sbits
Unexecuted instantiation: mjpegdec.c:get_sbits
Unexecuted instantiation: mjpegdec_common.c:get_sbits
Unexecuted instantiation: jpeglsdec.c:get_sbits
Unexecuted instantiation: jvdec.c:get_sbits
Unexecuted instantiation: rdt.c:get_sbits
Unexecuted instantiation: rtpdec_h261.c:get_sbits
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_sbits
Unexecuted instantiation: rtpdec_latm.c:get_sbits
Unexecuted instantiation: rtpdec_mpeg4.c:get_sbits
Unexecuted instantiation: rtpdec_qt.c:get_sbits
Unexecuted instantiation: h264_cavlc.c:get_sbits
Unexecuted instantiation: h264_direct.c:get_sbits
Unexecuted instantiation: h264_mb.c:get_sbits
Unexecuted instantiation: h264_picture.c:get_sbits
Unexecuted instantiation: h264_refs.c:get_sbits
Unexecuted instantiation: h264_slice.c:get_sbits
Unexecuted instantiation: h264_cabac.c:get_sbits
Unexecuted instantiation: h264_loopfilter.c:get_sbits
Unexecuted instantiation: alsdec.c:get_sbits
Unexecuted instantiation: bgmc.c:get_sbits
Unexecuted instantiation: mlz.c:get_sbits
Unexecuted instantiation: bonk.c:get_sbits
Unexecuted instantiation: mxpegdec.c:get_sbits
Unexecuted instantiation: rv30.c:get_sbits
Unexecuted instantiation: rv34.c:get_sbits
Unexecuted instantiation: indeo3.c:get_sbits
eamad.c:get_sbits
Line
Count
Source
323
3.36M
{
324
3.36M
    register int tmp;
325
3.36M
    OPEN_READER(re, s);
326
3.36M
    av_assert2(n>0 && n<=25);
327
3.36M
    UPDATE_CACHE(re, s);
328
3.36M
    tmp = SHOW_SBITS(re, s, n);
329
3.36M
    LAST_SKIP_BITS(re, s, n);
330
3.36M
    CLOSE_READER(re, s);
331
3.36M
    return tmp;
332
3.36M
}
Unexecuted instantiation: mpeg12.c:get_sbits
Unexecuted instantiation: g726.c:get_sbits
Unexecuted instantiation: vc1dec.c:get_sbits
Unexecuted instantiation: vc1_block.c:get_sbits
Unexecuted instantiation: vc1_loopfilter.c:get_sbits
Unexecuted instantiation: vc1_mc.c:get_sbits
Unexecuted instantiation: vc1_pred.c:get_sbits
Unexecuted instantiation: mpegaudiodec_float.c:get_sbits
Unexecuted instantiation: huffyuvdec.c:get_sbits
Unexecuted instantiation: speexdec.c:get_sbits
Unexecuted instantiation: atrac3plusdec.c:get_sbits
Unexecuted instantiation: atrac3plusdsp.c:get_sbits
Unexecuted instantiation: atrac3plus.c:get_sbits
Unexecuted instantiation: mss4.c:get_sbits
Unexecuted instantiation: tiff.c:get_sbits
Unexecuted instantiation: faxcompr.c:get_sbits
ac3dec_float.c:get_sbits
Line
Count
Source
323
102M
{
324
102M
    register int tmp;
325
102M
    OPEN_READER(re, s);
326
102M
    av_assert2(n>0 && n<=25);
327
102M
    UPDATE_CACHE(re, s);
328
102M
    tmp = SHOW_SBITS(re, s, n);
329
102M
    LAST_SKIP_BITS(re, s, n);
330
102M
    CLOSE_READER(re, s);
331
102M
    return tmp;
332
102M
}
Unexecuted instantiation: on2avc.c:get_sbits
Unexecuted instantiation: smacker.c:get_sbits
Unexecuted instantiation: dvbsubdec.c:get_sbits
Unexecuted instantiation: mss1.c:get_sbits
Unexecuted instantiation: mss12.c:get_sbits
Unexecuted instantiation: mss2.c:get_sbits
mdec.c:get_sbits
Line
Count
Source
323
103k
{
324
103k
    register int tmp;
325
103k
    OPEN_READER(re, s);
326
103k
    av_assert2(n>0 && n<=25);
327
103k
    UPDATE_CACHE(re, s);
328
103k
    tmp = SHOW_SBITS(re, s, n);
329
103k
    LAST_SKIP_BITS(re, s, n);
330
103k
    CLOSE_READER(re, s);
331
103k
    return tmp;
332
103k
}
Unexecuted instantiation: osq.c:get_sbits
Unexecuted instantiation: vp6.c:get_sbits
Unexecuted instantiation: vp56.c:get_sbits
Unexecuted instantiation: vp56data.c:get_sbits
Unexecuted instantiation: loco.c:get_sbits
Unexecuted instantiation: vp5.c:get_sbits
Unexecuted instantiation: ra144dec.c:get_sbits
Unexecuted instantiation: indeo5.c:get_sbits
Unexecuted instantiation: ivi.c:get_sbits
Unexecuted instantiation: ivi_dsp.c:get_sbits
Unexecuted instantiation: apac.c:get_sbits
clearvideo.c:get_sbits
Line
Count
Source
323
247k
{
324
247k
    register int tmp;
325
247k
    OPEN_READER(re, s);
326
247k
    av_assert2(n>0 && n<=25);
327
247k
    UPDATE_CACHE(re, s);
328
247k
    tmp = SHOW_SBITS(re, s, n);
329
247k
    LAST_SKIP_BITS(re, s, n);
330
247k
    CLOSE_READER(re, s);
331
247k
    return tmp;
332
247k
}
Unexecuted instantiation: dxtory.c:get_sbits
Unexecuted instantiation: mpegaudiodec_fixed.c:get_sbits
Unexecuted instantiation: ralf.c:get_sbits
Unexecuted instantiation: pixlet.c:get_sbits
Unexecuted instantiation: wnv1.c:get_sbits
Unexecuted instantiation: qoadec.c:get_sbits
vima.c:get_sbits
Line
Count
Source
323
538k
{
324
538k
    register int tmp;
325
538k
    OPEN_READER(re, s);
326
538k
    av_assert2(n>0 && n<=25);
327
538k
    UPDATE_CACHE(re, s);
328
538k
    tmp = SHOW_SBITS(re, s, n);
329
538k
    LAST_SKIP_BITS(re, s, n);
330
538k
    CLOSE_READER(re, s);
331
538k
    return tmp;
332
538k
}
Unexecuted instantiation: leaddec.c:get_sbits
Unexecuted instantiation: eatqi.c:get_sbits
Unexecuted instantiation: lagarith.c:get_sbits
Unexecuted instantiation: lagarithrac.c:get_sbits
Unexecuted instantiation: dss_sp.c:get_sbits
Unexecuted instantiation: siren.c:get_sbits
Unexecuted instantiation: cavsdec.c:get_sbits
Unexecuted instantiation: cavs.c:get_sbits
Unexecuted instantiation: cavsdata.c:get_sbits
Unexecuted instantiation: hcom.c:get_sbits
Unexecuted instantiation: vp3.c:get_sbits
Unexecuted instantiation: webp.c:get_sbits
eatgv.c:get_sbits
Line
Count
Source
323
861k
{
324
861k
    register int tmp;
325
861k
    OPEN_READER(re, s);
326
861k
    av_assert2(n>0 && n<=25);
327
861k
    UPDATE_CACHE(re, s);
328
861k
    tmp = SHOW_SBITS(re, s, n);
329
861k
    LAST_SKIP_BITS(re, s, n);
330
861k
    CLOSE_READER(re, s);
331
861k
    return tmp;
332
861k
}
eatgq.c:get_sbits
Line
Count
Source
323
892k
{
324
892k
    register int tmp;
325
892k
    OPEN_READER(re, s);
326
892k
    av_assert2(n>0 && n<=25);
327
892k
    UPDATE_CACHE(re, s);
328
892k
    tmp = SHOW_SBITS(re, s, n);
329
892k
    LAST_SKIP_BITS(re, s, n);
330
892k
    CLOSE_READER(re, s);
331
892k
    return tmp;
332
892k
}
Unexecuted instantiation: sga.c:get_sbits
Unexecuted instantiation: binkaudio.c:get_sbits
mpeg12dec.c:get_sbits
Line
Count
Source
323
36.5k
{
324
36.5k
    register int tmp;
325
36.5k
    OPEN_READER(re, s);
326
36.5k
    av_assert2(n>0 && n<=25);
327
36.5k
    UPDATE_CACHE(re, s);
328
36.5k
    tmp = SHOW_SBITS(re, s, n);
329
36.5k
    LAST_SKIP_BITS(re, s, n);
330
36.5k
    CLOSE_READER(re, s);
331
36.5k
    return tmp;
332
36.5k
}
Unexecuted instantiation: indeo2.c:get_sbits
Unexecuted instantiation: 4xm.c:get_sbits
wmalosslessdec.c:get_sbits
Line
Count
Source
323
151k
{
324
151k
    register int tmp;
325
151k
    OPEN_READER(re, s);
326
151k
    av_assert2(n>0 && n<=25);
327
151k
    UPDATE_CACHE(re, s);
328
151k
    tmp = SHOW_SBITS(re, s, n);
329
151k
    LAST_SKIP_BITS(re, s, n);
330
151k
    CLOSE_READER(re, s);
331
151k
    return tmp;
332
151k
}
Unexecuted instantiation: ilbcdec.c:get_sbits
Unexecuted instantiation: hevcdec.c:get_sbits
Unexecuted instantiation: mvs.c:get_sbits
Unexecuted instantiation: pred.c:get_sbits
Unexecuted instantiation: refs.c:get_sbits
Unexecuted instantiation: cabac.c:get_sbits
Unexecuted instantiation: dsp.c:get_sbits
Unexecuted instantiation: filter.c:get_sbits
Unexecuted instantiation: tscc2.c:get_sbits
Unexecuted instantiation: hqx.c:get_sbits
mobiclip.c:get_sbits
Line
Count
Source
323
5.61k
{
324
5.61k
    register int tmp;
325
5.61k
    OPEN_READER(re, s);
326
5.61k
    av_assert2(n>0 && n<=25);
327
5.61k
    UPDATE_CACHE(re, s);
328
5.61k
    tmp = SHOW_SBITS(re, s, n);
329
5.61k
    LAST_SKIP_BITS(re, s, n);
330
5.61k
    CLOSE_READER(re, s);
331
5.61k
    return tmp;
332
5.61k
}
wmaprodec.c:get_sbits
Line
Count
Source
323
137k
{
324
137k
    register int tmp;
325
137k
    OPEN_READER(re, s);
326
137k
    av_assert2(n>0 && n<=25);
327
137k
    UPDATE_CACHE(re, s);
328
137k
    tmp = SHOW_SBITS(re, s, n);
329
137k
    LAST_SKIP_BITS(re, s, n);
330
137k
    CLOSE_READER(re, s);
331
137k
    return tmp;
332
137k
}
Unexecuted instantiation: g729dec.c:get_sbits
Unexecuted instantiation: sipr.c:get_sbits
Unexecuted instantiation: g722dec.c:get_sbits
Unexecuted instantiation: nellymoserdec.c:get_sbits
Unexecuted instantiation: dcaenc.c:get_sbits
Unexecuted instantiation: dcaadpcm.c:get_sbits
Unexecuted instantiation: dcadata.c:get_sbits
Unexecuted instantiation: interplayvideo.c:get_sbits
Unexecuted instantiation: dec.c:get_sbits
Unexecuted instantiation: dec_celt.c:get_sbits
Unexecuted instantiation: silk.c:get_sbits
Unexecuted instantiation: mjpegbdec.c:get_sbits
Unexecuted instantiation: bink.c:get_sbits
Unexecuted instantiation: dvdsubdec.c:get_sbits
rtjpeg.c:get_sbits
Line
Count
Source
323
348M
{
324
348M
    register int tmp;
325
348M
    OPEN_READER(re, s);
326
348M
    av_assert2(n>0 && n<=25);
327
348M
    UPDATE_CACHE(re, s);
328
348M
    tmp = SHOW_SBITS(re, s, n);
329
348M
    LAST_SKIP_BITS(re, s, n);
330
348M
    CLOSE_READER(re, s);
331
348M
    return tmp;
332
348M
}
Unexecuted instantiation: truespeech.c:get_sbits
Unexecuted instantiation: metasound.c:get_sbits
Unexecuted instantiation: escape124.c:get_sbits
Unexecuted instantiation: cllc.c:get_sbits
dvdec.c:get_sbits
Line
Count
Source
323
28.1M
{
324
28.1M
    register int tmp;
325
28.1M
    OPEN_READER(re, s);
326
28.1M
    av_assert2(n>0 && n<=25);
327
28.1M
    UPDATE_CACHE(re, s);
328
28.1M
    tmp = SHOW_SBITS(re, s, n);
329
28.1M
    LAST_SKIP_BITS(re, s, n);
330
28.1M
    CLOSE_READER(re, s);
331
28.1M
    return tmp;
332
28.1M
}
Unexecuted instantiation: tta.c:get_sbits
Unexecuted instantiation: fraps.c:get_sbits
Unexecuted instantiation: motionpixels.c:get_sbits
Unexecuted instantiation: vp9.c:get_sbits
Unexecuted instantiation: vp9block.c:get_sbits
Unexecuted instantiation: vp9data.c:get_sbits
Unexecuted instantiation: vp9lpf.c:get_sbits
Unexecuted instantiation: vp9mvs.c:get_sbits
Unexecuted instantiation: vp9prob.c:get_sbits
Unexecuted instantiation: vp9recon.c:get_sbits
Unexecuted instantiation: ffv1dec.c:get_sbits
Unexecuted instantiation: intra_utils.c:get_sbits
Unexecuted instantiation: thread.c:get_sbits
Unexecuted instantiation: ctu.c:get_sbits
Unexecuted instantiation: inter.c:get_sbits
Unexecuted instantiation: intra.c:get_sbits
Unexecuted instantiation: wmavoice.c:get_sbits
Unexecuted instantiation: rawdec.c:get_sbits
Unexecuted instantiation: svq1dec.c:get_sbits
Unexecuted instantiation: mpc7.c:get_sbits
Unexecuted instantiation: truemotion2rt.c:get_sbits
adxdec.c:get_sbits
Line
Count
Source
323
11.6M
{
324
11.6M
    register int tmp;
325
11.6M
    OPEN_READER(re, s);
326
11.6M
    av_assert2(n>0 && n<=25);
327
11.6M
    UPDATE_CACHE(re, s);
328
11.6M
    tmp = SHOW_SBITS(re, s, n);
329
11.6M
    LAST_SKIP_BITS(re, s, n);
330
11.6M
    CLOSE_READER(re, s);
331
11.6M
    return tmp;
332
11.6M
}
Unexecuted instantiation: rv40.c:get_sbits
Unexecuted instantiation: xsubdec.c:get_sbits
Unexecuted instantiation: notchlc.c:get_sbits
Unexecuted instantiation: aic.c:get_sbits
vqcdec.c:get_sbits
Line
Count
Source
323
462k
{
324
462k
    register int tmp;
325
462k
    OPEN_READER(re, s);
326
462k
    av_assert2(n>0 && n<=25);
327
462k
    UPDATE_CACHE(re, s);
328
462k
    tmp = SHOW_SBITS(re, s, n);
329
462k
    LAST_SKIP_BITS(re, s, n);
330
462k
    CLOSE_READER(re, s);
331
462k
    return tmp;
332
462k
}
dolby_e.c:get_sbits
Line
Count
Source
323
2.38M
{
324
2.38M
    register int tmp;
325
2.38M
    OPEN_READER(re, s);
326
2.38M
    av_assert2(n>0 && n<=25);
327
2.38M
    UPDATE_CACHE(re, s);
328
2.38M
    tmp = SHOW_SBITS(re, s, n);
329
2.38M
    LAST_SKIP_BITS(re, s, n);
330
2.38M
    CLOSE_READER(re, s);
331
2.38M
    return tmp;
332
2.38M
}
Unexecuted instantiation: proresdec.c:get_sbits
Unexecuted instantiation: evrcdec.c:get_sbits
Unexecuted instantiation: dnxhddec.c:get_sbits
Unexecuted instantiation: dcadec.c:get_sbits
dca_core.c:get_sbits
Line
Count
Source
323
22.8M
{
324
22.8M
    register int tmp;
325
22.8M
    OPEN_READER(re, s);
326
22.8M
    av_assert2(n>0 && n<=25);
327
22.8M
    UPDATE_CACHE(re, s);
328
22.8M
    tmp = SHOW_SBITS(re, s, n);
329
22.8M
    LAST_SKIP_BITS(re, s, n);
330
22.8M
    CLOSE_READER(re, s);
331
22.8M
    return tmp;
332
22.8M
}
Unexecuted instantiation: dca_lbr.c:get_sbits
Unexecuted instantiation: dca_xll.c:get_sbits
Unexecuted instantiation: mlpenc.c:get_sbits
mlpdec.c:get_sbits
Line
Count
Source
323
156k
{
324
156k
    register int tmp;
325
156k
    OPEN_READER(re, s);
326
156k
    av_assert2(n>0 && n<=25);
327
156k
    UPDATE_CACHE(re, s);
328
156k
    tmp = SHOW_SBITS(re, s, n);
329
156k
    LAST_SKIP_BITS(re, s, n);
330
156k
    CLOSE_READER(re, s);
331
156k
    return tmp;
332
156k
}
atrac3.c:get_sbits
Line
Count
Source
323
2.68M
{
324
2.68M
    register int tmp;
325
2.68M
    OPEN_READER(re, s);
326
2.68M
    av_assert2(n>0 && n<=25);
327
2.68M
    UPDATE_CACHE(re, s);
328
2.68M
    tmp = SHOW_SBITS(re, s, n);
329
2.68M
    LAST_SKIP_BITS(re, s, n);
330
2.68M
    CLOSE_READER(re, s);
331
2.68M
    return tmp;
332
2.68M
}
Unexecuted instantiation: vorbisdec.c:get_sbits
Unexecuted instantiation: flashsv.c:get_sbits
Unexecuted instantiation: wavpack.c:get_sbits
Unexecuted instantiation: speedhqdec.c:get_sbits
Unexecuted instantiation: g723_1dec.c:get_sbits
Unexecuted instantiation: g2meet.c:get_sbits
Unexecuted instantiation: shorten.c:get_sbits
Unexecuted instantiation: indeo4.c:get_sbits
Unexecuted instantiation: sp5xdec.c:get_sbits
atrac1.c:get_sbits
Line
Count
Source
323
2.21M
{
324
2.21M
    register int tmp;
325
2.21M
    OPEN_READER(re, s);
326
2.21M
    av_assert2(n>0 && n<=25);
327
2.21M
    UPDATE_CACHE(re, s);
328
2.21M
    tmp = SHOW_SBITS(re, s, n);
329
2.21M
    LAST_SKIP_BITS(re, s, n);
330
2.21M
    CLOSE_READER(re, s);
331
2.21M
    return tmp;
332
2.21M
}
Unexecuted instantiation: apv_decode.c:get_sbits
Unexecuted instantiation: apv_entropy.c:get_sbits
Unexecuted instantiation: avs.c:get_sbits
Unexecuted instantiation: rv60dec.c:get_sbits
alac.c:get_sbits
Line
Count
Source
323
199k
{
324
199k
    register int tmp;
325
199k
    OPEN_READER(re, s);
326
199k
    av_assert2(n>0 && n<=25);
327
199k
    UPDATE_CACHE(re, s);
328
199k
    tmp = SHOW_SBITS(re, s, n);
329
199k
    LAST_SKIP_BITS(re, s, n);
330
199k
    CLOSE_READER(re, s);
331
199k
    return tmp;
332
199k
}
tiertexseqv.c:get_sbits
Line
Count
Source
323
53.0k
{
324
53.0k
    register int tmp;
325
53.0k
    OPEN_READER(re, s);
326
53.0k
    av_assert2(n>0 && n<=25);
327
53.0k
    UPDATE_CACHE(re, s);
328
53.0k
    tmp = SHOW_SBITS(re, s, n);
329
53.0k
    LAST_SKIP_BITS(re, s, n);
330
53.0k
    CLOSE_READER(re, s);
331
53.0k
    return tmp;
332
53.0k
}
Unexecuted instantiation: ffv1enc.c:get_sbits
Unexecuted instantiation: hcadec.c:get_sbits
Unexecuted instantiation: pcx.c:get_sbits
Unexecuted instantiation: qcelpdec.c:get_sbits
flacdec.c:get_sbits
Line
Count
Source
323
3.22M
{
324
3.22M
    register int tmp;
325
3.22M
    OPEN_READER(re, s);
326
3.22M
    av_assert2(n>0 && n<=25);
327
3.22M
    UPDATE_CACHE(re, s);
328
3.22M
    tmp = SHOW_SBITS(re, s, n);
329
3.22M
    LAST_SKIP_BITS(re, s, n);
330
3.22M
    CLOSE_READER(re, s);
331
3.22M
    return tmp;
332
3.22M
}
ac3dec_fixed.c:get_sbits
Line
Count
Source
323
72.6M
{
324
72.6M
    register int tmp;
325
72.6M
    OPEN_READER(re, s);
326
72.6M
    av_assert2(n>0 && n<=25);
327
72.6M
    UPDATE_CACHE(re, s);
328
72.6M
    tmp = SHOW_SBITS(re, s, n);
329
72.6M
    LAST_SKIP_BITS(re, s, n);
330
72.6M
    CLOSE_READER(re, s);
331
72.6M
    return tmp;
332
72.6M
}
Unexecuted instantiation: midivid.c:get_sbits
Unexecuted instantiation: mimic.c:get_sbits
Unexecuted instantiation: fic.c:get_sbits
Unexecuted instantiation: qdmc.c:get_sbits
Unexecuted instantiation: ra288.c:get_sbits
Unexecuted instantiation: interplayacm.c:get_sbits
Unexecuted instantiation: ylc.c:get_sbits
Unexecuted instantiation: ftr.c:get_sbits
Unexecuted instantiation: agm.c:get_sbits
Unexecuted instantiation: xan.c:get_sbits
Unexecuted instantiation: svq3.c:get_sbits
Unexecuted instantiation: cri.c:get_sbits
Unexecuted instantiation: qdm2.c:get_sbits
Unexecuted instantiation: cljrdec.c:get_sbits
Unexecuted instantiation: g728dec.c:get_sbits
Unexecuted instantiation: cook.c:get_sbits
Unexecuted instantiation: twinvqdec.c:get_sbits
hq_hqa.c:get_sbits
Line
Count
Source
323
7.27M
{
324
7.27M
    register int tmp;
325
7.27M
    OPEN_READER(re, s);
326
7.27M
    av_assert2(n>0 && n<=25);
327
7.27M
    UPDATE_CACHE(re, s);
328
7.27M
    tmp = SHOW_SBITS(re, s, n);
329
7.27M
    LAST_SKIP_BITS(re, s, n);
330
7.27M
    CLOSE_READER(re, s);
331
7.27M
    return tmp;
332
7.27M
}
Unexecuted instantiation: cdxl.c:get_sbits
Unexecuted instantiation: vble.c:get_sbits
mv30.c:get_sbits
Line
Count
Source
323
113k
{
324
113k
    register int tmp;
325
113k
    OPEN_READER(re, s);
326
113k
    av_assert2(n>0 && n<=25);
327
113k
    UPDATE_CACHE(re, s);
328
113k
    tmp = SHOW_SBITS(re, s, n);
329
113k
    LAST_SKIP_BITS(re, s, n);
330
113k
    CLOSE_READER(re, s);
331
113k
    return tmp;
332
113k
}
Unexecuted instantiation: apedec.c:get_sbits
Unexecuted instantiation: h261dec.c:get_sbits
dstdec.c:get_sbits
Line
Count
Source
323
129k
{
324
129k
    register int tmp;
325
129k
    OPEN_READER(re, s);
326
129k
    av_assert2(n>0 && n<=25);
327
129k
    UPDATE_CACHE(re, s);
328
129k
    tmp = SHOW_SBITS(re, s, n);
329
129k
    LAST_SKIP_BITS(re, s, n);
330
129k
    CLOSE_READER(re, s);
331
129k
    return tmp;
332
129k
}
Unexecuted instantiation: jpeglsenc.c:get_sbits
Unexecuted instantiation: truemotion2.c:get_sbits
333
334
/**
335
 * Read 1-25 bits.
336
 */
337
static inline unsigned int get_bits(GetBitContext *s, int n)
338
10.9G
{
339
10.9G
    register unsigned int tmp;
340
10.9G
    OPEN_READER(re, s);
341
10.9G
    av_assert2(n>0 && n<=25);
342
10.9G
    UPDATE_CACHE(re, s);
343
10.9G
    tmp = SHOW_UBITS(re, s, n);
344
10.9G
    LAST_SKIP_BITS(re, s, n);
345
10.9G
    CLOSE_READER(re, s);
346
10.9G
    av_assert2(tmp < UINT64_C(1) << n);
347
10.9G
    return tmp;
348
10.9G
}
Unexecuted instantiation: mpegvideo_motion.c:get_bits
wmv2dec.c:get_bits
Line
Count
Source
338
381k
{
339
381k
    register unsigned int tmp;
340
381k
    OPEN_READER(re, s);
341
381k
    av_assert2(n>0 && n<=25);
342
381k
    UPDATE_CACHE(re, s);
343
381k
    tmp = SHOW_UBITS(re, s, n);
344
381k
    LAST_SKIP_BITS(re, s, n);
345
381k
    CLOSE_READER(re, s);
346
381k
    av_assert2(tmp < UINT64_C(1) << n);
347
381k
    return tmp;
348
381k
}
aac_adtstoasc.c:get_bits
Line
Count
Source
338
82.8k
{
339
82.8k
    register unsigned int tmp;
340
82.8k
    OPEN_READER(re, s);
341
82.8k
    av_assert2(n>0 && n<=25);
342
82.8k
    UPDATE_CACHE(re, s);
343
82.8k
    tmp = SHOW_UBITS(re, s, n);
344
82.8k
    LAST_SKIP_BITS(re, s, n);
345
82.8k
    CLOSE_READER(re, s);
346
82.8k
    av_assert2(tmp < UINT64_C(1) << n);
347
82.8k
    return tmp;
348
82.8k
}
Unexecuted instantiation: dovi_rpu.c:get_bits
Unexecuted instantiation: dovi_split.c:get_bits
Unexecuted instantiation: dts2pts.c:get_bits
Unexecuted instantiation: eac3_core.c:get_bits
evc_frame_merge.c:get_bits
Line
Count
Source
338
270k
{
339
270k
    register unsigned int tmp;
340
270k
    OPEN_READER(re, s);
341
270k
    av_assert2(n>0 && n<=25);
342
270k
    UPDATE_CACHE(re, s);
343
270k
    tmp = SHOW_UBITS(re, s, n);
344
270k
    LAST_SKIP_BITS(re, s, n);
345
270k
    CLOSE_READER(re, s);
346
270k
    av_assert2(tmp < UINT64_C(1) << n);
347
270k
    return tmp;
348
270k
}
extract_extradata.c:get_bits
Line
Count
Source
338
15.9M
{
339
15.9M
    register unsigned int tmp;
340
15.9M
    OPEN_READER(re, s);
341
15.9M
    av_assert2(n>0 && n<=25);
342
15.9M
    UPDATE_CACHE(re, s);
343
15.9M
    tmp = SHOW_UBITS(re, s, n);
344
15.9M
    LAST_SKIP_BITS(re, s, n);
345
15.9M
    CLOSE_READER(re, s);
346
15.9M
    av_assert2(tmp < UINT64_C(1) << n);
347
15.9M
    return tmp;
348
15.9M
}
Unexecuted instantiation: h264_metadata.c:get_bits
Unexecuted instantiation: h264_redundant_pps.c:get_bits
Unexecuted instantiation: h265_metadata.c:get_bits
Unexecuted instantiation: h266_metadata.c:get_bits
Unexecuted instantiation: lcevc_merge.c:get_bits
Unexecuted instantiation: lcevc_metadata.c:get_bits
Unexecuted instantiation: remove_extradata.c:get_bits
truehd_core.c:get_bits
Line
Count
Source
338
25.4k
{
339
25.4k
    register unsigned int tmp;
340
25.4k
    OPEN_READER(re, s);
341
25.4k
    av_assert2(n>0 && n<=25);
342
25.4k
    UPDATE_CACHE(re, s);
343
25.4k
    tmp = SHOW_UBITS(re, s, n);
344
25.4k
    LAST_SKIP_BITS(re, s, n);
345
25.4k
    CLOSE_READER(re, s);
346
25.4k
    av_assert2(tmp < UINT64_C(1) << n);
347
25.4k
    return tmp;
348
25.4k
}
vp9_raw_reorder.c:get_bits
Line
Count
Source
338
462k
{
339
462k
    register unsigned int tmp;
340
462k
    OPEN_READER(re, s);
341
462k
    av_assert2(n>0 && n<=25);
342
462k
    UPDATE_CACHE(re, s);
343
462k
    tmp = SHOW_UBITS(re, s, n);
344
462k
    LAST_SKIP_BITS(re, s, n);
345
462k
    CLOSE_READER(re, s);
346
462k
    av_assert2(tmp < UINT64_C(1) << n);
347
462k
    return tmp;
348
462k
}
vp9_superframe.c:get_bits
Line
Count
Source
338
10.2k
{
339
10.2k
    register unsigned int tmp;
340
10.2k
    OPEN_READER(re, s);
341
10.2k
    av_assert2(n>0 && n<=25);
342
10.2k
    UPDATE_CACHE(re, s);
343
10.2k
    tmp = SHOW_UBITS(re, s, n);
344
10.2k
    LAST_SKIP_BITS(re, s, n);
345
10.2k
    CLOSE_READER(re, s);
346
10.2k
    av_assert2(tmp < UINT64_C(1) << n);
347
10.2k
    return tmp;
348
10.2k
}
vp9_superframe_split.c:get_bits
Line
Count
Source
338
6.17k
{
339
6.17k
    register unsigned int tmp;
340
6.17k
    OPEN_READER(re, s);
341
6.17k
    av_assert2(n>0 && n<=25);
342
6.17k
    UPDATE_CACHE(re, s);
343
6.17k
    tmp = SHOW_UBITS(re, s, n);
344
6.17k
    LAST_SKIP_BITS(re, s, n);
345
6.17k
    CLOSE_READER(re, s);
346
6.17k
    av_assert2(tmp < UINT64_C(1) << n);
347
6.17k
    return tmp;
348
6.17k
}
cbs.c:get_bits
Line
Count
Source
338
1.81G
{
339
1.81G
    register unsigned int tmp;
340
1.81G
    OPEN_READER(re, s);
341
1.81G
    av_assert2(n>0 && n<=25);
342
1.81G
    UPDATE_CACHE(re, s);
343
1.81G
    tmp = SHOW_UBITS(re, s, n);
344
1.81G
    LAST_SKIP_BITS(re, s, n);
345
1.81G
    CLOSE_READER(re, s);
346
1.81G
    av_assert2(tmp < UINT64_C(1) << n);
347
1.81G
    return tmp;
348
1.81G
}
Unexecuted instantiation: cbs_apv.c:get_bits
cbs_av1.c:get_bits
Line
Count
Source
338
79.9M
{
339
79.9M
    register unsigned int tmp;
340
79.9M
    OPEN_READER(re, s);
341
79.9M
    av_assert2(n>0 && n<=25);
342
79.9M
    UPDATE_CACHE(re, s);
343
79.9M
    tmp = SHOW_UBITS(re, s, n);
344
79.9M
    LAST_SKIP_BITS(re, s, n);
345
79.9M
    CLOSE_READER(re, s);
346
79.9M
    av_assert2(tmp < UINT64_C(1) << n);
347
79.9M
    return tmp;
348
79.9M
}
Unexecuted instantiation: cbs_h264.c:get_bits
cbs_h2645.c:get_bits
Line
Count
Source
338
463M
{
339
463M
    register unsigned int tmp;
340
463M
    OPEN_READER(re, s);
341
463M
    av_assert2(n>0 && n<=25);
342
463M
    UPDATE_CACHE(re, s);
343
463M
    tmp = SHOW_UBITS(re, s, n);
344
463M
    LAST_SKIP_BITS(re, s, n);
345
463M
    CLOSE_READER(re, s);
346
463M
    av_assert2(tmp < UINT64_C(1) << n);
347
463M
    return tmp;
348
463M
}
Unexecuted instantiation: cbs_h265.c:get_bits
cbs_h266.c:get_bits
Line
Count
Source
338
22.4k
{
339
22.4k
    register unsigned int tmp;
340
22.4k
    OPEN_READER(re, s);
341
22.4k
    av_assert2(n>0 && n<=25);
342
22.4k
    UPDATE_CACHE(re, s);
343
22.4k
    tmp = SHOW_UBITS(re, s, n);
344
22.4k
    LAST_SKIP_BITS(re, s, n);
345
22.4k
    CLOSE_READER(re, s);
346
22.4k
    av_assert2(tmp < UINT64_C(1) << n);
347
22.4k
    return tmp;
348
22.4k
}
cbs_lcevc.c:get_bits
Line
Count
Source
338
817k
{
339
817k
    register unsigned int tmp;
340
817k
    OPEN_READER(re, s);
341
817k
    av_assert2(n>0 && n<=25);
342
817k
    UPDATE_CACHE(re, s);
343
817k
    tmp = SHOW_UBITS(re, s, n);
344
817k
    LAST_SKIP_BITS(re, s, n);
345
817k
    CLOSE_READER(re, s);
346
817k
    av_assert2(tmp < UINT64_C(1) << n);
347
817k
    return tmp;
348
817k
}
Unexecuted instantiation: cbs_mpeg2.c:get_bits
cbs_sei.c:get_bits
Line
Count
Source
338
45.1M
{
339
45.1M
    register unsigned int tmp;
340
45.1M
    OPEN_READER(re, s);
341
45.1M
    av_assert2(n>0 && n<=25);
342
45.1M
    UPDATE_CACHE(re, s);
343
45.1M
    tmp = SHOW_UBITS(re, s, n);
344
45.1M
    LAST_SKIP_BITS(re, s, n);
345
45.1M
    CLOSE_READER(re, s);
346
45.1M
    av_assert2(tmp < UINT64_C(1) << n);
347
45.1M
    return tmp;
348
45.1M
}
cbs_vp8.c:get_bits
Line
Count
Source
338
19.8M
{
339
19.8M
    register unsigned int tmp;
340
19.8M
    OPEN_READER(re, s);
341
19.8M
    av_assert2(n>0 && n<=25);
342
19.8M
    UPDATE_CACHE(re, s);
343
19.8M
    tmp = SHOW_UBITS(re, s, n);
344
19.8M
    LAST_SKIP_BITS(re, s, n);
345
19.8M
    CLOSE_READER(re, s);
346
19.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.8M
    return tmp;
348
19.8M
}
cbs_vp9.c:get_bits
Line
Count
Source
338
1.33M
{
339
1.33M
    register unsigned int tmp;
340
1.33M
    OPEN_READER(re, s);
341
1.33M
    av_assert2(n>0 && n<=25);
342
1.33M
    UPDATE_CACHE(re, s);
343
1.33M
    tmp = SHOW_UBITS(re, s, n);
344
1.33M
    LAST_SKIP_BITS(re, s, n);
345
1.33M
    CLOSE_READER(re, s);
346
1.33M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.33M
    return tmp;
348
1.33M
}
dovi_rpudec.c:get_bits
Line
Count
Source
338
439k
{
339
439k
    register unsigned int tmp;
340
439k
    OPEN_READER(re, s);
341
439k
    av_assert2(n>0 && n<=25);
342
439k
    UPDATE_CACHE(re, s);
343
439k
    tmp = SHOW_UBITS(re, s, n);
344
439k
    LAST_SKIP_BITS(re, s, n);
345
439k
    CLOSE_READER(re, s);
346
439k
    av_assert2(tmp < UINT64_C(1) << n);
347
439k
    return tmp;
348
439k
}
evc_parse.c:get_bits
Line
Count
Source
338
1.48M
{
339
1.48M
    register unsigned int tmp;
340
1.48M
    OPEN_READER(re, s);
341
1.48M
    av_assert2(n>0 && n<=25);
342
1.48M
    UPDATE_CACHE(re, s);
343
1.48M
    tmp = SHOW_UBITS(re, s, n);
344
1.48M
    LAST_SKIP_BITS(re, s, n);
345
1.48M
    CLOSE_READER(re, s);
346
1.48M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.48M
    return tmp;
348
1.48M
}
evc_ps.c:get_bits
Line
Count
Source
338
11.4M
{
339
11.4M
    register unsigned int tmp;
340
11.4M
    OPEN_READER(re, s);
341
11.4M
    av_assert2(n>0 && n<=25);
342
11.4M
    UPDATE_CACHE(re, s);
343
11.4M
    tmp = SHOW_UBITS(re, s, n);
344
11.4M
    LAST_SKIP_BITS(re, s, n);
345
11.4M
    CLOSE_READER(re, s);
346
11.4M
    av_assert2(tmp < UINT64_C(1) << n);
347
11.4M
    return tmp;
348
11.4M
}
Unexecuted instantiation: h263dec.c:get_bits
h2645_parse.c:get_bits
Line
Count
Source
338
259M
{
339
259M
    register unsigned int tmp;
340
259M
    OPEN_READER(re, s);
341
259M
    av_assert2(n>0 && n<=25);
342
259M
    UPDATE_CACHE(re, s);
343
259M
    tmp = SHOW_UBITS(re, s, n);
344
259M
    LAST_SKIP_BITS(re, s, n);
345
259M
    CLOSE_READER(re, s);
346
259M
    av_assert2(tmp < UINT64_C(1) << n);
347
259M
    return tmp;
348
259M
}
Unexecuted instantiation: h264_parse.c:get_bits
h264_ps.c:get_bits
Line
Count
Source
338
55.2M
{
339
55.2M
    register unsigned int tmp;
340
55.2M
    OPEN_READER(re, s);
341
55.2M
    av_assert2(n>0 && n<=25);
342
55.2M
    UPDATE_CACHE(re, s);
343
55.2M
    tmp = SHOW_UBITS(re, s, n);
344
55.2M
    LAST_SKIP_BITS(re, s, n);
345
55.2M
    CLOSE_READER(re, s);
346
55.2M
    av_assert2(tmp < UINT64_C(1) << n);
347
55.2M
    return tmp;
348
55.2M
}
Unexecuted instantiation: h264data.c:get_bits
Unexecuted instantiation: h265_profile_level.c:get_bits
ps.c:get_bits
Line
Count
Source
338
998M
{
339
998M
    register unsigned int tmp;
340
998M
    OPEN_READER(re, s);
341
998M
    av_assert2(n>0 && n<=25);
342
998M
    UPDATE_CACHE(re, s);
343
998M
    tmp = SHOW_UBITS(re, s, n);
344
998M
    LAST_SKIP_BITS(re, s, n);
345
998M
    CLOSE_READER(re, s);
346
998M
    av_assert2(tmp < UINT64_C(1) << n);
347
998M
    return tmp;
348
998M
}
intelh263dec.c:get_bits
Line
Count
Source
338
291k
{
339
291k
    register unsigned int tmp;
340
291k
    OPEN_READER(re, s);
341
291k
    av_assert2(n>0 && n<=25);
342
291k
    UPDATE_CACHE(re, s);
343
291k
    tmp = SHOW_UBITS(re, s, n);
344
291k
    LAST_SKIP_BITS(re, s, n);
345
291k
    CLOSE_READER(re, s);
346
291k
    av_assert2(tmp < UINT64_C(1) << n);
347
291k
    return tmp;
348
291k
}
intrax8.c:get_bits
Line
Count
Source
338
8.44M
{
339
8.44M
    register unsigned int tmp;
340
8.44M
    OPEN_READER(re, s);
341
8.44M
    av_assert2(n>0 && n<=25);
342
8.44M
    UPDATE_CACHE(re, s);
343
8.44M
    tmp = SHOW_UBITS(re, s, n);
344
8.44M
    LAST_SKIP_BITS(re, s, n);
345
8.44M
    CLOSE_READER(re, s);
346
8.44M
    av_assert2(tmp < UINT64_C(1) << n);
347
8.44M
    return tmp;
348
8.44M
}
ituh263dec.c:get_bits
Line
Count
Source
338
21.8M
{
339
21.8M
    register unsigned int tmp;
340
21.8M
    OPEN_READER(re, s);
341
21.8M
    av_assert2(n>0 && n<=25);
342
21.8M
    UPDATE_CACHE(re, s);
343
21.8M
    tmp = SHOW_UBITS(re, s, n);
344
21.8M
    LAST_SKIP_BITS(re, s, n);
345
21.8M
    CLOSE_READER(re, s);
346
21.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
21.8M
    return tmp;
348
21.8M
}
mlp_parse.c:get_bits
Line
Count
Source
338
3.49M
{
339
3.49M
    register unsigned int tmp;
340
3.49M
    OPEN_READER(re, s);
341
3.49M
    av_assert2(n>0 && n<=25);
342
3.49M
    UPDATE_CACHE(re, s);
343
3.49M
    tmp = SHOW_UBITS(re, s, n);
344
3.49M
    LAST_SKIP_BITS(re, s, n);
345
3.49M
    CLOSE_READER(re, s);
346
3.49M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.49M
    return tmp;
348
3.49M
}
mpeg4audio.c:get_bits
Line
Count
Source
338
975k
{
339
975k
    register unsigned int tmp;
340
975k
    OPEN_READER(re, s);
341
975k
    av_assert2(n>0 && n<=25);
342
975k
    UPDATE_CACHE(re, s);
343
975k
    tmp = SHOW_UBITS(re, s, n);
344
975k
    LAST_SKIP_BITS(re, s, n);
345
975k
    CLOSE_READER(re, s);
346
975k
    av_assert2(tmp < UINT64_C(1) << n);
347
975k
    return tmp;
348
975k
}
mpeg4videodec.c:get_bits
Line
Count
Source
338
85.5M
{
339
85.5M
    register unsigned int tmp;
340
85.5M
    OPEN_READER(re, s);
341
85.5M
    av_assert2(n>0 && n<=25);
342
85.5M
    UPDATE_CACHE(re, s);
343
85.5M
    tmp = SHOW_UBITS(re, s, n);
344
85.5M
    LAST_SKIP_BITS(re, s, n);
345
85.5M
    CLOSE_READER(re, s);
346
85.5M
    av_assert2(tmp < UINT64_C(1) << n);
347
85.5M
    return tmp;
348
85.5M
}
Unexecuted instantiation: mpeg_er.c:get_bits
Unexecuted instantiation: mpegvideo_dec.c:get_bits
msmpeg4dec.c:get_bits
Line
Count
Source
338
4.16M
{
339
4.16M
    register unsigned int tmp;
340
4.16M
    OPEN_READER(re, s);
341
4.16M
    av_assert2(n>0 && n<=25);
342
4.16M
    UPDATE_CACHE(re, s);
343
4.16M
    tmp = SHOW_UBITS(re, s, n);
344
4.16M
    LAST_SKIP_BITS(re, s, n);
345
4.16M
    CLOSE_READER(re, s);
346
4.16M
    av_assert2(tmp < UINT64_C(1) << n);
347
4.16M
    return tmp;
348
4.16M
}
rv10.c:get_bits
Line
Count
Source
338
743k
{
339
743k
    register unsigned int tmp;
340
743k
    OPEN_READER(re, s);
341
743k
    av_assert2(n>0 && n<=25);
342
743k
    UPDATE_CACHE(re, s);
343
743k
    tmp = SHOW_UBITS(re, s, n);
344
743k
    LAST_SKIP_BITS(re, s, n);
345
743k
    CLOSE_READER(re, s);
346
743k
    av_assert2(tmp < UINT64_C(1) << n);
347
743k
    return tmp;
348
743k
}
ac3_parser.c:get_bits
Line
Count
Source
338
925M
{
339
925M
    register unsigned int tmp;
340
925M
    OPEN_READER(re, s);
341
925M
    av_assert2(n>0 && n<=25);
342
925M
    UPDATE_CACHE(re, s);
343
925M
    tmp = SHOW_UBITS(re, s, n);
344
925M
    LAST_SKIP_BITS(re, s, n);
345
925M
    CLOSE_READER(re, s);
346
925M
    av_assert2(tmp < UINT64_C(1) << n);
347
925M
    return tmp;
348
925M
}
adts_header.c:get_bits
Line
Count
Source
338
226M
{
339
226M
    register unsigned int tmp;
340
226M
    OPEN_READER(re, s);
341
226M
    av_assert2(n>0 && n<=25);
342
226M
    UPDATE_CACHE(re, s);
343
226M
    tmp = SHOW_UBITS(re, s, n);
344
226M
    LAST_SKIP_BITS(re, s, n);
345
226M
    CLOSE_READER(re, s);
346
226M
    av_assert2(tmp < UINT64_C(1) << n);
347
226M
    return tmp;
348
226M
}
av1_parse.c:get_bits
Line
Count
Source
338
2.50M
{
339
2.50M
    register unsigned int tmp;
340
2.50M
    OPEN_READER(re, s);
341
2.50M
    av_assert2(n>0 && n<=25);
342
2.50M
    UPDATE_CACHE(re, s);
343
2.50M
    tmp = SHOW_UBITS(re, s, n);
344
2.50M
    LAST_SKIP_BITS(re, s, n);
345
2.50M
    CLOSE_READER(re, s);
346
2.50M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.50M
    return tmp;
348
2.50M
}
flvdec.c:get_bits
Line
Count
Source
338
529k
{
339
529k
    register unsigned int tmp;
340
529k
    OPEN_READER(re, s);
341
529k
    av_assert2(n>0 && n<=25);
342
529k
    UPDATE_CACHE(re, s);
343
529k
    tmp = SHOW_UBITS(re, s, n);
344
529k
    LAST_SKIP_BITS(re, s, n);
345
529k
    CLOSE_READER(re, s);
346
529k
    av_assert2(tmp < UINT64_C(1) << n);
347
529k
    return tmp;
348
529k
}
h2645_vui.c:get_bits
Line
Count
Source
338
10.3M
{
339
10.3M
    register unsigned int tmp;
340
10.3M
    OPEN_READER(re, s);
341
10.3M
    av_assert2(n>0 && n<=25);
342
10.3M
    UPDATE_CACHE(re, s);
343
10.3M
    tmp = SHOW_UBITS(re, s, n);
344
10.3M
    LAST_SKIP_BITS(re, s, n);
345
10.3M
    CLOSE_READER(re, s);
346
10.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
10.3M
    return tmp;
348
10.3M
}
Unexecuted instantiation: vc1_parser.c:get_bits
vorbis_parser.c:get_bits
Line
Count
Source
338
210k
{
339
210k
    register unsigned int tmp;
340
210k
    OPEN_READER(re, s);
341
210k
    av_assert2(n>0 && n<=25);
342
210k
    UPDATE_CACHE(re, s);
343
210k
    tmp = SHOW_UBITS(re, s, n);
344
210k
    LAST_SKIP_BITS(re, s, n);
345
210k
    CLOSE_READER(re, s);
346
210k
    av_assert2(tmp < UINT64_C(1) << n);
347
210k
    return tmp;
348
210k
}
vp9_parser.c:get_bits
Line
Count
Source
338
465k
{
339
465k
    register unsigned int tmp;
340
465k
    OPEN_READER(re, s);
341
465k
    av_assert2(n>0 && n<=25);
342
465k
    UPDATE_CACHE(re, s);
343
465k
    tmp = SHOW_UBITS(re, s, n);
344
465k
    LAST_SKIP_BITS(re, s, n);
345
465k
    CLOSE_READER(re, s);
346
465k
    av_assert2(tmp < UINT64_C(1) << n);
347
465k
    return tmp;
348
465k
}
Unexecuted instantiation: vvc_parser.c:get_bits
Unexecuted instantiation: aac_ac3_parser.c:get_bits
Unexecuted instantiation: av1_parser.c:get_bits
avs2_parser.c:get_bits
Line
Count
Source
338
9.20k
{
339
9.20k
    register unsigned int tmp;
340
9.20k
    OPEN_READER(re, s);
341
9.20k
    av_assert2(n>0 && n<=25);
342
9.20k
    UPDATE_CACHE(re, s);
343
9.20k
    tmp = SHOW_UBITS(re, s, n);
344
9.20k
    LAST_SKIP_BITS(re, s, n);
345
9.20k
    CLOSE_READER(re, s);
346
9.20k
    av_assert2(tmp < UINT64_C(1) << n);
347
9.20k
    return tmp;
348
9.20k
}
avs3_parser.c:get_bits
Line
Count
Source
338
3
{
339
3
    register unsigned int tmp;
340
3
    OPEN_READER(re, s);
341
3
    av_assert2(n>0 && n<=25);
342
3
    UPDATE_CACHE(re, s);
343
3
    tmp = SHOW_UBITS(re, s, n);
344
3
    LAST_SKIP_BITS(re, s, n);
345
3
    CLOSE_READER(re, s);
346
3
    av_assert2(tmp < UINT64_C(1) << n);
347
3
    return tmp;
348
3
}
cavs_parser.c:get_bits
Line
Count
Source
338
63.9k
{
339
63.9k
    register unsigned int tmp;
340
63.9k
    OPEN_READER(re, s);
341
63.9k
    av_assert2(n>0 && n<=25);
342
63.9k
    UPDATE_CACHE(re, s);
343
63.9k
    tmp = SHOW_UBITS(re, s, n);
344
63.9k
    LAST_SKIP_BITS(re, s, n);
345
63.9k
    CLOSE_READER(re, s);
346
63.9k
    av_assert2(tmp < UINT64_C(1) << n);
347
63.9k
    return tmp;
348
63.9k
}
dca_parser.c:get_bits
Line
Count
Source
338
524k
{
339
524k
    register unsigned int tmp;
340
524k
    OPEN_READER(re, s);
341
524k
    av_assert2(n>0 && n<=25);
342
524k
    UPDATE_CACHE(re, s);
343
524k
    tmp = SHOW_UBITS(re, s, n);
344
524k
    LAST_SKIP_BITS(re, s, n);
345
524k
    CLOSE_READER(re, s);
346
524k
    av_assert2(tmp < UINT64_C(1) << n);
347
524k
    return tmp;
348
524k
}
Unexecuted instantiation: dolby_e_parser.c:get_bits
evc_parser.c:get_bits
Line
Count
Source
338
693k
{
339
693k
    register unsigned int tmp;
340
693k
    OPEN_READER(re, s);
341
693k
    av_assert2(n>0 && n<=25);
342
693k
    UPDATE_CACHE(re, s);
343
693k
    tmp = SHOW_UBITS(re, s, n);
344
693k
    LAST_SKIP_BITS(re, s, n);
345
693k
    CLOSE_READER(re, s);
346
693k
    av_assert2(tmp < UINT64_C(1) << n);
347
693k
    return tmp;
348
693k
}
Unexecuted instantiation: ffv1_parser.c:get_bits
flac_parser.c:get_bits
Line
Count
Source
338
7.58M
{
339
7.58M
    register unsigned int tmp;
340
7.58M
    OPEN_READER(re, s);
341
7.58M
    av_assert2(n>0 && n<=25);
342
7.58M
    UPDATE_CACHE(re, s);
343
7.58M
    tmp = SHOW_UBITS(re, s, n);
344
7.58M
    LAST_SKIP_BITS(re, s, n);
345
7.58M
    CLOSE_READER(re, s);
346
7.58M
    av_assert2(tmp < UINT64_C(1) << n);
347
7.58M
    return tmp;
348
7.58M
}
Unexecuted instantiation: ftr_parser.c:get_bits
h264_parser.c:get_bits
Line
Count
Source
338
107M
{
339
107M
    register unsigned int tmp;
340
107M
    OPEN_READER(re, s);
341
107M
    av_assert2(n>0 && n<=25);
342
107M
    UPDATE_CACHE(re, s);
343
107M
    tmp = SHOW_UBITS(re, s, n);
344
107M
    LAST_SKIP_BITS(re, s, n);
345
107M
    CLOSE_READER(re, s);
346
107M
    av_assert2(tmp < UINT64_C(1) << n);
347
107M
    return tmp;
348
107M
}
h264_sei.c:get_bits
Line
Count
Source
338
4.77M
{
339
4.77M
    register unsigned int tmp;
340
4.77M
    OPEN_READER(re, s);
341
4.77M
    av_assert2(n>0 && n<=25);
342
4.77M
    UPDATE_CACHE(re, s);
343
4.77M
    tmp = SHOW_UBITS(re, s, n);
344
4.77M
    LAST_SKIP_BITS(re, s, n);
345
4.77M
    CLOSE_READER(re, s);
346
4.77M
    av_assert2(tmp < UINT64_C(1) << n);
347
4.77M
    return tmp;
348
4.77M
}
Unexecuted instantiation: h264idct.c:get_bits
parser.c:get_bits
Line
Count
Source
338
218k
{
339
218k
    register unsigned int tmp;
340
218k
    OPEN_READER(re, s);
341
218k
    av_assert2(n>0 && n<=25);
342
218k
    UPDATE_CACHE(re, s);
343
218k
    tmp = SHOW_UBITS(re, s, n);
344
218k
    LAST_SKIP_BITS(re, s, n);
345
218k
    CLOSE_READER(re, s);
346
218k
    av_assert2(tmp < UINT64_C(1) << n);
347
218k
    return tmp;
348
218k
}
sei.c:get_bits
Line
Count
Source
338
19.2M
{
339
19.2M
    register unsigned int tmp;
340
19.2M
    OPEN_READER(re, s);
341
19.2M
    av_assert2(n>0 && n<=25);
342
19.2M
    UPDATE_CACHE(re, s);
343
19.2M
    tmp = SHOW_UBITS(re, s, n);
344
19.2M
    LAST_SKIP_BITS(re, s, n);
345
19.2M
    CLOSE_READER(re, s);
346
19.2M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.2M
    return tmp;
348
19.2M
}
jpegxl_parser.c:get_bits
Line
Count
Source
338
325M
{
339
325M
    register unsigned int tmp;
340
325M
    OPEN_READER(re, s);
341
325M
    av_assert2(n>0 && n<=25);
342
325M
    UPDATE_CACHE(re, s);
343
325M
    tmp = SHOW_UBITS(re, s, n);
344
325M
    LAST_SKIP_BITS(re, s, n);
345
325M
    CLOSE_READER(re, s);
346
325M
    av_assert2(tmp < UINT64_C(1) << n);
347
325M
    return tmp;
348
325M
}
jpegxs_parser.c:get_bits
Line
Count
Source
338
66
{
339
66
    register unsigned int tmp;
340
66
    OPEN_READER(re, s);
341
66
    av_assert2(n>0 && n<=25);
342
66
    UPDATE_CACHE(re, s);
343
66
    tmp = SHOW_UBITS(re, s, n);
344
66
    LAST_SKIP_BITS(re, s, n);
345
66
    CLOSE_READER(re, s);
346
66
    av_assert2(tmp < UINT64_C(1) << n);
347
66
    return tmp;
348
66
}
lcevc_parser.c:get_bits
Line
Count
Source
338
472
{
339
472
    register unsigned int tmp;
340
472
    OPEN_READER(re, s);
341
472
    av_assert2(n>0 && n<=25);
342
472
    UPDATE_CACHE(re, s);
343
472
    tmp = SHOW_UBITS(re, s, n);
344
472
    LAST_SKIP_BITS(re, s, n);
345
472
    CLOSE_READER(re, s);
346
472
    av_assert2(tmp < UINT64_C(1) << n);
347
472
    return tmp;
348
472
}
Unexecuted instantiation: mlp_parser.c:get_bits
Unexecuted instantiation: mpeg4video_parser.c:get_bits
vc1.c:get_bits
Line
Count
Source
338
9.27M
{
339
9.27M
    register unsigned int tmp;
340
9.27M
    OPEN_READER(re, s);
341
9.27M
    av_assert2(n>0 && n<=25);
342
9.27M
    UPDATE_CACHE(re, s);
343
9.27M
    tmp = SHOW_UBITS(re, s, n);
344
9.27M
    LAST_SKIP_BITS(re, s, n);
345
9.27M
    CLOSE_READER(re, s);
346
9.27M
    av_assert2(tmp < UINT64_C(1) << n);
347
9.27M
    return tmp;
348
9.27M
}
Unexecuted instantiation: vc1data.c:get_bits
dca.c:get_bits
Line
Count
Source
338
4.87M
{
339
4.87M
    register unsigned int tmp;
340
4.87M
    OPEN_READER(re, s);
341
4.87M
    av_assert2(n>0 && n<=25);
342
4.87M
    UPDATE_CACHE(re, s);
343
4.87M
    tmp = SHOW_UBITS(re, s, n);
344
4.87M
    LAST_SKIP_BITS(re, s, n);
345
4.87M
    CLOSE_READER(re, s);
346
4.87M
    av_assert2(tmp < UINT64_C(1) << n);
347
4.87M
    return tmp;
348
4.87M
}
dca_exss.c:get_bits
Line
Count
Source
338
35.1M
{
339
35.1M
    register unsigned int tmp;
340
35.1M
    OPEN_READER(re, s);
341
35.1M
    av_assert2(n>0 && n<=25);
342
35.1M
    UPDATE_CACHE(re, s);
343
35.1M
    tmp = SHOW_UBITS(re, s, n);
344
35.1M
    LAST_SKIP_BITS(re, s, n);
345
35.1M
    CLOSE_READER(re, s);
346
35.1M
    av_assert2(tmp < UINT64_C(1) << n);
347
35.1M
    return tmp;
348
35.1M
}
dolby_e_parse.c:get_bits
Line
Count
Source
338
4.43M
{
339
4.43M
    register unsigned int tmp;
340
4.43M
    OPEN_READER(re, s);
341
4.43M
    av_assert2(n>0 && n<=25);
342
4.43M
    UPDATE_CACHE(re, s);
343
4.43M
    tmp = SHOW_UBITS(re, s, n);
344
4.43M
    LAST_SKIP_BITS(re, s, n);
345
4.43M
    CLOSE_READER(re, s);
346
4.43M
    av_assert2(tmp < UINT64_C(1) << n);
347
4.43M
    return tmp;
348
4.43M
}
Unexecuted instantiation: ffv1.c:get_bits
Unexecuted instantiation: ffv1_parse.c:get_bits
flac.c:get_bits
Line
Count
Source
338
90.7M
{
339
90.7M
    register unsigned int tmp;
340
90.7M
    OPEN_READER(re, s);
341
90.7M
    av_assert2(n>0 && n<=25);
342
90.7M
    UPDATE_CACHE(re, s);
343
90.7M
    tmp = SHOW_UBITS(re, s, n);
344
90.7M
    LAST_SKIP_BITS(re, s, n);
345
90.7M
    CLOSE_READER(re, s);
346
90.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
90.7M
    return tmp;
348
90.7M
}
h2645_sei.c:get_bits
Line
Count
Source
338
221M
{
339
221M
    register unsigned int tmp;
340
221M
    OPEN_READER(re, s);
341
221M
    av_assert2(n>0 && n<=25);
342
221M
    UPDATE_CACHE(re, s);
343
221M
    tmp = SHOW_UBITS(re, s, n);
344
221M
    LAST_SKIP_BITS(re, s, n);
345
221M
    CLOSE_READER(re, s);
346
221M
    av_assert2(tmp < UINT64_C(1) << n);
347
221M
    return tmp;
348
221M
}
Unexecuted instantiation: parse.c:get_bits
jpegxl_parse.c:get_bits
Line
Count
Source
338
25.6M
{
339
25.6M
    register unsigned int tmp;
340
25.6M
    OPEN_READER(re, s);
341
25.6M
    av_assert2(n>0 && n<=25);
342
25.6M
    UPDATE_CACHE(re, s);
343
25.6M
    tmp = SHOW_UBITS(re, s, n);
344
25.6M
    LAST_SKIP_BITS(re, s, n);
345
25.6M
    CLOSE_READER(re, s);
346
25.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
25.6M
    return tmp;
348
25.6M
}
aom_film_grain.c:get_bits
Line
Count
Source
338
7.65M
{
339
7.65M
    register unsigned int tmp;
340
7.65M
    OPEN_READER(re, s);
341
7.65M
    av_assert2(n>0 && n<=25);
342
7.65M
    UPDATE_CACHE(re, s);
343
7.65M
    tmp = SHOW_UBITS(re, s, n);
344
7.65M
    LAST_SKIP_BITS(re, s, n);
345
7.65M
    CLOSE_READER(re, s);
346
7.65M
    av_assert2(tmp < UINT64_C(1) << n);
347
7.65M
    return tmp;
348
7.65M
}
dynamic_hdr_vivid.c:get_bits
Line
Count
Source
338
1.75M
{
339
1.75M
    register unsigned int tmp;
340
1.75M
    OPEN_READER(re, s);
341
1.75M
    av_assert2(n>0 && n<=25);
342
1.75M
    UPDATE_CACHE(re, s);
343
1.75M
    tmp = SHOW_UBITS(re, s, n);
344
1.75M
    LAST_SKIP_BITS(re, s, n);
345
1.75M
    CLOSE_READER(re, s);
346
1.75M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.75M
    return tmp;
348
1.75M
}
hdr_dynamic_metadata.c:get_bits
Line
Count
Source
338
15.9M
{
339
15.9M
    register unsigned int tmp;
340
15.9M
    OPEN_READER(re, s);
341
15.9M
    av_assert2(n>0 && n<=25);
342
15.9M
    UPDATE_CACHE(re, s);
343
15.9M
    tmp = SHOW_UBITS(re, s, n);
344
15.9M
    LAST_SKIP_BITS(re, s, n);
345
15.9M
    CLOSE_READER(re, s);
346
15.9M
    av_assert2(tmp < UINT64_C(1) << n);
347
15.9M
    return tmp;
348
15.9M
}
av1dec.c:get_bits
Line
Count
Source
338
7.35M
{
339
7.35M
    register unsigned int tmp;
340
7.35M
    OPEN_READER(re, s);
341
7.35M
    av_assert2(n>0 && n<=25);
342
7.35M
    UPDATE_CACHE(re, s);
343
7.35M
    tmp = SHOW_UBITS(re, s, n);
344
7.35M
    LAST_SKIP_BITS(re, s, n);
345
7.35M
    CLOSE_READER(re, s);
346
7.35M
    av_assert2(tmp < UINT64_C(1) << n);
347
7.35M
    return tmp;
348
7.35M
}
Unexecuted instantiation: bit.c:get_bits
dtsdec.c:get_bits
Line
Count
Source
338
2.35M
{
339
2.35M
    register unsigned int tmp;
340
2.35M
    OPEN_READER(re, s);
341
2.35M
    av_assert2(n>0 && n<=25);
342
2.35M
    UPDATE_CACHE(re, s);
343
2.35M
    tmp = SHOW_UBITS(re, s, n);
344
2.35M
    LAST_SKIP_BITS(re, s, n);
345
2.35M
    CLOSE_READER(re, s);
346
2.35M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.35M
    return tmp;
348
2.35M
}
Unexecuted instantiation: dtshddec.c:get_bits
h264dec.c:get_bits
Line
Count
Source
338
5.36M
{
339
5.36M
    register unsigned int tmp;
340
5.36M
    OPEN_READER(re, s);
341
5.36M
    av_assert2(n>0 && n<=25);
342
5.36M
    UPDATE_CACHE(re, s);
343
5.36M
    tmp = SHOW_UBITS(re, s, n);
344
5.36M
    LAST_SKIP_BITS(re, s, n);
345
5.36M
    CLOSE_READER(re, s);
346
5.36M
    av_assert2(tmp < UINT64_C(1) << n);
347
5.36M
    return tmp;
348
5.36M
}
Unexecuted instantiation: hls_sample_encryption.c:get_bits
Unexecuted instantiation: isom.c:get_bits
Unexecuted instantiation: matroskadec.c:get_bits
mov.c:get_bits
Line
Count
Source
338
3.77M
{
339
3.77M
    register unsigned int tmp;
340
3.77M
    OPEN_READER(re, s);
341
3.77M
    av_assert2(n>0 && n<=25);
342
3.77M
    UPDATE_CACHE(re, s);
343
3.77M
    tmp = SHOW_UBITS(re, s, n);
344
3.77M
    LAST_SKIP_BITS(re, s, n);
345
3.77M
    CLOSE_READER(re, s);
346
3.77M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.77M
    return tmp;
348
3.77M
}
mpc8.c:get_bits
Line
Count
Source
338
19.8M
{
339
19.8M
    register unsigned int tmp;
340
19.8M
    OPEN_READER(re, s);
341
19.8M
    av_assert2(n>0 && n<=25);
342
19.8M
    UPDATE_CACHE(re, s);
343
19.8M
    tmp = SHOW_UBITS(re, s, n);
344
19.8M
    LAST_SKIP_BITS(re, s, n);
345
19.8M
    CLOSE_READER(re, s);
346
19.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.8M
    return tmp;
348
19.8M
}
Unexecuted instantiation: mpegts.c:get_bits
oggparsetheora.c:get_bits
Line
Count
Source
338
258k
{
339
258k
    register unsigned int tmp;
340
258k
    OPEN_READER(re, s);
341
258k
    av_assert2(n>0 && n<=25);
342
258k
    UPDATE_CACHE(re, s);
343
258k
    tmp = SHOW_UBITS(re, s, n);
344
258k
    LAST_SKIP_BITS(re, s, n);
345
258k
    CLOSE_READER(re, s);
346
258k
    av_assert2(tmp < UINT64_C(1) << n);
347
258k
    return tmp;
348
258k
}
Unexecuted instantiation: shortendec.c:get_bits
swfdec.c:get_bits
Line
Count
Source
338
17.4k
{
339
17.4k
    register unsigned int tmp;
340
17.4k
    OPEN_READER(re, s);
341
17.4k
    av_assert2(n>0 && n<=25);
342
17.4k
    UPDATE_CACHE(re, s);
343
17.4k
    tmp = SHOW_UBITS(re, s, n);
344
17.4k
    LAST_SKIP_BITS(re, s, n);
345
17.4k
    CLOSE_READER(re, s);
346
17.4k
    av_assert2(tmp < UINT64_C(1) << n);
347
17.4k
    return tmp;
348
17.4k
}
takdec.c:get_bits
Line
Count
Source
338
2.30k
{
339
2.30k
    register unsigned int tmp;
340
2.30k
    OPEN_READER(re, s);
341
2.30k
    av_assert2(n>0 && n<=25);
342
2.30k
    UPDATE_CACHE(re, s);
343
2.30k
    tmp = SHOW_UBITS(re, s, n);
344
2.30k
    LAST_SKIP_BITS(re, s, n);
345
2.30k
    CLOSE_READER(re, s);
346
2.30k
    av_assert2(tmp < UINT64_C(1) << n);
347
2.30k
    return tmp;
348
2.30k
}
iamf_parse.c:get_bits
Line
Count
Source
338
5.16M
{
339
5.16M
    register unsigned int tmp;
340
5.16M
    OPEN_READER(re, s);
341
5.16M
    av_assert2(n>0 && n<=25);
342
5.16M
    UPDATE_CACHE(re, s);
343
5.16M
    tmp = SHOW_UBITS(re, s, n);
344
5.16M
    LAST_SKIP_BITS(re, s, n);
345
5.16M
    CLOSE_READER(re, s);
346
5.16M
    av_assert2(tmp < UINT64_C(1) << n);
347
5.16M
    return tmp;
348
5.16M
}
Unexecuted instantiation: dirac.c:get_bits
atrac9dec.c:get_bits
Line
Count
Source
338
82.5M
{
339
82.5M
    register unsigned int tmp;
340
82.5M
    OPEN_READER(re, s);
341
82.5M
    av_assert2(n>0 && n<=25);
342
82.5M
    UPDATE_CACHE(re, s);
343
82.5M
    tmp = SHOW_UBITS(re, s, n);
344
82.5M
    LAST_SKIP_BITS(re, s, n);
345
82.5M
    CLOSE_READER(re, s);
346
82.5M
    av_assert2(tmp < UINT64_C(1) << n);
347
82.5M
    return tmp;
348
82.5M
}
Unexecuted instantiation: enc.c:get_bits
Unexecuted instantiation: enc_psy.c:get_bits
Unexecuted instantiation: pvq.c:get_bits
rc.c:get_bits
Line
Count
Source
338
19.8M
{
339
19.8M
    register unsigned int tmp;
340
19.8M
    OPEN_READER(re, s);
341
19.8M
    av_assert2(n>0 && n<=25);
342
19.8M
    UPDATE_CACHE(re, s);
343
19.8M
    tmp = SHOW_UBITS(re, s, n);
344
19.8M
    LAST_SKIP_BITS(re, s, n);
345
19.8M
    CLOSE_READER(re, s);
346
19.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.8M
    return tmp;
348
19.8M
}
Unexecuted instantiation: celt.c:get_bits
gsmdec.c:get_bits
Line
Count
Source
338
103M
{
339
103M
    register unsigned int tmp;
340
103M
    OPEN_READER(re, s);
341
103M
    av_assert2(n>0 && n<=25);
342
103M
    UPDATE_CACHE(re, s);
343
103M
    tmp = SHOW_UBITS(re, s, n);
344
103M
    LAST_SKIP_BITS(re, s, n);
345
103M
    CLOSE_READER(re, s);
346
103M
    av_assert2(tmp < UINT64_C(1) << n);
347
103M
    return tmp;
348
103M
}
msgsmdec.c:get_bits
Line
Count
Source
338
103M
{
339
103M
    register unsigned int tmp;
340
103M
    OPEN_READER(re, s);
341
103M
    av_assert2(n>0 && n<=25);
342
103M
    UPDATE_CACHE(re, s);
343
103M
    tmp = SHOW_UBITS(re, s, n);
344
103M
    LAST_SKIP_BITS(re, s, n);
345
103M
    CLOSE_READER(re, s);
346
103M
    av_assert2(tmp < UINT64_C(1) << n);
347
103M
    return tmp;
348
103M
}
imc.c:get_bits
Line
Count
Source
338
30.6M
{
339
30.6M
    register unsigned int tmp;
340
30.6M
    OPEN_READER(re, s);
341
30.6M
    av_assert2(n>0 && n<=25);
342
30.6M
    UPDATE_CACHE(re, s);
343
30.6M
    tmp = SHOW_UBITS(re, s, n);
344
30.6M
    LAST_SKIP_BITS(re, s, n);
345
30.6M
    CLOSE_READER(re, s);
346
30.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
30.6M
    return tmp;
348
30.6M
}
adpcm.c:get_bits
Line
Count
Source
338
73.7M
{
339
73.7M
    register unsigned int tmp;
340
73.7M
    OPEN_READER(re, s);
341
73.7M
    av_assert2(n>0 && n<=25);
342
73.7M
    UPDATE_CACHE(re, s);
343
73.7M
    tmp = SHOW_UBITS(re, s, n);
344
73.7M
    LAST_SKIP_BITS(re, s, n);
345
73.7M
    CLOSE_READER(re, s);
346
73.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
73.7M
    return tmp;
348
73.7M
}
Unexecuted instantiation: wmaenc.c:get_bits
wma.c:get_bits
Line
Count
Source
338
72.6k
{
339
72.6k
    register unsigned int tmp;
340
72.6k
    OPEN_READER(re, s);
341
72.6k
    av_assert2(n>0 && n<=25);
342
72.6k
    UPDATE_CACHE(re, s);
343
72.6k
    tmp = SHOW_UBITS(re, s, n);
344
72.6k
    LAST_SKIP_BITS(re, s, n);
345
72.6k
    CLOSE_READER(re, s);
346
72.6k
    av_assert2(tmp < UINT64_C(1) << n);
347
72.6k
    return tmp;
348
72.6k
}
Unexecuted instantiation: cfhd.c:get_bits
wavarc.c:get_bits
Line
Count
Source
338
13.5M
{
339
13.5M
    register unsigned int tmp;
340
13.5M
    OPEN_READER(re, s);
341
13.5M
    av_assert2(n>0 && n<=25);
342
13.5M
    UPDATE_CACHE(re, s);
343
13.5M
    tmp = SHOW_UBITS(re, s, n);
344
13.5M
    LAST_SKIP_BITS(re, s, n);
345
13.5M
    CLOSE_READER(re, s);
346
13.5M
    av_assert2(tmp < UINT64_C(1) << n);
347
13.5M
    return tmp;
348
13.5M
}
escape130.c:get_bits
Line
Count
Source
338
25.3M
{
339
25.3M
    register unsigned int tmp;
340
25.3M
    OPEN_READER(re, s);
341
25.3M
    av_assert2(n>0 && n<=25);
342
25.3M
    UPDATE_CACHE(re, s);
343
25.3M
    tmp = SHOW_UBITS(re, s, n);
344
25.3M
    LAST_SKIP_BITS(re, s, n);
345
25.3M
    CLOSE_READER(re, s);
346
25.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
25.3M
    return tmp;
348
25.3M
}
asvdec.c:get_bits
Line
Count
Source
338
1.29M
{
339
1.29M
    register unsigned int tmp;
340
1.29M
    OPEN_READER(re, s);
341
1.29M
    av_assert2(n>0 && n<=25);
342
1.29M
    UPDATE_CACHE(re, s);
343
1.29M
    tmp = SHOW_UBITS(re, s, n);
344
1.29M
    LAST_SKIP_BITS(re, s, n);
345
1.29M
    CLOSE_READER(re, s);
346
1.29M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.29M
    return tmp;
348
1.29M
}
diracdec.c:get_bits
Line
Count
Source
338
4.24M
{
339
4.24M
    register unsigned int tmp;
340
4.24M
    OPEN_READER(re, s);
341
4.24M
    av_assert2(n>0 && n<=25);
342
4.24M
    UPDATE_CACHE(re, s);
343
4.24M
    tmp = SHOW_UBITS(re, s, n);
344
4.24M
    LAST_SKIP_BITS(re, s, n);
345
4.24M
    CLOSE_READER(re, s);
346
4.24M
    av_assert2(tmp < UINT64_C(1) << n);
347
4.24M
    return tmp;
348
4.24M
}
Unexecuted instantiation: dirac_arith.c:get_bits
wmadec.c:get_bits
Line
Count
Source
338
5.82M
{
339
5.82M
    register unsigned int tmp;
340
5.82M
    OPEN_READER(re, s);
341
5.82M
    av_assert2(n>0 && n<=25);
342
5.82M
    UPDATE_CACHE(re, s);
343
5.82M
    tmp = SHOW_UBITS(re, s, n);
344
5.82M
    LAST_SKIP_BITS(re, s, n);
345
5.82M
    CLOSE_READER(re, s);
346
5.82M
    av_assert2(tmp < UINT64_C(1) << n);
347
5.82M
    return tmp;
348
5.82M
}
Unexecuted instantiation: aacenc.c:get_bits
imm4.c:get_bits
Line
Count
Source
338
3.21M
{
339
3.21M
    register unsigned int tmp;
340
3.21M
    OPEN_READER(re, s);
341
3.21M
    av_assert2(n>0 && n<=25);
342
3.21M
    UPDATE_CACHE(re, s);
343
3.21M
    tmp = SHOW_UBITS(re, s, n);
344
3.21M
    LAST_SKIP_BITS(re, s, n);
345
3.21M
    CLOSE_READER(re, s);
346
3.21M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.21M
    return tmp;
348
3.21M
}
exr.c:get_bits
Line
Count
Source
338
665k
{
339
665k
    register unsigned int tmp;
340
665k
    OPEN_READER(re, s);
341
665k
    av_assert2(n>0 && n<=25);
342
665k
    UPDATE_CACHE(re, s);
343
665k
    tmp = SHOW_UBITS(re, s, n);
344
665k
    LAST_SKIP_BITS(re, s, n);
345
665k
    CLOSE_READER(re, s);
346
665k
    av_assert2(tmp < UINT64_C(1) << n);
347
665k
    return tmp;
348
665k
}
aacdec.c:get_bits
Line
Count
Source
338
43.4M
{
339
43.4M
    register unsigned int tmp;
340
43.4M
    OPEN_READER(re, s);
341
43.4M
    av_assert2(n>0 && n<=25);
342
43.4M
    UPDATE_CACHE(re, s);
343
43.4M
    tmp = SHOW_UBITS(re, s, n);
344
43.4M
    LAST_SKIP_BITS(re, s, n);
345
43.4M
    CLOSE_READER(re, s);
346
43.4M
    av_assert2(tmp < UINT64_C(1) << n);
347
43.4M
    return tmp;
348
43.4M
}
aacdec_fixed.c:get_bits
Line
Count
Source
338
63.8k
{
339
63.8k
    register unsigned int tmp;
340
63.8k
    OPEN_READER(re, s);
341
63.8k
    av_assert2(n>0 && n<=25);
342
63.8k
    UPDATE_CACHE(re, s);
343
63.8k
    tmp = SHOW_UBITS(re, s, n);
344
63.8k
    LAST_SKIP_BITS(re, s, n);
345
63.8k
    CLOSE_READER(re, s);
346
63.8k
    av_assert2(tmp < UINT64_C(1) << n);
347
63.8k
    return tmp;
348
63.8k
}
aacdec_float.c:get_bits
Line
Count
Source
338
262k
{
339
262k
    register unsigned int tmp;
340
262k
    OPEN_READER(re, s);
341
262k
    av_assert2(n>0 && n<=25);
342
262k
    UPDATE_CACHE(re, s);
343
262k
    tmp = SHOW_UBITS(re, s, n);
344
262k
    LAST_SKIP_BITS(re, s, n);
345
262k
    CLOSE_READER(re, s);
346
262k
    av_assert2(tmp < UINT64_C(1) << n);
347
262k
    return tmp;
348
262k
}
Unexecuted instantiation: aacdec_tab.c:get_bits
aacdec_usac.c:get_bits
Line
Count
Source
338
134M
{
339
134M
    register unsigned int tmp;
340
134M
    OPEN_READER(re, s);
341
134M
    av_assert2(n>0 && n<=25);
342
134M
    UPDATE_CACHE(re, s);
343
134M
    tmp = SHOW_UBITS(re, s, n);
344
134M
    LAST_SKIP_BITS(re, s, n);
345
134M
    CLOSE_READER(re, s);
346
134M
    av_assert2(tmp < UINT64_C(1) << n);
347
134M
    return tmp;
348
134M
}
aacdec_usac_mps212.c:get_bits
Line
Count
Source
338
1.77M
{
339
1.77M
    register unsigned int tmp;
340
1.77M
    OPEN_READER(re, s);
341
1.77M
    av_assert2(n>0 && n<=25);
342
1.77M
    UPDATE_CACHE(re, s);
343
1.77M
    tmp = SHOW_UBITS(re, s, n);
344
1.77M
    LAST_SKIP_BITS(re, s, n);
345
1.77M
    CLOSE_READER(re, s);
346
1.77M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.77M
    return tmp;
348
1.77M
}
aacps_common.c:get_bits
Line
Count
Source
338
3.76M
{
339
3.76M
    register unsigned int tmp;
340
3.76M
    OPEN_READER(re, s);
341
3.76M
    av_assert2(n>0 && n<=25);
342
3.76M
    UPDATE_CACHE(re, s);
343
3.76M
    tmp = SHOW_UBITS(re, s, n);
344
3.76M
    LAST_SKIP_BITS(re, s, n);
345
3.76M
    CLOSE_READER(re, s);
346
3.76M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.76M
    return tmp;
348
3.76M
}
aacsbr.c:get_bits
Line
Count
Source
338
15.3M
{
339
15.3M
    register unsigned int tmp;
340
15.3M
    OPEN_READER(re, s);
341
15.3M
    av_assert2(n>0 && n<=25);
342
15.3M
    UPDATE_CACHE(re, s);
343
15.3M
    tmp = SHOW_UBITS(re, s, n);
344
15.3M
    LAST_SKIP_BITS(re, s, n);
345
15.3M
    CLOSE_READER(re, s);
346
15.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
15.3M
    return tmp;
348
15.3M
}
aacsbr_fixed.c:get_bits
Line
Count
Source
338
2.62M
{
339
2.62M
    register unsigned int tmp;
340
2.62M
    OPEN_READER(re, s);
341
2.62M
    av_assert2(n>0 && n<=25);
342
2.62M
    UPDATE_CACHE(re, s);
343
2.62M
    tmp = SHOW_UBITS(re, s, n);
344
2.62M
    LAST_SKIP_BITS(re, s, n);
345
2.62M
    CLOSE_READER(re, s);
346
2.62M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.62M
    return tmp;
348
2.62M
}
aacdec_ac.c:get_bits
Line
Count
Source
338
770k
{
339
770k
    register unsigned int tmp;
340
770k
    OPEN_READER(re, s);
341
770k
    av_assert2(n>0 && n<=25);
342
770k
    UPDATE_CACHE(re, s);
343
770k
    tmp = SHOW_UBITS(re, s, n);
344
770k
    LAST_SKIP_BITS(re, s, n);
345
770k
    CLOSE_READER(re, s);
346
770k
    av_assert2(tmp < UINT64_C(1) << n);
347
770k
    return tmp;
348
770k
}
aacdec_lpd.c:get_bits
Line
Count
Source
338
1.87M
{
339
1.87M
    register unsigned int tmp;
340
1.87M
    OPEN_READER(re, s);
341
1.87M
    av_assert2(n>0 && n<=25);
342
1.87M
    UPDATE_CACHE(re, s);
343
1.87M
    tmp = SHOW_UBITS(re, s, n);
344
1.87M
    LAST_SKIP_BITS(re, s, n);
345
1.87M
    CLOSE_READER(re, s);
346
1.87M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.87M
    return tmp;
348
1.87M
}
Unexecuted instantiation: aacps_fixed.c:get_bits
Unexecuted instantiation: aacps_float.c:get_bits
Unexecuted instantiation: mjpegdec.c:get_bits
Unexecuted instantiation: mjpegdec_common.c:get_bits
jpeglsdec.c:get_bits
Line
Count
Source
338
1.75M
{
339
1.75M
    register unsigned int tmp;
340
1.75M
    OPEN_READER(re, s);
341
1.75M
    av_assert2(n>0 && n<=25);
342
1.75M
    UPDATE_CACHE(re, s);
343
1.75M
    tmp = SHOW_UBITS(re, s, n);
344
1.75M
    LAST_SKIP_BITS(re, s, n);
345
1.75M
    CLOSE_READER(re, s);
346
1.75M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.75M
    return tmp;
348
1.75M
}
jvdec.c:get_bits
Line
Count
Source
338
24.7M
{
339
24.7M
    register unsigned int tmp;
340
24.7M
    OPEN_READER(re, s);
341
24.7M
    av_assert2(n>0 && n<=25);
342
24.7M
    UPDATE_CACHE(re, s);
343
24.7M
    tmp = SHOW_UBITS(re, s, n);
344
24.7M
    LAST_SKIP_BITS(re, s, n);
345
24.7M
    CLOSE_READER(re, s);
346
24.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
24.7M
    return tmp;
348
24.7M
}
Unexecuted instantiation: rdt.c:get_bits
Unexecuted instantiation: rtpdec_h261.c:get_bits
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bits
Unexecuted instantiation: rtpdec_latm.c:get_bits
Unexecuted instantiation: rtpdec_mpeg4.c:get_bits
Unexecuted instantiation: rtpdec_qt.c:get_bits
h264_cavlc.c:get_bits
Line
Count
Source
338
7.77M
{
339
7.77M
    register unsigned int tmp;
340
7.77M
    OPEN_READER(re, s);
341
7.77M
    av_assert2(n>0 && n<=25);
342
7.77M
    UPDATE_CACHE(re, s);
343
7.77M
    tmp = SHOW_UBITS(re, s, n);
344
7.77M
    LAST_SKIP_BITS(re, s, n);
345
7.77M
    CLOSE_READER(re, s);
346
7.77M
    av_assert2(tmp < UINT64_C(1) << n);
347
7.77M
    return tmp;
348
7.77M
}
Unexecuted instantiation: h264_direct.c:get_bits
h264_mb.c:get_bits
Line
Count
Source
338
1.28M
{
339
1.28M
    register unsigned int tmp;
340
1.28M
    OPEN_READER(re, s);
341
1.28M
    av_assert2(n>0 && n<=25);
342
1.28M
    UPDATE_CACHE(re, s);
343
1.28M
    tmp = SHOW_UBITS(re, s, n);
344
1.28M
    LAST_SKIP_BITS(re, s, n);
345
1.28M
    CLOSE_READER(re, s);
346
1.28M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.28M
    return tmp;
348
1.28M
}
Unexecuted instantiation: h264_picture.c:get_bits
h264_refs.c:get_bits
Line
Count
Source
338
2.99M
{
339
2.99M
    register unsigned int tmp;
340
2.99M
    OPEN_READER(re, s);
341
2.99M
    av_assert2(n>0 && n<=25);
342
2.99M
    UPDATE_CACHE(re, s);
343
2.99M
    tmp = SHOW_UBITS(re, s, n);
344
2.99M
    LAST_SKIP_BITS(re, s, n);
345
2.99M
    CLOSE_READER(re, s);
346
2.99M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.99M
    return tmp;
348
2.99M
}
h264_slice.c:get_bits
Line
Count
Source
338
24.6M
{
339
24.6M
    register unsigned int tmp;
340
24.6M
    OPEN_READER(re, s);
341
24.6M
    av_assert2(n>0 && n<=25);
342
24.6M
    UPDATE_CACHE(re, s);
343
24.6M
    tmp = SHOW_UBITS(re, s, n);
344
24.6M
    LAST_SKIP_BITS(re, s, n);
345
24.6M
    CLOSE_READER(re, s);
346
24.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
24.6M
    return tmp;
348
24.6M
}
Unexecuted instantiation: h264_cabac.c:get_bits
Unexecuted instantiation: h264_loopfilter.c:get_bits
alsdec.c:get_bits
Line
Count
Source
338
122M
{
339
122M
    register unsigned int tmp;
340
122M
    OPEN_READER(re, s);
341
122M
    av_assert2(n>0 && n<=25);
342
122M
    UPDATE_CACHE(re, s);
343
122M
    tmp = SHOW_UBITS(re, s, n);
344
122M
    LAST_SKIP_BITS(re, s, n);
345
122M
    CLOSE_READER(re, s);
346
122M
    av_assert2(tmp < UINT64_C(1) << n);
347
122M
    return tmp;
348
122M
}
bgmc.c:get_bits
Line
Count
Source
338
27.5k
{
339
27.5k
    register unsigned int tmp;
340
27.5k
    OPEN_READER(re, s);
341
27.5k
    av_assert2(n>0 && n<=25);
342
27.5k
    UPDATE_CACHE(re, s);
343
27.5k
    tmp = SHOW_UBITS(re, s, n);
344
27.5k
    LAST_SKIP_BITS(re, s, n);
345
27.5k
    CLOSE_READER(re, s);
346
27.5k
    av_assert2(tmp < UINT64_C(1) << n);
347
27.5k
    return tmp;
348
27.5k
}
Unexecuted instantiation: mlz.c:get_bits
bonk.c:get_bits
Line
Count
Source
338
1.59M
{
339
1.59M
    register unsigned int tmp;
340
1.59M
    OPEN_READER(re, s);
341
1.59M
    av_assert2(n>0 && n<=25);
342
1.59M
    UPDATE_CACHE(re, s);
343
1.59M
    tmp = SHOW_UBITS(re, s, n);
344
1.59M
    LAST_SKIP_BITS(re, s, n);
345
1.59M
    CLOSE_READER(re, s);
346
1.59M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.59M
    return tmp;
348
1.59M
}
Unexecuted instantiation: mxpegdec.c:get_bits
rv30.c:get_bits
Line
Count
Source
338
1.28M
{
339
1.28M
    register unsigned int tmp;
340
1.28M
    OPEN_READER(re, s);
341
1.28M
    av_assert2(n>0 && n<=25);
342
1.28M
    UPDATE_CACHE(re, s);
343
1.28M
    tmp = SHOW_UBITS(re, s, n);
344
1.28M
    LAST_SKIP_BITS(re, s, n);
345
1.28M
    CLOSE_READER(re, s);
346
1.28M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.28M
    return tmp;
348
1.28M
}
rv34.c:get_bits
Line
Count
Source
338
6.48M
{
339
6.48M
    register unsigned int tmp;
340
6.48M
    OPEN_READER(re, s);
341
6.48M
    av_assert2(n>0 && n<=25);
342
6.48M
    UPDATE_CACHE(re, s);
343
6.48M
    tmp = SHOW_UBITS(re, s, n);
344
6.48M
    LAST_SKIP_BITS(re, s, n);
345
6.48M
    CLOSE_READER(re, s);
346
6.48M
    av_assert2(tmp < UINT64_C(1) << n);
347
6.48M
    return tmp;
348
6.48M
}
indeo3.c:get_bits
Line
Count
Source
338
107k
{
339
107k
    register unsigned int tmp;
340
107k
    OPEN_READER(re, s);
341
107k
    av_assert2(n>0 && n<=25);
342
107k
    UPDATE_CACHE(re, s);
343
107k
    tmp = SHOW_UBITS(re, s, n);
344
107k
    LAST_SKIP_BITS(re, s, n);
345
107k
    CLOSE_READER(re, s);
346
107k
    av_assert2(tmp < UINT64_C(1) << n);
347
107k
    return tmp;
348
107k
}
eamad.c:get_bits
Line
Count
Source
338
2.07M
{
339
2.07M
    register unsigned int tmp;
340
2.07M
    OPEN_READER(re, s);
341
2.07M
    av_assert2(n>0 && n<=25);
342
2.07M
    UPDATE_CACHE(re, s);
343
2.07M
    tmp = SHOW_UBITS(re, s, n);
344
2.07M
    LAST_SKIP_BITS(re, s, n);
345
2.07M
    CLOSE_READER(re, s);
346
2.07M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.07M
    return tmp;
348
2.07M
}
Unexecuted instantiation: mpeg12.c:get_bits
g726.c:get_bits
Line
Count
Source
338
50.5M
{
339
50.5M
    register unsigned int tmp;
340
50.5M
    OPEN_READER(re, s);
341
50.5M
    av_assert2(n>0 && n<=25);
342
50.5M
    UPDATE_CACHE(re, s);
343
50.5M
    tmp = SHOW_UBITS(re, s, n);
344
50.5M
    LAST_SKIP_BITS(re, s, n);
345
50.5M
    CLOSE_READER(re, s);
346
50.5M
    av_assert2(tmp < UINT64_C(1) << n);
347
50.5M
    return tmp;
348
50.5M
}
vc1dec.c:get_bits
Line
Count
Source
338
3.34M
{
339
3.34M
    register unsigned int tmp;
340
3.34M
    OPEN_READER(re, s);
341
3.34M
    av_assert2(n>0 && n<=25);
342
3.34M
    UPDATE_CACHE(re, s);
343
3.34M
    tmp = SHOW_UBITS(re, s, n);
344
3.34M
    LAST_SKIP_BITS(re, s, n);
345
3.34M
    CLOSE_READER(re, s);
346
3.34M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.34M
    return tmp;
348
3.34M
}
vc1_block.c:get_bits
Line
Count
Source
338
44.6M
{
339
44.6M
    register unsigned int tmp;
340
44.6M
    OPEN_READER(re, s);
341
44.6M
    av_assert2(n>0 && n<=25);
342
44.6M
    UPDATE_CACHE(re, s);
343
44.6M
    tmp = SHOW_UBITS(re, s, n);
344
44.6M
    LAST_SKIP_BITS(re, s, n);
345
44.6M
    CLOSE_READER(re, s);
346
44.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
44.6M
    return tmp;
348
44.6M
}
Unexecuted instantiation: vc1_loopfilter.c:get_bits
Unexecuted instantiation: vc1_mc.c:get_bits
Unexecuted instantiation: vc1_pred.c:get_bits
mpegaudiodec_float.c:get_bits
Line
Count
Source
338
240M
{
339
240M
    register unsigned int tmp;
340
240M
    OPEN_READER(re, s);
341
240M
    av_assert2(n>0 && n<=25);
342
240M
    UPDATE_CACHE(re, s);
343
240M
    tmp = SHOW_UBITS(re, s, n);
344
240M
    LAST_SKIP_BITS(re, s, n);
345
240M
    CLOSE_READER(re, s);
346
240M
    av_assert2(tmp < UINT64_C(1) << n);
347
240M
    return tmp;
348
240M
}
huffyuvdec.c:get_bits
Line
Count
Source
338
3.91M
{
339
3.91M
    register unsigned int tmp;
340
3.91M
    OPEN_READER(re, s);
341
3.91M
    av_assert2(n>0 && n<=25);
342
3.91M
    UPDATE_CACHE(re, s);
343
3.91M
    tmp = SHOW_UBITS(re, s, n);
344
3.91M
    LAST_SKIP_BITS(re, s, n);
345
3.91M
    CLOSE_READER(re, s);
346
3.91M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.91M
    return tmp;
348
3.91M
}
speexdec.c:get_bits
Line
Count
Source
338
4.93M
{
339
4.93M
    register unsigned int tmp;
340
4.93M
    OPEN_READER(re, s);
341
4.93M
    av_assert2(n>0 && n<=25);
342
4.93M
    UPDATE_CACHE(re, s);
343
4.93M
    tmp = SHOW_UBITS(re, s, n);
344
4.93M
    LAST_SKIP_BITS(re, s, n);
345
4.93M
    CLOSE_READER(re, s);
346
4.93M
    av_assert2(tmp < UINT64_C(1) << n);
347
4.93M
    return tmp;
348
4.93M
}
atrac3plusdec.c:get_bits
Line
Count
Source
338
2.12M
{
339
2.12M
    register unsigned int tmp;
340
2.12M
    OPEN_READER(re, s);
341
2.12M
    av_assert2(n>0 && n<=25);
342
2.12M
    UPDATE_CACHE(re, s);
343
2.12M
    tmp = SHOW_UBITS(re, s, n);
344
2.12M
    LAST_SKIP_BITS(re, s, n);
345
2.12M
    CLOSE_READER(re, s);
346
2.12M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.12M
    return tmp;
348
2.12M
}
Unexecuted instantiation: atrac3plusdsp.c:get_bits
atrac3plus.c:get_bits
Line
Count
Source
338
5.42M
{
339
5.42M
    register unsigned int tmp;
340
5.42M
    OPEN_READER(re, s);
341
5.42M
    av_assert2(n>0 && n<=25);
342
5.42M
    UPDATE_CACHE(re, s);
343
5.42M
    tmp = SHOW_UBITS(re, s, n);
344
5.42M
    LAST_SKIP_BITS(re, s, n);
345
5.42M
    CLOSE_READER(re, s);
346
5.42M
    av_assert2(tmp < UINT64_C(1) << n);
347
5.42M
    return tmp;
348
5.42M
}
mss4.c:get_bits
Line
Count
Source
338
53.7M
{
339
53.7M
    register unsigned int tmp;
340
53.7M
    OPEN_READER(re, s);
341
53.7M
    av_assert2(n>0 && n<=25);
342
53.7M
    UPDATE_CACHE(re, s);
343
53.7M
    tmp = SHOW_UBITS(re, s, n);
344
53.7M
    LAST_SKIP_BITS(re, s, n);
345
53.7M
    CLOSE_READER(re, s);
346
53.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
53.7M
    return tmp;
348
53.7M
}
tiff.c:get_bits
Line
Count
Source
338
2.28M
{
339
2.28M
    register unsigned int tmp;
340
2.28M
    OPEN_READER(re, s);
341
2.28M
    av_assert2(n>0 && n<=25);
342
2.28M
    UPDATE_CACHE(re, s);
343
2.28M
    tmp = SHOW_UBITS(re, s, n);
344
2.28M
    LAST_SKIP_BITS(re, s, n);
345
2.28M
    CLOSE_READER(re, s);
346
2.28M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.28M
    return tmp;
348
2.28M
}
faxcompr.c:get_bits
Line
Count
Source
338
104k
{
339
104k
    register unsigned int tmp;
340
104k
    OPEN_READER(re, s);
341
104k
    av_assert2(n>0 && n<=25);
342
104k
    UPDATE_CACHE(re, s);
343
104k
    tmp = SHOW_UBITS(re, s, n);
344
104k
    LAST_SKIP_BITS(re, s, n);
345
104k
    CLOSE_READER(re, s);
346
104k
    av_assert2(tmp < UINT64_C(1) << n);
347
104k
    return tmp;
348
104k
}
ac3dec_float.c:get_bits
Line
Count
Source
338
36.5M
{
339
36.5M
    register unsigned int tmp;
340
36.5M
    OPEN_READER(re, s);
341
36.5M
    av_assert2(n>0 && n<=25);
342
36.5M
    UPDATE_CACHE(re, s);
343
36.5M
    tmp = SHOW_UBITS(re, s, n);
344
36.5M
    LAST_SKIP_BITS(re, s, n);
345
36.5M
    CLOSE_READER(re, s);
346
36.5M
    av_assert2(tmp < UINT64_C(1) << n);
347
36.5M
    return tmp;
348
36.5M
}
on2avc.c:get_bits
Line
Count
Source
338
29.1M
{
339
29.1M
    register unsigned int tmp;
340
29.1M
    OPEN_READER(re, s);
341
29.1M
    av_assert2(n>0 && n<=25);
342
29.1M
    UPDATE_CACHE(re, s);
343
29.1M
    tmp = SHOW_UBITS(re, s, n);
344
29.1M
    LAST_SKIP_BITS(re, s, n);
345
29.1M
    CLOSE_READER(re, s);
346
29.1M
    av_assert2(tmp < UINT64_C(1) << n);
347
29.1M
    return tmp;
348
29.1M
}
smacker.c:get_bits
Line
Count
Source
338
502k
{
339
502k
    register unsigned int tmp;
340
502k
    OPEN_READER(re, s);
341
502k
    av_assert2(n>0 && n<=25);
342
502k
    UPDATE_CACHE(re, s);
343
502k
    tmp = SHOW_UBITS(re, s, n);
344
502k
    LAST_SKIP_BITS(re, s, n);
345
502k
    CLOSE_READER(re, s);
346
502k
    av_assert2(tmp < UINT64_C(1) << n);
347
502k
    return tmp;
348
502k
}
dvbsubdec.c:get_bits
Line
Count
Source
338
1.94M
{
339
1.94M
    register unsigned int tmp;
340
1.94M
    OPEN_READER(re, s);
341
1.94M
    av_assert2(n>0 && n<=25);
342
1.94M
    UPDATE_CACHE(re, s);
343
1.94M
    tmp = SHOW_UBITS(re, s, n);
344
1.94M
    LAST_SKIP_BITS(re, s, n);
345
1.94M
    CLOSE_READER(re, s);
346
1.94M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.94M
    return tmp;
348
1.94M
}
mss1.c:get_bits
Line
Count
Source
338
330k
{
339
330k
    register unsigned int tmp;
340
330k
    OPEN_READER(re, s);
341
330k
    av_assert2(n>0 && n<=25);
342
330k
    UPDATE_CACHE(re, s);
343
330k
    tmp = SHOW_UBITS(re, s, n);
344
330k
    LAST_SKIP_BITS(re, s, n);
345
330k
    CLOSE_READER(re, s);
346
330k
    av_assert2(tmp < UINT64_C(1) << n);
347
330k
    return tmp;
348
330k
}
Unexecuted instantiation: mss12.c:get_bits
mss2.c:get_bits
Line
Count
Source
338
238k
{
339
238k
    register unsigned int tmp;
340
238k
    OPEN_READER(re, s);
341
238k
    av_assert2(n>0 && n<=25);
342
238k
    UPDATE_CACHE(re, s);
343
238k
    tmp = SHOW_UBITS(re, s, n);
344
238k
    LAST_SKIP_BITS(re, s, n);
345
238k
    CLOSE_READER(re, s);
346
238k
    av_assert2(tmp < UINT64_C(1) << n);
347
238k
    return tmp;
348
238k
}
mdec.c:get_bits
Line
Count
Source
338
256k
{
339
256k
    register unsigned int tmp;
340
256k
    OPEN_READER(re, s);
341
256k
    av_assert2(n>0 && n<=25);
342
256k
    UPDATE_CACHE(re, s);
343
256k
    tmp = SHOW_UBITS(re, s, n);
344
256k
    LAST_SKIP_BITS(re, s, n);
345
256k
    CLOSE_READER(re, s);
346
256k
    av_assert2(tmp < UINT64_C(1) << n);
347
256k
    return tmp;
348
256k
}
osq.c:get_bits
Line
Count
Source
338
4.35M
{
339
4.35M
    register unsigned int tmp;
340
4.35M
    OPEN_READER(re, s);
341
4.35M
    av_assert2(n>0 && n<=25);
342
4.35M
    UPDATE_CACHE(re, s);
343
4.35M
    tmp = SHOW_UBITS(re, s, n);
344
4.35M
    LAST_SKIP_BITS(re, s, n);
345
4.35M
    CLOSE_READER(re, s);
346
4.35M
    av_assert2(tmp < UINT64_C(1) << n);
347
4.35M
    return tmp;
348
4.35M
}
vp6.c:get_bits
Line
Count
Source
338
8.32M
{
339
8.32M
    register unsigned int tmp;
340
8.32M
    OPEN_READER(re, s);
341
8.32M
    av_assert2(n>0 && n<=25);
342
8.32M
    UPDATE_CACHE(re, s);
343
8.32M
    tmp = SHOW_UBITS(re, s, n);
344
8.32M
    LAST_SKIP_BITS(re, s, n);
345
8.32M
    CLOSE_READER(re, s);
346
8.32M
    av_assert2(tmp < UINT64_C(1) << n);
347
8.32M
    return tmp;
348
8.32M
}
Unexecuted instantiation: vp56.c:get_bits
Unexecuted instantiation: vp56data.c:get_bits
Unexecuted instantiation: loco.c:get_bits
Unexecuted instantiation: vp5.c:get_bits
ra144dec.c:get_bits
Line
Count
Source
338
13.0M
{
339
13.0M
    register unsigned int tmp;
340
13.0M
    OPEN_READER(re, s);
341
13.0M
    av_assert2(n>0 && n<=25);
342
13.0M
    UPDATE_CACHE(re, s);
343
13.0M
    tmp = SHOW_UBITS(re, s, n);
344
13.0M
    LAST_SKIP_BITS(re, s, n);
345
13.0M
    CLOSE_READER(re, s);
346
13.0M
    av_assert2(tmp < UINT64_C(1) << n);
347
13.0M
    return tmp;
348
13.0M
}
indeo5.c:get_bits
Line
Count
Source
338
8.79M
{
339
8.79M
    register unsigned int tmp;
340
8.79M
    OPEN_READER(re, s);
341
8.79M
    av_assert2(n>0 && n<=25);
342
8.79M
    UPDATE_CACHE(re, s);
343
8.79M
    tmp = SHOW_UBITS(re, s, n);
344
8.79M
    LAST_SKIP_BITS(re, s, n);
345
8.79M
    CLOSE_READER(re, s);
346
8.79M
    av_assert2(tmp < UINT64_C(1) << n);
347
8.79M
    return tmp;
348
8.79M
}
ivi.c:get_bits
Line
Count
Source
338
3.50M
{
339
3.50M
    register unsigned int tmp;
340
3.50M
    OPEN_READER(re, s);
341
3.50M
    av_assert2(n>0 && n<=25);
342
3.50M
    UPDATE_CACHE(re, s);
343
3.50M
    tmp = SHOW_UBITS(re, s, n);
344
3.50M
    LAST_SKIP_BITS(re, s, n);
345
3.50M
    CLOSE_READER(re, s);
346
3.50M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.50M
    return tmp;
348
3.50M
}
Unexecuted instantiation: ivi_dsp.c:get_bits
apac.c:get_bits
Line
Count
Source
338
7.59M
{
339
7.59M
    register unsigned int tmp;
340
7.59M
    OPEN_READER(re, s);
341
7.59M
    av_assert2(n>0 && n<=25);
342
7.59M
    UPDATE_CACHE(re, s);
343
7.59M
    tmp = SHOW_UBITS(re, s, n);
344
7.59M
    LAST_SKIP_BITS(re, s, n);
345
7.59M
    CLOSE_READER(re, s);
346
7.59M
    av_assert2(tmp < UINT64_C(1) << n);
347
7.59M
    return tmp;
348
7.59M
}
clearvideo.c:get_bits
Line
Count
Source
338
66.0k
{
339
66.0k
    register unsigned int tmp;
340
66.0k
    OPEN_READER(re, s);
341
66.0k
    av_assert2(n>0 && n<=25);
342
66.0k
    UPDATE_CACHE(re, s);
343
66.0k
    tmp = SHOW_UBITS(re, s, n);
344
66.0k
    LAST_SKIP_BITS(re, s, n);
345
66.0k
    CLOSE_READER(re, s);
346
66.0k
    av_assert2(tmp < UINT64_C(1) << n);
347
66.0k
    return tmp;
348
66.0k
}
dxtory.c:get_bits
Line
Count
Source
338
48.2M
{
339
48.2M
    register unsigned int tmp;
340
48.2M
    OPEN_READER(re, s);
341
48.2M
    av_assert2(n>0 && n<=25);
342
48.2M
    UPDATE_CACHE(re, s);
343
48.2M
    tmp = SHOW_UBITS(re, s, n);
344
48.2M
    LAST_SKIP_BITS(re, s, n);
345
48.2M
    CLOSE_READER(re, s);
346
48.2M
    av_assert2(tmp < UINT64_C(1) << n);
347
48.2M
    return tmp;
348
48.2M
}
mpegaudiodec_fixed.c:get_bits
Line
Count
Source
338
214M
{
339
214M
    register unsigned int tmp;
340
214M
    OPEN_READER(re, s);
341
214M
    av_assert2(n>0 && n<=25);
342
214M
    UPDATE_CACHE(re, s);
343
214M
    tmp = SHOW_UBITS(re, s, n);
344
214M
    LAST_SKIP_BITS(re, s, n);
345
214M
    CLOSE_READER(re, s);
346
214M
    av_assert2(tmp < UINT64_C(1) << n);
347
214M
    return tmp;
348
214M
}
ralf.c:get_bits
Line
Count
Source
338
307M
{
339
307M
    register unsigned int tmp;
340
307M
    OPEN_READER(re, s);
341
307M
    av_assert2(n>0 && n<=25);
342
307M
    UPDATE_CACHE(re, s);
343
307M
    tmp = SHOW_UBITS(re, s, n);
344
307M
    LAST_SKIP_BITS(re, s, n);
345
307M
    CLOSE_READER(re, s);
346
307M
    av_assert2(tmp < UINT64_C(1) << n);
347
307M
    return tmp;
348
307M
}
pixlet.c:get_bits
Line
Count
Source
338
147k
{
339
147k
    register unsigned int tmp;
340
147k
    OPEN_READER(re, s);
341
147k
    av_assert2(n>0 && n<=25);
342
147k
    UPDATE_CACHE(re, s);
343
147k
    tmp = SHOW_UBITS(re, s, n);
344
147k
    LAST_SKIP_BITS(re, s, n);
345
147k
    CLOSE_READER(re, s);
346
147k
    av_assert2(tmp < UINT64_C(1) << n);
347
147k
    return tmp;
348
147k
}
wnv1.c:get_bits
Line
Count
Source
338
1.47M
{
339
1.47M
    register unsigned int tmp;
340
1.47M
    OPEN_READER(re, s);
341
1.47M
    av_assert2(n>0 && n<=25);
342
1.47M
    UPDATE_CACHE(re, s);
343
1.47M
    tmp = SHOW_UBITS(re, s, n);
344
1.47M
    LAST_SKIP_BITS(re, s, n);
345
1.47M
    CLOSE_READER(re, s);
346
1.47M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.47M
    return tmp;
348
1.47M
}
Unexecuted instantiation: qoadec.c:get_bits
vima.c:get_bits
Line
Count
Source
338
47.2M
{
339
47.2M
    register unsigned int tmp;
340
47.2M
    OPEN_READER(re, s);
341
47.2M
    av_assert2(n>0 && n<=25);
342
47.2M
    UPDATE_CACHE(re, s);
343
47.2M
    tmp = SHOW_UBITS(re, s, n);
344
47.2M
    LAST_SKIP_BITS(re, s, n);
345
47.2M
    CLOSE_READER(re, s);
346
47.2M
    av_assert2(tmp < UINT64_C(1) << n);
347
47.2M
    return tmp;
348
47.2M
}
Unexecuted instantiation: leaddec.c:get_bits
Unexecuted instantiation: eatqi.c:get_bits
lagarith.c:get_bits
Line
Count
Source
338
69.5k
{
339
69.5k
    register unsigned int tmp;
340
69.5k
    OPEN_READER(re, s);
341
69.5k
    av_assert2(n>0 && n<=25);
342
69.5k
    UPDATE_CACHE(re, s);
343
69.5k
    tmp = SHOW_UBITS(re, s, n);
344
69.5k
    LAST_SKIP_BITS(re, s, n);
345
69.5k
    CLOSE_READER(re, s);
346
69.5k
    av_assert2(tmp < UINT64_C(1) << n);
347
69.5k
    return tmp;
348
69.5k
}
Unexecuted instantiation: lagarithrac.c:get_bits
dss_sp.c:get_bits
Line
Count
Source
338
19.3M
{
339
19.3M
    register unsigned int tmp;
340
19.3M
    OPEN_READER(re, s);
341
19.3M
    av_assert2(n>0 && n<=25);
342
19.3M
    UPDATE_CACHE(re, s);
343
19.3M
    tmp = SHOW_UBITS(re, s, n);
344
19.3M
    LAST_SKIP_BITS(re, s, n);
345
19.3M
    CLOSE_READER(re, s);
346
19.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.3M
    return tmp;
348
19.3M
}
siren.c:get_bits
Line
Count
Source
338
2.43M
{
339
2.43M
    register unsigned int tmp;
340
2.43M
    OPEN_READER(re, s);
341
2.43M
    av_assert2(n>0 && n<=25);
342
2.43M
    UPDATE_CACHE(re, s);
343
2.43M
    tmp = SHOW_UBITS(re, s, n);
344
2.43M
    LAST_SKIP_BITS(re, s, n);
345
2.43M
    CLOSE_READER(re, s);
346
2.43M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.43M
    return tmp;
348
2.43M
}
cavsdec.c:get_bits
Line
Count
Source
338
37.6M
{
339
37.6M
    register unsigned int tmp;
340
37.6M
    OPEN_READER(re, s);
341
37.6M
    av_assert2(n>0 && n<=25);
342
37.6M
    UPDATE_CACHE(re, s);
343
37.6M
    tmp = SHOW_UBITS(re, s, n);
344
37.6M
    LAST_SKIP_BITS(re, s, n);
345
37.6M
    CLOSE_READER(re, s);
346
37.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
37.6M
    return tmp;
348
37.6M
}
Unexecuted instantiation: cavs.c:get_bits
Unexecuted instantiation: cavsdata.c:get_bits
Unexecuted instantiation: hcom.c:get_bits
vp3.c:get_bits
Line
Count
Source
338
128M
{
339
128M
    register unsigned int tmp;
340
128M
    OPEN_READER(re, s);
341
128M
    av_assert2(n>0 && n<=25);
342
128M
    UPDATE_CACHE(re, s);
343
128M
    tmp = SHOW_UBITS(re, s, n);
344
128M
    LAST_SKIP_BITS(re, s, n);
345
128M
    CLOSE_READER(re, s);
346
128M
    av_assert2(tmp < UINT64_C(1) << n);
347
128M
    return tmp;
348
128M
}
webp.c:get_bits
Line
Count
Source
338
783M
{
339
783M
    register unsigned int tmp;
340
783M
    OPEN_READER(re, s);
341
783M
    av_assert2(n>0 && n<=25);
342
783M
    UPDATE_CACHE(re, s);
343
783M
    tmp = SHOW_UBITS(re, s, n);
344
783M
    LAST_SKIP_BITS(re, s, n);
345
783M
    CLOSE_READER(re, s);
346
783M
    av_assert2(tmp < UINT64_C(1) << n);
347
783M
    return tmp;
348
783M
}
eatgv.c:get_bits
Line
Count
Source
338
14.3M
{
339
14.3M
    register unsigned int tmp;
340
14.3M
    OPEN_READER(re, s);
341
14.3M
    av_assert2(n>0 && n<=25);
342
14.3M
    UPDATE_CACHE(re, s);
343
14.3M
    tmp = SHOW_UBITS(re, s, n);
344
14.3M
    LAST_SKIP_BITS(re, s, n);
345
14.3M
    CLOSE_READER(re, s);
346
14.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
14.3M
    return tmp;
348
14.3M
}
eatgq.c:get_bits
Line
Count
Source
338
17.2k
{
339
17.2k
    register unsigned int tmp;
340
17.2k
    OPEN_READER(re, s);
341
17.2k
    av_assert2(n>0 && n<=25);
342
17.2k
    UPDATE_CACHE(re, s);
343
17.2k
    tmp = SHOW_UBITS(re, s, n);
344
17.2k
    LAST_SKIP_BITS(re, s, n);
345
17.2k
    CLOSE_READER(re, s);
346
17.2k
    av_assert2(tmp < UINT64_C(1) << n);
347
17.2k
    return tmp;
348
17.2k
}
sga.c:get_bits
Line
Count
Source
338
18.8M
{
339
18.8M
    register unsigned int tmp;
340
18.8M
    OPEN_READER(re, s);
341
18.8M
    av_assert2(n>0 && n<=25);
342
18.8M
    UPDATE_CACHE(re, s);
343
18.8M
    tmp = SHOW_UBITS(re, s, n);
344
18.8M
    LAST_SKIP_BITS(re, s, n);
345
18.8M
    CLOSE_READER(re, s);
346
18.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
18.8M
    return tmp;
348
18.8M
}
binkaudio.c:get_bits
Line
Count
Source
338
134M
{
339
134M
    register unsigned int tmp;
340
134M
    OPEN_READER(re, s);
341
134M
    av_assert2(n>0 && n<=25);
342
134M
    UPDATE_CACHE(re, s);
343
134M
    tmp = SHOW_UBITS(re, s, n);
344
134M
    LAST_SKIP_BITS(re, s, n);
345
134M
    CLOSE_READER(re, s);
346
134M
    av_assert2(tmp < UINT64_C(1) << n);
347
134M
    return tmp;
348
134M
}
mpeg12dec.c:get_bits
Line
Count
Source
338
13.7M
{
339
13.7M
    register unsigned int tmp;
340
13.7M
    OPEN_READER(re, s);
341
13.7M
    av_assert2(n>0 && n<=25);
342
13.7M
    UPDATE_CACHE(re, s);
343
13.7M
    tmp = SHOW_UBITS(re, s, n);
344
13.7M
    LAST_SKIP_BITS(re, s, n);
345
13.7M
    CLOSE_READER(re, s);
346
13.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
13.7M
    return tmp;
348
13.7M
}
Unexecuted instantiation: indeo2.c:get_bits
Unexecuted instantiation: 4xm.c:get_bits
wmalosslessdec.c:get_bits
Line
Count
Source
338
55.3M
{
339
55.3M
    register unsigned int tmp;
340
55.3M
    OPEN_READER(re, s);
341
55.3M
    av_assert2(n>0 && n<=25);
342
55.3M
    UPDATE_CACHE(re, s);
343
55.3M
    tmp = SHOW_UBITS(re, s, n);
344
55.3M
    LAST_SKIP_BITS(re, s, n);
345
55.3M
    CLOSE_READER(re, s);
346
55.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
55.3M
    return tmp;
348
55.3M
}
ilbcdec.c:get_bits
Line
Count
Source
338
10.0M
{
339
10.0M
    register unsigned int tmp;
340
10.0M
    OPEN_READER(re, s);
341
10.0M
    av_assert2(n>0 && n<=25);
342
10.0M
    UPDATE_CACHE(re, s);
343
10.0M
    tmp = SHOW_UBITS(re, s, n);
344
10.0M
    LAST_SKIP_BITS(re, s, n);
345
10.0M
    CLOSE_READER(re, s);
346
10.0M
    av_assert2(tmp < UINT64_C(1) << n);
347
10.0M
    return tmp;
348
10.0M
}
hevcdec.c:get_bits
Line
Count
Source
338
3.24M
{
339
3.24M
    register unsigned int tmp;
340
3.24M
    OPEN_READER(re, s);
341
3.24M
    av_assert2(n>0 && n<=25);
342
3.24M
    UPDATE_CACHE(re, s);
343
3.24M
    tmp = SHOW_UBITS(re, s, n);
344
3.24M
    LAST_SKIP_BITS(re, s, n);
345
3.24M
    CLOSE_READER(re, s);
346
3.24M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.24M
    return tmp;
348
3.24M
}
Unexecuted instantiation: mvs.c:get_bits
Unexecuted instantiation: pred.c:get_bits
Unexecuted instantiation: refs.c:get_bits
Unexecuted instantiation: cabac.c:get_bits
dsp.c:get_bits
Line
Count
Source
338
325k
{
339
325k
    register unsigned int tmp;
340
325k
    OPEN_READER(re, s);
341
325k
    av_assert2(n>0 && n<=25);
342
325k
    UPDATE_CACHE(re, s);
343
325k
    tmp = SHOW_UBITS(re, s, n);
344
325k
    LAST_SKIP_BITS(re, s, n);
345
325k
    CLOSE_READER(re, s);
346
325k
    av_assert2(tmp < UINT64_C(1) << n);
347
325k
    return tmp;
348
325k
}
Unexecuted instantiation: filter.c:get_bits
tscc2.c:get_bits
Line
Count
Source
338
152k
{
339
152k
    register unsigned int tmp;
340
152k
    OPEN_READER(re, s);
341
152k
    av_assert2(n>0 && n<=25);
342
152k
    UPDATE_CACHE(re, s);
343
152k
    tmp = SHOW_UBITS(re, s, n);
344
152k
    LAST_SKIP_BITS(re, s, n);
345
152k
    CLOSE_READER(re, s);
346
152k
    av_assert2(tmp < UINT64_C(1) << n);
347
152k
    return tmp;
348
152k
}
hqx.c:get_bits
Line
Count
Source
338
8.26M
{
339
8.26M
    register unsigned int tmp;
340
8.26M
    OPEN_READER(re, s);
341
8.26M
    av_assert2(n>0 && n<=25);
342
8.26M
    UPDATE_CACHE(re, s);
343
8.26M
    tmp = SHOW_UBITS(re, s, n);
344
8.26M
    LAST_SKIP_BITS(re, s, n);
345
8.26M
    CLOSE_READER(re, s);
346
8.26M
    av_assert2(tmp < UINT64_C(1) << n);
347
8.26M
    return tmp;
348
8.26M
}
mobiclip.c:get_bits
Line
Count
Source
338
7.78M
{
339
7.78M
    register unsigned int tmp;
340
7.78M
    OPEN_READER(re, s);
341
7.78M
    av_assert2(n>0 && n<=25);
342
7.78M
    UPDATE_CACHE(re, s);
343
7.78M
    tmp = SHOW_UBITS(re, s, n);
344
7.78M
    LAST_SKIP_BITS(re, s, n);
345
7.78M
    CLOSE_READER(re, s);
346
7.78M
    av_assert2(tmp < UINT64_C(1) << n);
347
7.78M
    return tmp;
348
7.78M
}
wmaprodec.c:get_bits
Line
Count
Source
338
12.0M
{
339
12.0M
    register unsigned int tmp;
340
12.0M
    OPEN_READER(re, s);
341
12.0M
    av_assert2(n>0 && n<=25);
342
12.0M
    UPDATE_CACHE(re, s);
343
12.0M
    tmp = SHOW_UBITS(re, s, n);
344
12.0M
    LAST_SKIP_BITS(re, s, n);
345
12.0M
    CLOSE_READER(re, s);
346
12.0M
    av_assert2(tmp < UINT64_C(1) << n);
347
12.0M
    return tmp;
348
12.0M
}
Unexecuted instantiation: h264dec.c:get_bits
g729dec.c:get_bits
Line
Count
Source
338
15.0M
{
339
15.0M
    register unsigned int tmp;
340
15.0M
    OPEN_READER(re, s);
341
15.0M
    av_assert2(n>0 && n<=25);
342
15.0M
    UPDATE_CACHE(re, s);
343
15.0M
    tmp = SHOW_UBITS(re, s, n);
344
15.0M
    LAST_SKIP_BITS(re, s, n);
345
15.0M
    CLOSE_READER(re, s);
346
15.0M
    av_assert2(tmp < UINT64_C(1) << n);
347
15.0M
    return tmp;
348
15.0M
}
sipr.c:get_bits
Line
Count
Source
338
22.3M
{
339
22.3M
    register unsigned int tmp;
340
22.3M
    OPEN_READER(re, s);
341
22.3M
    av_assert2(n>0 && n<=25);
342
22.3M
    UPDATE_CACHE(re, s);
343
22.3M
    tmp = SHOW_UBITS(re, s, n);
344
22.3M
    LAST_SKIP_BITS(re, s, n);
345
22.3M
    CLOSE_READER(re, s);
346
22.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
22.3M
    return tmp;
348
22.3M
}
g722dec.c:get_bits
Line
Count
Source
338
27.6M
{
339
27.6M
    register unsigned int tmp;
340
27.6M
    OPEN_READER(re, s);
341
27.6M
    av_assert2(n>0 && n<=25);
342
27.6M
    UPDATE_CACHE(re, s);
343
27.6M
    tmp = SHOW_UBITS(re, s, n);
344
27.6M
    LAST_SKIP_BITS(re, s, n);
345
27.6M
    CLOSE_READER(re, s);
346
27.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
27.6M
    return tmp;
348
27.6M
}
nellymoserdec.c:get_bits
Line
Count
Source
338
64.7M
{
339
64.7M
    register unsigned int tmp;
340
64.7M
    OPEN_READER(re, s);
341
64.7M
    av_assert2(n>0 && n<=25);
342
64.7M
    UPDATE_CACHE(re, s);
343
64.7M
    tmp = SHOW_UBITS(re, s, n);
344
64.7M
    LAST_SKIP_BITS(re, s, n);
345
64.7M
    CLOSE_READER(re, s);
346
64.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
64.7M
    return tmp;
348
64.7M
}
Unexecuted instantiation: dcaenc.c:get_bits
Unexecuted instantiation: dcaadpcm.c:get_bits
Unexecuted instantiation: dcadata.c:get_bits
interplayvideo.c:get_bits
Line
Count
Source
338
364k
{
339
364k
    register unsigned int tmp;
340
364k
    OPEN_READER(re, s);
341
364k
    av_assert2(n>0 && n<=25);
342
364k
    UPDATE_CACHE(re, s);
343
364k
    tmp = SHOW_UBITS(re, s, n);
344
364k
    LAST_SKIP_BITS(re, s, n);
345
364k
    CLOSE_READER(re, s);
346
364k
    av_assert2(tmp < UINT64_C(1) << n);
347
364k
    return tmp;
348
364k
}
Unexecuted instantiation: dec.c:get_bits
Unexecuted instantiation: dec_celt.c:get_bits
Unexecuted instantiation: silk.c:get_bits
mjpegbdec.c:get_bits
Line
Count
Source
338
7.84M
{
339
7.84M
    register unsigned int tmp;
340
7.84M
    OPEN_READER(re, s);
341
7.84M
    av_assert2(n>0 && n<=25);
342
7.84M
    UPDATE_CACHE(re, s);
343
7.84M
    tmp = SHOW_UBITS(re, s, n);
344
7.84M
    LAST_SKIP_BITS(re, s, n);
345
7.84M
    CLOSE_READER(re, s);
346
7.84M
    av_assert2(tmp < UINT64_C(1) << n);
347
7.84M
    return tmp;
348
7.84M
}
bink.c:get_bits
Line
Count
Source
338
58.7M
{
339
58.7M
    register unsigned int tmp;
340
58.7M
    OPEN_READER(re, s);
341
58.7M
    av_assert2(n>0 && n<=25);
342
58.7M
    UPDATE_CACHE(re, s);
343
58.7M
    tmp = SHOW_UBITS(re, s, n);
344
58.7M
    LAST_SKIP_BITS(re, s, n);
345
58.7M
    CLOSE_READER(re, s);
346
58.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
58.7M
    return tmp;
348
58.7M
}
dvdsubdec.c:get_bits
Line
Count
Source
338
17.3M
{
339
17.3M
    register unsigned int tmp;
340
17.3M
    OPEN_READER(re, s);
341
17.3M
    av_assert2(n>0 && n<=25);
342
17.3M
    UPDATE_CACHE(re, s);
343
17.3M
    tmp = SHOW_UBITS(re, s, n);
344
17.3M
    LAST_SKIP_BITS(re, s, n);
345
17.3M
    CLOSE_READER(re, s);
346
17.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
17.3M
    return tmp;
348
17.3M
}
rtjpeg.c:get_bits
Line
Count
Source
338
26.0M
{
339
26.0M
    register unsigned int tmp;
340
26.0M
    OPEN_READER(re, s);
341
26.0M
    av_assert2(n>0 && n<=25);
342
26.0M
    UPDATE_CACHE(re, s);
343
26.0M
    tmp = SHOW_UBITS(re, s, n);
344
26.0M
    LAST_SKIP_BITS(re, s, n);
345
26.0M
    CLOSE_READER(re, s);
346
26.0M
    av_assert2(tmp < UINT64_C(1) << n);
347
26.0M
    return tmp;
348
26.0M
}
truespeech.c:get_bits
Line
Count
Source
338
17.7M
{
339
17.7M
    register unsigned int tmp;
340
17.7M
    OPEN_READER(re, s);
341
17.7M
    av_assert2(n>0 && n<=25);
342
17.7M
    UPDATE_CACHE(re, s);
343
17.7M
    tmp = SHOW_UBITS(re, s, n);
344
17.7M
    LAST_SKIP_BITS(re, s, n);
345
17.7M
    CLOSE_READER(re, s);
346
17.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
17.7M
    return tmp;
348
17.7M
}
metasound.c:get_bits
Line
Count
Source
338
16.4M
{
339
16.4M
    register unsigned int tmp;
340
16.4M
    OPEN_READER(re, s);
341
16.4M
    av_assert2(n>0 && n<=25);
342
16.4M
    UPDATE_CACHE(re, s);
343
16.4M
    tmp = SHOW_UBITS(re, s, n);
344
16.4M
    LAST_SKIP_BITS(re, s, n);
345
16.4M
    CLOSE_READER(re, s);
346
16.4M
    av_assert2(tmp < UINT64_C(1) << n);
347
16.4M
    return tmp;
348
16.4M
}
escape124.c:get_bits
Line
Count
Source
338
19.4M
{
339
19.4M
    register unsigned int tmp;
340
19.4M
    OPEN_READER(re, s);
341
19.4M
    av_assert2(n>0 && n<=25);
342
19.4M
    UPDATE_CACHE(re, s);
343
19.4M
    tmp = SHOW_UBITS(re, s, n);
344
19.4M
    LAST_SKIP_BITS(re, s, n);
345
19.4M
    CLOSE_READER(re, s);
346
19.4M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.4M
    return tmp;
348
19.4M
}
cllc.c:get_bits
Line
Count
Source
338
662k
{
339
662k
    register unsigned int tmp;
340
662k
    OPEN_READER(re, s);
341
662k
    av_assert2(n>0 && n<=25);
342
662k
    UPDATE_CACHE(re, s);
343
662k
    tmp = SHOW_UBITS(re, s, n);
344
662k
    LAST_SKIP_BITS(re, s, n);
345
662k
    CLOSE_READER(re, s);
346
662k
    av_assert2(tmp < UINT64_C(1) << n);
347
662k
    return tmp;
348
662k
}
dvdec.c:get_bits
Line
Count
Source
338
57.7M
{
339
57.7M
    register unsigned int tmp;
340
57.7M
    OPEN_READER(re, s);
341
57.7M
    av_assert2(n>0 && n<=25);
342
57.7M
    UPDATE_CACHE(re, s);
343
57.7M
    tmp = SHOW_UBITS(re, s, n);
344
57.7M
    LAST_SKIP_BITS(re, s, n);
345
57.7M
    CLOSE_READER(re, s);
346
57.7M
    av_assert2(tmp < UINT64_C(1) << n);
347
57.7M
    return tmp;
348
57.7M
}
tta.c:get_bits
Line
Count
Source
338
1.00M
{
339
1.00M
    register unsigned int tmp;
340
1.00M
    OPEN_READER(re, s);
341
1.00M
    av_assert2(n>0 && n<=25);
342
1.00M
    UPDATE_CACHE(re, s);
343
1.00M
    tmp = SHOW_UBITS(re, s, n);
344
1.00M
    LAST_SKIP_BITS(re, s, n);
345
1.00M
    CLOSE_READER(re, s);
346
1.00M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.00M
    return tmp;
348
1.00M
}
Unexecuted instantiation: fraps.c:get_bits
motionpixels.c:get_bits
Line
Count
Source
338
261M
{
339
261M
    register unsigned int tmp;
340
261M
    OPEN_READER(re, s);
341
261M
    av_assert2(n>0 && n<=25);
342
261M
    UPDATE_CACHE(re, s);
343
261M
    tmp = SHOW_UBITS(re, s, n);
344
261M
    LAST_SKIP_BITS(re, s, n);
345
261M
    CLOSE_READER(re, s);
346
261M
    av_assert2(tmp < UINT64_C(1) << n);
347
261M
    return tmp;
348
261M
}
vp9.c:get_bits
Line
Count
Source
338
6.66M
{
339
6.66M
    register unsigned int tmp;
340
6.66M
    OPEN_READER(re, s);
341
6.66M
    av_assert2(n>0 && n<=25);
342
6.66M
    UPDATE_CACHE(re, s);
343
6.66M
    tmp = SHOW_UBITS(re, s, n);
344
6.66M
    LAST_SKIP_BITS(re, s, n);
345
6.66M
    CLOSE_READER(re, s);
346
6.66M
    av_assert2(tmp < UINT64_C(1) << n);
347
6.66M
    return tmp;
348
6.66M
}
Unexecuted instantiation: vp9block.c:get_bits
Unexecuted instantiation: vp9data.c:get_bits
Unexecuted instantiation: vp9lpf.c:get_bits
Unexecuted instantiation: vp9mvs.c:get_bits
Unexecuted instantiation: vp9prob.c:get_bits
Unexecuted instantiation: vp9recon.c:get_bits
ffv1dec.c:get_bits
Line
Count
Source
338
1.40M
{
339
1.40M
    register unsigned int tmp;
340
1.40M
    OPEN_READER(re, s);
341
1.40M
    av_assert2(n>0 && n<=25);
342
1.40M
    UPDATE_CACHE(re, s);
343
1.40M
    tmp = SHOW_UBITS(re, s, n);
344
1.40M
    LAST_SKIP_BITS(re, s, n);
345
1.40M
    CLOSE_READER(re, s);
346
1.40M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.40M
    return tmp;
348
1.40M
}
Unexecuted instantiation: intra_utils.c:get_bits
Unexecuted instantiation: thread.c:get_bits
Unexecuted instantiation: ctu.c:get_bits
Unexecuted instantiation: inter.c:get_bits
Unexecuted instantiation: intra.c:get_bits
wmavoice.c:get_bits
Line
Count
Source
338
13.0M
{
339
13.0M
    register unsigned int tmp;
340
13.0M
    OPEN_READER(re, s);
341
13.0M
    av_assert2(n>0 && n<=25);
342
13.0M
    UPDATE_CACHE(re, s);
343
13.0M
    tmp = SHOW_UBITS(re, s, n);
344
13.0M
    LAST_SKIP_BITS(re, s, n);
345
13.0M
    CLOSE_READER(re, s);
346
13.0M
    av_assert2(tmp < UINT64_C(1) << n);
347
13.0M
    return tmp;
348
13.0M
}
Unexecuted instantiation: rawdec.c:get_bits
svq1dec.c:get_bits
Line
Count
Source
338
702k
{
339
702k
    register unsigned int tmp;
340
702k
    OPEN_READER(re, s);
341
702k
    av_assert2(n>0 && n<=25);
342
702k
    UPDATE_CACHE(re, s);
343
702k
    tmp = SHOW_UBITS(re, s, n);
344
702k
    LAST_SKIP_BITS(re, s, n);
345
702k
    CLOSE_READER(re, s);
346
702k
    av_assert2(tmp < UINT64_C(1) << n);
347
702k
    return tmp;
348
702k
}
mpc7.c:get_bits
Line
Count
Source
338
2.32M
{
339
2.32M
    register unsigned int tmp;
340
2.32M
    OPEN_READER(re, s);
341
2.32M
    av_assert2(n>0 && n<=25);
342
2.32M
    UPDATE_CACHE(re, s);
343
2.32M
    tmp = SHOW_UBITS(re, s, n);
344
2.32M
    LAST_SKIP_BITS(re, s, n);
345
2.32M
    CLOSE_READER(re, s);
346
2.32M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.32M
    return tmp;
348
2.32M
}
truemotion2rt.c:get_bits
Line
Count
Source
338
43.9M
{
339
43.9M
    register unsigned int tmp;
340
43.9M
    OPEN_READER(re, s);
341
43.9M
    av_assert2(n>0 && n<=25);
342
43.9M
    UPDATE_CACHE(re, s);
343
43.9M
    tmp = SHOW_UBITS(re, s, n);
344
43.9M
    LAST_SKIP_BITS(re, s, n);
345
43.9M
    CLOSE_READER(re, s);
346
43.9M
    av_assert2(tmp < UINT64_C(1) << n);
347
43.9M
    return tmp;
348
43.9M
}
Unexecuted instantiation: adxdec.c:get_bits
rv40.c:get_bits
Line
Count
Source
338
2.07M
{
339
2.07M
    register unsigned int tmp;
340
2.07M
    OPEN_READER(re, s);
341
2.07M
    av_assert2(n>0 && n<=25);
342
2.07M
    UPDATE_CACHE(re, s);
343
2.07M
    tmp = SHOW_UBITS(re, s, n);
344
2.07M
    LAST_SKIP_BITS(re, s, n);
345
2.07M
    CLOSE_READER(re, s);
346
2.07M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.07M
    return tmp;
348
2.07M
}
xsubdec.c:get_bits
Line
Count
Source
338
19.9M
{
339
19.9M
    register unsigned int tmp;
340
19.9M
    OPEN_READER(re, s);
341
19.9M
    av_assert2(n>0 && n<=25);
342
19.9M
    UPDATE_CACHE(re, s);
343
19.9M
    tmp = SHOW_UBITS(re, s, n);
344
19.9M
    LAST_SKIP_BITS(re, s, n);
345
19.9M
    CLOSE_READER(re, s);
346
19.9M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.9M
    return tmp;
348
19.9M
}
notchlc.c:get_bits
Line
Count
Source
338
28.6M
{
339
28.6M
    register unsigned int tmp;
340
28.6M
    OPEN_READER(re, s);
341
28.6M
    av_assert2(n>0 && n<=25);
342
28.6M
    UPDATE_CACHE(re, s);
343
28.6M
    tmp = SHOW_UBITS(re, s, n);
344
28.6M
    LAST_SKIP_BITS(re, s, n);
345
28.6M
    CLOSE_READER(re, s);
346
28.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
28.6M
    return tmp;
348
28.6M
}
aic.c:get_bits
Line
Count
Source
338
3.48M
{
339
3.48M
    register unsigned int tmp;
340
3.48M
    OPEN_READER(re, s);
341
3.48M
    av_assert2(n>0 && n<=25);
342
3.48M
    UPDATE_CACHE(re, s);
343
3.48M
    tmp = SHOW_UBITS(re, s, n);
344
3.48M
    LAST_SKIP_BITS(re, s, n);
345
3.48M
    CLOSE_READER(re, s);
346
3.48M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.48M
    return tmp;
348
3.48M
}
vqcdec.c:get_bits
Line
Count
Source
338
3.11M
{
339
3.11M
    register unsigned int tmp;
340
3.11M
    OPEN_READER(re, s);
341
3.11M
    av_assert2(n>0 && n<=25);
342
3.11M
    UPDATE_CACHE(re, s);
343
3.11M
    tmp = SHOW_UBITS(re, s, n);
344
3.11M
    LAST_SKIP_BITS(re, s, n);
345
3.11M
    CLOSE_READER(re, s);
346
3.11M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.11M
    return tmp;
348
3.11M
}
dolby_e.c:get_bits
Line
Count
Source
338
698k
{
339
698k
    register unsigned int tmp;
340
698k
    OPEN_READER(re, s);
341
698k
    av_assert2(n>0 && n<=25);
342
698k
    UPDATE_CACHE(re, s);
343
698k
    tmp = SHOW_UBITS(re, s, n);
344
698k
    LAST_SKIP_BITS(re, s, n);
345
698k
    CLOSE_READER(re, s);
346
698k
    av_assert2(tmp < UINT64_C(1) << n);
347
698k
    return tmp;
348
698k
}
proresdec.c:get_bits
Line
Count
Source
338
2.47M
{
339
2.47M
    register unsigned int tmp;
340
2.47M
    OPEN_READER(re, s);
341
2.47M
    av_assert2(n>0 && n<=25);
342
2.47M
    UPDATE_CACHE(re, s);
343
2.47M
    tmp = SHOW_UBITS(re, s, n);
344
2.47M
    LAST_SKIP_BITS(re, s, n);
345
2.47M
    CLOSE_READER(re, s);
346
2.47M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.47M
    return tmp;
348
2.47M
}
evrcdec.c:get_bits
Line
Count
Source
338
206k
{
339
206k
    register unsigned int tmp;
340
206k
    OPEN_READER(re, s);
341
206k
    av_assert2(n>0 && n<=25);
342
206k
    UPDATE_CACHE(re, s);
343
206k
    tmp = SHOW_UBITS(re, s, n);
344
206k
    LAST_SKIP_BITS(re, s, n);
345
206k
    CLOSE_READER(re, s);
346
206k
    av_assert2(tmp < UINT64_C(1) << n);
347
206k
    return tmp;
348
206k
}
dnxhddec.c:get_bits
Line
Count
Source
338
88.9k
{
339
88.9k
    register unsigned int tmp;
340
88.9k
    OPEN_READER(re, s);
341
88.9k
    av_assert2(n>0 && n<=25);
342
88.9k
    UPDATE_CACHE(re, s);
343
88.9k
    tmp = SHOW_UBITS(re, s, n);
344
88.9k
    LAST_SKIP_BITS(re, s, n);
345
88.9k
    CLOSE_READER(re, s);
346
88.9k
    av_assert2(tmp < UINT64_C(1) << n);
347
88.9k
    return tmp;
348
88.9k
}
Unexecuted instantiation: dcadec.c:get_bits
dca_core.c:get_bits
Line
Count
Source
338
32.1M
{
339
32.1M
    register unsigned int tmp;
340
32.1M
    OPEN_READER(re, s);
341
32.1M
    av_assert2(n>0 && n<=25);
342
32.1M
    UPDATE_CACHE(re, s);
343
32.1M
    tmp = SHOW_UBITS(re, s, n);
344
32.1M
    LAST_SKIP_BITS(re, s, n);
345
32.1M
    CLOSE_READER(re, s);
346
32.1M
    av_assert2(tmp < UINT64_C(1) << n);
347
32.1M
    return tmp;
348
32.1M
}
dca_lbr.c:get_bits
Line
Count
Source
338
3.98M
{
339
3.98M
    register unsigned int tmp;
340
3.98M
    OPEN_READER(re, s);
341
3.98M
    av_assert2(n>0 && n<=25);
342
3.98M
    UPDATE_CACHE(re, s);
343
3.98M
    tmp = SHOW_UBITS(re, s, n);
344
3.98M
    LAST_SKIP_BITS(re, s, n);
345
3.98M
    CLOSE_READER(re, s);
346
3.98M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.98M
    return tmp;
348
3.98M
}
dca_xll.c:get_bits
Line
Count
Source
338
10.3M
{
339
10.3M
    register unsigned int tmp;
340
10.3M
    OPEN_READER(re, s);
341
10.3M
    av_assert2(n>0 && n<=25);
342
10.3M
    UPDATE_CACHE(re, s);
343
10.3M
    tmp = SHOW_UBITS(re, s, n);
344
10.3M
    LAST_SKIP_BITS(re, s, n);
345
10.3M
    CLOSE_READER(re, s);
346
10.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
10.3M
    return tmp;
348
10.3M
}
Unexecuted instantiation: mlpenc.c:get_bits
mlpdec.c:get_bits
Line
Count
Source
338
3.91M
{
339
3.91M
    register unsigned int tmp;
340
3.91M
    OPEN_READER(re, s);
341
3.91M
    av_assert2(n>0 && n<=25);
342
3.91M
    UPDATE_CACHE(re, s);
343
3.91M
    tmp = SHOW_UBITS(re, s, n);
344
3.91M
    LAST_SKIP_BITS(re, s, n);
345
3.91M
    CLOSE_READER(re, s);
346
3.91M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.91M
    return tmp;
348
3.91M
}
atrac3.c:get_bits
Line
Count
Source
338
11.9M
{
339
11.9M
    register unsigned int tmp;
340
11.9M
    OPEN_READER(re, s);
341
11.9M
    av_assert2(n>0 && n<=25);
342
11.9M
    UPDATE_CACHE(re, s);
343
11.9M
    tmp = SHOW_UBITS(re, s, n);
344
11.9M
    LAST_SKIP_BITS(re, s, n);
345
11.9M
    CLOSE_READER(re, s);
346
11.9M
    av_assert2(tmp < UINT64_C(1) << n);
347
11.9M
    return tmp;
348
11.9M
}
vorbisdec.c:get_bits
Line
Count
Source
338
3.73M
{
339
3.73M
    register unsigned int tmp;
340
3.73M
    OPEN_READER(re, s);
341
3.73M
    av_assert2(n>0 && n<=25);
342
3.73M
    UPDATE_CACHE(re, s);
343
3.73M
    tmp = SHOW_UBITS(re, s, n);
344
3.73M
    LAST_SKIP_BITS(re, s, n);
345
3.73M
    CLOSE_READER(re, s);
346
3.73M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.73M
    return tmp;
348
3.73M
}
flashsv.c:get_bits
Line
Count
Source
338
2.02M
{
339
2.02M
    register unsigned int tmp;
340
2.02M
    OPEN_READER(re, s);
341
2.02M
    av_assert2(n>0 && n<=25);
342
2.02M
    UPDATE_CACHE(re, s);
343
2.02M
    tmp = SHOW_UBITS(re, s, n);
344
2.02M
    LAST_SKIP_BITS(re, s, n);
345
2.02M
    CLOSE_READER(re, s);
346
2.02M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.02M
    return tmp;
348
2.02M
}
wavpack.c:get_bits
Line
Count
Source
338
2.47M
{
339
2.47M
    register unsigned int tmp;
340
2.47M
    OPEN_READER(re, s);
341
2.47M
    av_assert2(n>0 && n<=25);
342
2.47M
    UPDATE_CACHE(re, s);
343
2.47M
    tmp = SHOW_UBITS(re, s, n);
344
2.47M
    LAST_SKIP_BITS(re, s, n);
345
2.47M
    CLOSE_READER(re, s);
346
2.47M
    av_assert2(tmp < UINT64_C(1) << n);
347
2.47M
    return tmp;
348
2.47M
}
Unexecuted instantiation: speedhqdec.c:get_bits
g723_1dec.c:get_bits
Line
Count
Source
338
34.0M
{
339
34.0M
    register unsigned int tmp;
340
34.0M
    OPEN_READER(re, s);
341
34.0M
    av_assert2(n>0 && n<=25);
342
34.0M
    UPDATE_CACHE(re, s);
343
34.0M
    tmp = SHOW_UBITS(re, s, n);
344
34.0M
    LAST_SKIP_BITS(re, s, n);
345
34.0M
    CLOSE_READER(re, s);
346
34.0M
    av_assert2(tmp < UINT64_C(1) << n);
347
34.0M
    return tmp;
348
34.0M
}
g2meet.c:get_bits
Line
Count
Source
338
52.6M
{
339
52.6M
    register unsigned int tmp;
340
52.6M
    OPEN_READER(re, s);
341
52.6M
    av_assert2(n>0 && n<=25);
342
52.6M
    UPDATE_CACHE(re, s);
343
52.6M
    tmp = SHOW_UBITS(re, s, n);
344
52.6M
    LAST_SKIP_BITS(re, s, n);
345
52.6M
    CLOSE_READER(re, s);
346
52.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
52.6M
    return tmp;
348
52.6M
}
shorten.c:get_bits
Line
Count
Source
338
105k
{
339
105k
    register unsigned int tmp;
340
105k
    OPEN_READER(re, s);
341
105k
    av_assert2(n>0 && n<=25);
342
105k
    UPDATE_CACHE(re, s);
343
105k
    tmp = SHOW_UBITS(re, s, n);
344
105k
    LAST_SKIP_BITS(re, s, n);
345
105k
    CLOSE_READER(re, s);
346
105k
    av_assert2(tmp < UINT64_C(1) << n);
347
105k
    return tmp;
348
105k
}
indeo4.c:get_bits
Line
Count
Source
338
5.41M
{
339
5.41M
    register unsigned int tmp;
340
5.41M
    OPEN_READER(re, s);
341
5.41M
    av_assert2(n>0 && n<=25);
342
5.41M
    UPDATE_CACHE(re, s);
343
5.41M
    tmp = SHOW_UBITS(re, s, n);
344
5.41M
    LAST_SKIP_BITS(re, s, n);
345
5.41M
    CLOSE_READER(re, s);
346
5.41M
    av_assert2(tmp < UINT64_C(1) << n);
347
5.41M
    return tmp;
348
5.41M
}
Unexecuted instantiation: sp5xdec.c:get_bits
atrac1.c:get_bits
Line
Count
Source
338
19.8M
{
339
19.8M
    register unsigned int tmp;
340
19.8M
    OPEN_READER(re, s);
341
19.8M
    av_assert2(n>0 && n<=25);
342
19.8M
    UPDATE_CACHE(re, s);
343
19.8M
    tmp = SHOW_UBITS(re, s, n);
344
19.8M
    LAST_SKIP_BITS(re, s, n);
345
19.8M
    CLOSE_READER(re, s);
346
19.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.8M
    return tmp;
348
19.8M
}
Unexecuted instantiation: apv_decode.c:get_bits
apv_entropy.c:get_bits
Line
Count
Source
338
134k
{
339
134k
    register unsigned int tmp;
340
134k
    OPEN_READER(re, s);
341
134k
    av_assert2(n>0 && n<=25);
342
134k
    UPDATE_CACHE(re, s);
343
134k
    tmp = SHOW_UBITS(re, s, n);
344
134k
    LAST_SKIP_BITS(re, s, n);
345
134k
    CLOSE_READER(re, s);
346
134k
    av_assert2(tmp < UINT64_C(1) << n);
347
134k
    return tmp;
348
134k
}
Unexecuted instantiation: avs.c:get_bits
rv60dec.c:get_bits
Line
Count
Source
338
74.8M
{
339
74.8M
    register unsigned int tmp;
340
74.8M
    OPEN_READER(re, s);
341
74.8M
    av_assert2(n>0 && n<=25);
342
74.8M
    UPDATE_CACHE(re, s);
343
74.8M
    tmp = SHOW_UBITS(re, s, n);
344
74.8M
    LAST_SKIP_BITS(re, s, n);
345
74.8M
    CLOSE_READER(re, s);
346
74.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
74.8M
    return tmp;
348
74.8M
}
alac.c:get_bits
Line
Count
Source
338
3.25M
{
339
3.25M
    register unsigned int tmp;
340
3.25M
    OPEN_READER(re, s);
341
3.25M
    av_assert2(n>0 && n<=25);
342
3.25M
    UPDATE_CACHE(re, s);
343
3.25M
    tmp = SHOW_UBITS(re, s, n);
344
3.25M
    LAST_SKIP_BITS(re, s, n);
345
3.25M
    CLOSE_READER(re, s);
346
3.25M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.25M
    return tmp;
348
3.25M
}
tiertexseqv.c:get_bits
Line
Count
Source
338
224k
{
339
224k
    register unsigned int tmp;
340
224k
    OPEN_READER(re, s);
341
224k
    av_assert2(n>0 && n<=25);
342
224k
    UPDATE_CACHE(re, s);
343
224k
    tmp = SHOW_UBITS(re, s, n);
344
224k
    LAST_SKIP_BITS(re, s, n);
345
224k
    CLOSE_READER(re, s);
346
224k
    av_assert2(tmp < UINT64_C(1) << n);
347
224k
    return tmp;
348
224k
}
Unexecuted instantiation: ffv1enc.c:get_bits
hcadec.c:get_bits
Line
Count
Source
338
3.33M
{
339
3.33M
    register unsigned int tmp;
340
3.33M
    OPEN_READER(re, s);
341
3.33M
    av_assert2(n>0 && n<=25);
342
3.33M
    UPDATE_CACHE(re, s);
343
3.33M
    tmp = SHOW_UBITS(re, s, n);
344
3.33M
    LAST_SKIP_BITS(re, s, n);
345
3.33M
    CLOSE_READER(re, s);
346
3.33M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.33M
    return tmp;
348
3.33M
}
pcx.c:get_bits
Line
Count
Source
338
6.75M
{
339
6.75M
    register unsigned int tmp;
340
6.75M
    OPEN_READER(re, s);
341
6.75M
    av_assert2(n>0 && n<=25);
342
6.75M
    UPDATE_CACHE(re, s);
343
6.75M
    tmp = SHOW_UBITS(re, s, n);
344
6.75M
    LAST_SKIP_BITS(re, s, n);
345
6.75M
    CLOSE_READER(re, s);
346
6.75M
    av_assert2(tmp < UINT64_C(1) << n);
347
6.75M
    return tmp;
348
6.75M
}
qcelpdec.c:get_bits
Line
Count
Source
338
287k
{
339
287k
    register unsigned int tmp;
340
287k
    OPEN_READER(re, s);
341
287k
    av_assert2(n>0 && n<=25);
342
287k
    UPDATE_CACHE(re, s);
343
287k
    tmp = SHOW_UBITS(re, s, n);
344
287k
    LAST_SKIP_BITS(re, s, n);
345
287k
    CLOSE_READER(re, s);
346
287k
    av_assert2(tmp < UINT64_C(1) << n);
347
287k
    return tmp;
348
287k
}
flacdec.c:get_bits
Line
Count
Source
338
162M
{
339
162M
    register unsigned int tmp;
340
162M
    OPEN_READER(re, s);
341
162M
    av_assert2(n>0 && n<=25);
342
162M
    UPDATE_CACHE(re, s);
343
162M
    tmp = SHOW_UBITS(re, s, n);
344
162M
    LAST_SKIP_BITS(re, s, n);
345
162M
    CLOSE_READER(re, s);
346
162M
    av_assert2(tmp < UINT64_C(1) << n);
347
162M
    return tmp;
348
162M
}
ac3dec_fixed.c:get_bits
Line
Count
Source
338
19.2M
{
339
19.2M
    register unsigned int tmp;
340
19.2M
    OPEN_READER(re, s);
341
19.2M
    av_assert2(n>0 && n<=25);
342
19.2M
    UPDATE_CACHE(re, s);
343
19.2M
    tmp = SHOW_UBITS(re, s, n);
344
19.2M
    LAST_SKIP_BITS(re, s, n);
345
19.2M
    CLOSE_READER(re, s);
346
19.2M
    av_assert2(tmp < UINT64_C(1) << n);
347
19.2M
    return tmp;
348
19.2M
}
Unexecuted instantiation: midivid.c:get_bits
mimic.c:get_bits
Line
Count
Source
338
111M
{
339
111M
    register unsigned int tmp;
340
111M
    OPEN_READER(re, s);
341
111M
    av_assert2(n>0 && n<=25);
342
111M
    UPDATE_CACHE(re, s);
343
111M
    tmp = SHOW_UBITS(re, s, n);
344
111M
    LAST_SKIP_BITS(re, s, n);
345
111M
    CLOSE_READER(re, s);
346
111M
    av_assert2(tmp < UINT64_C(1) << n);
347
111M
    return tmp;
348
111M
}
fic.c:get_bits
Line
Count
Source
338
3.16M
{
339
3.16M
    register unsigned int tmp;
340
3.16M
    OPEN_READER(re, s);
341
3.16M
    av_assert2(n>0 && n<=25);
342
3.16M
    UPDATE_CACHE(re, s);
343
3.16M
    tmp = SHOW_UBITS(re, s, n);
344
3.16M
    LAST_SKIP_BITS(re, s, n);
345
3.16M
    CLOSE_READER(re, s);
346
3.16M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.16M
    return tmp;
348
3.16M
}
qdmc.c:get_bits
Line
Count
Source
338
3.79M
{
339
3.79M
    register unsigned int tmp;
340
3.79M
    OPEN_READER(re, s);
341
3.79M
    av_assert2(n>0 && n<=25);
342
3.79M
    UPDATE_CACHE(re, s);
343
3.79M
    tmp = SHOW_UBITS(re, s, n);
344
3.79M
    LAST_SKIP_BITS(re, s, n);
345
3.79M
    CLOSE_READER(re, s);
346
3.79M
    av_assert2(tmp < UINT64_C(1) << n);
347
3.79M
    return tmp;
348
3.79M
}
ra288.c:get_bits
Line
Count
Source
338
22.0M
{
339
22.0M
    register unsigned int tmp;
340
22.0M
    OPEN_READER(re, s);
341
22.0M
    av_assert2(n>0 && n<=25);
342
22.0M
    UPDATE_CACHE(re, s);
343
22.0M
    tmp = SHOW_UBITS(re, s, n);
344
22.0M
    LAST_SKIP_BITS(re, s, n);
345
22.0M
    CLOSE_READER(re, s);
346
22.0M
    av_assert2(tmp < UINT64_C(1) << n);
347
22.0M
    return tmp;
348
22.0M
}
interplayacm.c:get_bits
Line
Count
Source
338
17.3M
{
339
17.3M
    register unsigned int tmp;
340
17.3M
    OPEN_READER(re, s);
341
17.3M
    av_assert2(n>0 && n<=25);
342
17.3M
    UPDATE_CACHE(re, s);
343
17.3M
    tmp = SHOW_UBITS(re, s, n);
344
17.3M
    LAST_SKIP_BITS(re, s, n);
345
17.3M
    CLOSE_READER(re, s);
346
17.3M
    av_assert2(tmp < UINT64_C(1) << n);
347
17.3M
    return tmp;
348
17.3M
}
ylc.c:get_bits
Line
Count
Source
338
7.25M
{
339
7.25M
    register unsigned int tmp;
340
7.25M
    OPEN_READER(re, s);
341
7.25M
    av_assert2(n>0 && n<=25);
342
7.25M
    UPDATE_CACHE(re, s);
343
7.25M
    tmp = SHOW_UBITS(re, s, n);
344
7.25M
    LAST_SKIP_BITS(re, s, n);
345
7.25M
    CLOSE_READER(re, s);
346
7.25M
    av_assert2(tmp < UINT64_C(1) << n);
347
7.25M
    return tmp;
348
7.25M
}
Unexecuted instantiation: ftr.c:get_bits
agm.c:get_bits
Line
Count
Source
338
8.44M
{
339
8.44M
    register unsigned int tmp;
340
8.44M
    OPEN_READER(re, s);
341
8.44M
    av_assert2(n>0 && n<=25);
342
8.44M
    UPDATE_CACHE(re, s);
343
8.44M
    tmp = SHOW_UBITS(re, s, n);
344
8.44M
    LAST_SKIP_BITS(re, s, n);
345
8.44M
    CLOSE_READER(re, s);
346
8.44M
    av_assert2(tmp < UINT64_C(1) << n);
347
8.44M
    return tmp;
348
8.44M
}
Unexecuted instantiation: xan.c:get_bits
svq3.c:get_bits
Line
Count
Source
338
897k
{
339
897k
    register unsigned int tmp;
340
897k
    OPEN_READER(re, s);
341
897k
    av_assert2(n>0 && n<=25);
342
897k
    UPDATE_CACHE(re, s);
343
897k
    tmp = SHOW_UBITS(re, s, n);
344
897k
    LAST_SKIP_BITS(re, s, n);
345
897k
    CLOSE_READER(re, s);
346
897k
    av_assert2(tmp < UINT64_C(1) << n);
347
897k
    return tmp;
348
897k
}
cri.c:get_bits
Line
Count
Source
338
390k
{
339
390k
    register unsigned int tmp;
340
390k
    OPEN_READER(re, s);
341
390k
    av_assert2(n>0 && n<=25);
342
390k
    UPDATE_CACHE(re, s);
343
390k
    tmp = SHOW_UBITS(re, s, n);
344
390k
    LAST_SKIP_BITS(re, s, n);
345
390k
    CLOSE_READER(re, s);
346
390k
    av_assert2(tmp < UINT64_C(1) << n);
347
390k
    return tmp;
348
390k
}
qdm2.c:get_bits
Line
Count
Source
338
1.22M
{
339
1.22M
    register unsigned int tmp;
340
1.22M
    OPEN_READER(re, s);
341
1.22M
    av_assert2(n>0 && n<=25);
342
1.22M
    UPDATE_CACHE(re, s);
343
1.22M
    tmp = SHOW_UBITS(re, s, n);
344
1.22M
    LAST_SKIP_BITS(re, s, n);
345
1.22M
    CLOSE_READER(re, s);
346
1.22M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.22M
    return tmp;
348
1.22M
}
cljrdec.c:get_bits
Line
Count
Source
338
21.5M
{
339
21.5M
    register unsigned int tmp;
340
21.5M
    OPEN_READER(re, s);
341
21.5M
    av_assert2(n>0 && n<=25);
342
21.5M
    UPDATE_CACHE(re, s);
343
21.5M
    tmp = SHOW_UBITS(re, s, n);
344
21.5M
    LAST_SKIP_BITS(re, s, n);
345
21.5M
    CLOSE_READER(re, s);
346
21.5M
    av_assert2(tmp < UINT64_C(1) << n);
347
21.5M
    return tmp;
348
21.5M
}
g728dec.c:get_bits
Line
Count
Source
338
33.6M
{
339
33.6M
    register unsigned int tmp;
340
33.6M
    OPEN_READER(re, s);
341
33.6M
    av_assert2(n>0 && n<=25);
342
33.6M
    UPDATE_CACHE(re, s);
343
33.6M
    tmp = SHOW_UBITS(re, s, n);
344
33.6M
    LAST_SKIP_BITS(re, s, n);
345
33.6M
    CLOSE_READER(re, s);
346
33.6M
    av_assert2(tmp < UINT64_C(1) << n);
347
33.6M
    return tmp;
348
33.6M
}
cook.c:get_bits
Line
Count
Source
338
819k
{
339
819k
    register unsigned int tmp;
340
819k
    OPEN_READER(re, s);
341
819k
    av_assert2(n>0 && n<=25);
342
819k
    UPDATE_CACHE(re, s);
343
819k
    tmp = SHOW_UBITS(re, s, n);
344
819k
    LAST_SKIP_BITS(re, s, n);
345
819k
    CLOSE_READER(re, s);
346
819k
    av_assert2(tmp < UINT64_C(1) << n);
347
819k
    return tmp;
348
819k
}
twinvqdec.c:get_bits
Line
Count
Source
338
14.1M
{
339
14.1M
    register unsigned int tmp;
340
14.1M
    OPEN_READER(re, s);
341
14.1M
    av_assert2(n>0 && n<=25);
342
14.1M
    UPDATE_CACHE(re, s);
343
14.1M
    tmp = SHOW_UBITS(re, s, n);
344
14.1M
    LAST_SKIP_BITS(re, s, n);
345
14.1M
    CLOSE_READER(re, s);
346
14.1M
    av_assert2(tmp < UINT64_C(1) << n);
347
14.1M
    return tmp;
348
14.1M
}
hq_hqa.c:get_bits
Line
Count
Source
338
8.14M
{
339
8.14M
    register unsigned int tmp;
340
8.14M
    OPEN_READER(re, s);
341
8.14M
    av_assert2(n>0 && n<=25);
342
8.14M
    UPDATE_CACHE(re, s);
343
8.14M
    tmp = SHOW_UBITS(re, s, n);
344
8.14M
    LAST_SKIP_BITS(re, s, n);
345
8.14M
    CLOSE_READER(re, s);
346
8.14M
    av_assert2(tmp < UINT64_C(1) << n);
347
8.14M
    return tmp;
348
8.14M
}
Unexecuted instantiation: cdxl.c:get_bits
vble.c:get_bits
Line
Count
Source
338
1.10M
{
339
1.10M
    register unsigned int tmp;
340
1.10M
    OPEN_READER(re, s);
341
1.10M
    av_assert2(n>0 && n<=25);
342
1.10M
    UPDATE_CACHE(re, s);
343
1.10M
    tmp = SHOW_UBITS(re, s, n);
344
1.10M
    LAST_SKIP_BITS(re, s, n);
345
1.10M
    CLOSE_READER(re, s);
346
1.10M
    av_assert2(tmp < UINT64_C(1) << n);
347
1.10M
    return tmp;
348
1.10M
}
mv30.c:get_bits
Line
Count
Source
338
210M
{
339
210M
    register unsigned int tmp;
340
210M
    OPEN_READER(re, s);
341
210M
    av_assert2(n>0 && n<=25);
342
210M
    UPDATE_CACHE(re, s);
343
210M
    tmp = SHOW_UBITS(re, s, n);
344
210M
    LAST_SKIP_BITS(re, s, n);
345
210M
    CLOSE_READER(re, s);
346
210M
    av_assert2(tmp < UINT64_C(1) << n);
347
210M
    return tmp;
348
210M
}
apedec.c:get_bits
Line
Count
Source
338
945k
{
339
945k
    register unsigned int tmp;
340
945k
    OPEN_READER(re, s);
341
945k
    av_assert2(n>0 && n<=25);
342
945k
    UPDATE_CACHE(re, s);
343
945k
    tmp = SHOW_UBITS(re, s, n);
344
945k
    LAST_SKIP_BITS(re, s, n);
345
945k
    CLOSE_READER(re, s);
346
945k
    av_assert2(tmp < UINT64_C(1) << n);
347
945k
    return tmp;
348
945k
}
h261dec.c:get_bits
Line
Count
Source
338
49.8M
{
339
49.8M
    register unsigned int tmp;
340
49.8M
    OPEN_READER(re, s);
341
49.8M
    av_assert2(n>0 && n<=25);
342
49.8M
    UPDATE_CACHE(re, s);
343
49.8M
    tmp = SHOW_UBITS(re, s, n);
344
49.8M
    LAST_SKIP_BITS(re, s, n);
345
49.8M
    CLOSE_READER(re, s);
346
49.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
49.8M
    return tmp;
348
49.8M
}
dstdec.c:get_bits
Line
Count
Source
338
12.8M
{
339
12.8M
    register unsigned int tmp;
340
12.8M
    OPEN_READER(re, s);
341
12.8M
    av_assert2(n>0 && n<=25);
342
12.8M
    UPDATE_CACHE(re, s);
343
12.8M
    tmp = SHOW_UBITS(re, s, n);
344
12.8M
    LAST_SKIP_BITS(re, s, n);
345
12.8M
    CLOSE_READER(re, s);
346
12.8M
    av_assert2(tmp < UINT64_C(1) << n);
347
12.8M
    return tmp;
348
12.8M
}
jpeglsenc.c:get_bits
Line
Count
Source
338
5.92M
{
339
5.92M
    register unsigned int tmp;
340
5.92M
    OPEN_READER(re, s);
341
5.92M
    av_assert2(n>0 && n<=25);
342
5.92M
    UPDATE_CACHE(re, s);
343
5.92M
    tmp = SHOW_UBITS(re, s, n);
344
5.92M
    LAST_SKIP_BITS(re, s, n);
345
5.92M
    CLOSE_READER(re, s);
346
5.92M
    av_assert2(tmp < UINT64_C(1) << n);
347
5.92M
    return tmp;
348
5.92M
}
truemotion2.c:get_bits
Line
Count
Source
338
117k
{
339
117k
    register unsigned int tmp;
340
117k
    OPEN_READER(re, s);
341
117k
    av_assert2(n>0 && n<=25);
342
117k
    UPDATE_CACHE(re, s);
343
117k
    tmp = SHOW_UBITS(re, s, n);
344
117k
    LAST_SKIP_BITS(re, s, n);
345
117k
    CLOSE_READER(re, s);
346
117k
    av_assert2(tmp < UINT64_C(1) << n);
347
117k
    return tmp;
348
117k
}
349
350
/**
351
 * Read 0-25 bits.
352
 */
353
static av_always_inline int get_bitsz(GetBitContext *s, int n)
354
44.6M
{
355
44.6M
    return n ? get_bits(s, n) : 0;
356
44.6M
}
Unexecuted instantiation: mpegvideo_motion.c:get_bitsz
Unexecuted instantiation: wmv2dec.c:get_bitsz
Unexecuted instantiation: aac_adtstoasc.c:get_bitsz
Unexecuted instantiation: dovi_rpu.c:get_bitsz
Unexecuted instantiation: dovi_split.c:get_bitsz
Unexecuted instantiation: dts2pts.c:get_bitsz
Unexecuted instantiation: eac3_core.c:get_bitsz
Unexecuted instantiation: evc_frame_merge.c:get_bitsz
Unexecuted instantiation: extract_extradata.c:get_bitsz
Unexecuted instantiation: h264_metadata.c:get_bitsz
Unexecuted instantiation: h264_redundant_pps.c:get_bitsz
Unexecuted instantiation: h265_metadata.c:get_bitsz
Unexecuted instantiation: h266_metadata.c:get_bitsz
Unexecuted instantiation: lcevc_merge.c:get_bitsz
Unexecuted instantiation: lcevc_metadata.c:get_bitsz
Unexecuted instantiation: remove_extradata.c:get_bitsz
Unexecuted instantiation: truehd_core.c:get_bitsz
Unexecuted instantiation: vp9_raw_reorder.c:get_bitsz
Unexecuted instantiation: vp9_superframe.c:get_bitsz
Unexecuted instantiation: vp9_superframe_split.c:get_bitsz
Unexecuted instantiation: cbs.c:get_bitsz
Unexecuted instantiation: cbs_apv.c:get_bitsz
Unexecuted instantiation: cbs_av1.c:get_bitsz
Unexecuted instantiation: cbs_h264.c:get_bitsz
Unexecuted instantiation: cbs_h2645.c:get_bitsz
Unexecuted instantiation: cbs_h265.c:get_bitsz
Unexecuted instantiation: cbs_h266.c:get_bitsz
Unexecuted instantiation: cbs_lcevc.c:get_bitsz
Unexecuted instantiation: cbs_mpeg2.c:get_bitsz
Unexecuted instantiation: cbs_sei.c:get_bitsz
Unexecuted instantiation: cbs_vp8.c:get_bitsz
Unexecuted instantiation: cbs_vp9.c:get_bitsz
Unexecuted instantiation: dovi_rpudec.c:get_bitsz
Unexecuted instantiation: evc_parse.c:get_bitsz
Unexecuted instantiation: evc_ps.c:get_bitsz
Unexecuted instantiation: h263dec.c:get_bitsz
Unexecuted instantiation: h2645_parse.c:get_bitsz
Unexecuted instantiation: h264_parse.c:get_bitsz
Unexecuted instantiation: h264_ps.c:get_bitsz
Unexecuted instantiation: h264data.c:get_bitsz
Unexecuted instantiation: h265_profile_level.c:get_bitsz
Unexecuted instantiation: ps.c:get_bitsz
Unexecuted instantiation: intelh263dec.c:get_bitsz
Unexecuted instantiation: intrax8.c:get_bitsz
Unexecuted instantiation: ituh263dec.c:get_bitsz
Unexecuted instantiation: mlp_parse.c:get_bitsz
Unexecuted instantiation: mpeg4audio.c:get_bitsz
mpeg4videodec.c:get_bitsz
Line
Count
Source
354
2.51M
{
355
2.51M
    return n ? get_bits(s, n) : 0;
356
2.51M
}
Unexecuted instantiation: mpeg_er.c:get_bitsz
Unexecuted instantiation: mpegvideo_dec.c:get_bitsz
Unexecuted instantiation: msmpeg4dec.c:get_bitsz
Unexecuted instantiation: rv10.c:get_bitsz
Unexecuted instantiation: ac3_parser.c:get_bitsz
Unexecuted instantiation: adts_header.c:get_bitsz
Unexecuted instantiation: av1_parse.c:get_bitsz
Unexecuted instantiation: flvdec.c:get_bitsz
Unexecuted instantiation: h2645_vui.c:get_bitsz
Unexecuted instantiation: vc1_parser.c:get_bitsz
Unexecuted instantiation: vorbis_parser.c:get_bitsz
Unexecuted instantiation: vp9_parser.c:get_bitsz
Unexecuted instantiation: vvc_parser.c:get_bitsz
Unexecuted instantiation: aac_ac3_parser.c:get_bitsz
Unexecuted instantiation: av1_parser.c:get_bitsz
Unexecuted instantiation: avs2_parser.c:get_bitsz
Unexecuted instantiation: avs3_parser.c:get_bitsz
Unexecuted instantiation: cavs_parser.c:get_bitsz
Unexecuted instantiation: dca_parser.c:get_bitsz
Unexecuted instantiation: dolby_e_parser.c:get_bitsz
Unexecuted instantiation: evc_parser.c:get_bitsz
Unexecuted instantiation: ffv1_parser.c:get_bitsz
Unexecuted instantiation: flac_parser.c:get_bitsz
Unexecuted instantiation: ftr_parser.c:get_bitsz
Unexecuted instantiation: h264_parser.c:get_bitsz
Unexecuted instantiation: h264_sei.c:get_bitsz
Unexecuted instantiation: h264idct.c:get_bitsz
parser.c:get_bitsz
Line
Count
Source
354
28.5k
{
355
28.5k
    return n ? get_bits(s, n) : 0;
356
28.5k
}
Unexecuted instantiation: sei.c:get_bitsz
jpegxl_parser.c:get_bitsz
Line
Count
Source
354
575k
{
355
575k
    return n ? get_bits(s, n) : 0;
356
575k
}
Unexecuted instantiation: jpegxs_parser.c:get_bitsz
Unexecuted instantiation: lcevc_parser.c:get_bitsz
Unexecuted instantiation: mlp_parser.c:get_bitsz
Unexecuted instantiation: mpeg4video_parser.c:get_bitsz
Unexecuted instantiation: vc1.c:get_bitsz
Unexecuted instantiation: vc1data.c:get_bitsz
Unexecuted instantiation: dca.c:get_bitsz
Unexecuted instantiation: dca_exss.c:get_bitsz
Unexecuted instantiation: dolby_e_parse.c:get_bitsz
Unexecuted instantiation: ffv1.c:get_bitsz
Unexecuted instantiation: ffv1_parse.c:get_bitsz
Unexecuted instantiation: flac.c:get_bitsz
Unexecuted instantiation: h2645_sei.c:get_bitsz
Unexecuted instantiation: parse.c:get_bitsz
Unexecuted instantiation: jpegxl_parse.c:get_bitsz
Unexecuted instantiation: aom_film_grain.c:get_bitsz
Unexecuted instantiation: dynamic_hdr_vivid.c:get_bitsz
Unexecuted instantiation: hdr_dynamic_metadata.c:get_bitsz
Unexecuted instantiation: av1dec.c:get_bitsz
Unexecuted instantiation: bit.c:get_bitsz
Unexecuted instantiation: dtsdec.c:get_bitsz
Unexecuted instantiation: dtshddec.c:get_bitsz
Unexecuted instantiation: h264dec.c:get_bitsz
Unexecuted instantiation: hls_sample_encryption.c:get_bitsz
Unexecuted instantiation: isom.c:get_bitsz
Unexecuted instantiation: matroskadec.c:get_bitsz
Unexecuted instantiation: mlpdec.c:get_bitsz
Unexecuted instantiation: mov.c:get_bitsz
Unexecuted instantiation: mpc8.c:get_bitsz
Unexecuted instantiation: mpegts.c:get_bitsz
Unexecuted instantiation: oggparsetheora.c:get_bitsz
Unexecuted instantiation: shortendec.c:get_bitsz
Unexecuted instantiation: swfdec.c:get_bitsz
Unexecuted instantiation: takdec.c:get_bitsz
Unexecuted instantiation: iamf_parse.c:get_bitsz
Unexecuted instantiation: dirac.c:get_bitsz
Unexecuted instantiation: atrac9dec.c:get_bitsz
Unexecuted instantiation: enc.c:get_bitsz
Unexecuted instantiation: enc_psy.c:get_bitsz
Unexecuted instantiation: pvq.c:get_bitsz
Unexecuted instantiation: rc.c:get_bitsz
Unexecuted instantiation: celt.c:get_bitsz
Unexecuted instantiation: gsmdec.c:get_bitsz
Unexecuted instantiation: msgsmdec.c:get_bitsz
Unexecuted instantiation: imc.c:get_bitsz
Unexecuted instantiation: adpcm.c:get_bitsz
Unexecuted instantiation: wmaenc.c:get_bitsz
Unexecuted instantiation: wma.c:get_bitsz
Unexecuted instantiation: cfhd.c:get_bitsz
Unexecuted instantiation: wavarc.c:get_bitsz
Unexecuted instantiation: escape130.c:get_bitsz
Unexecuted instantiation: asvdec.c:get_bitsz
Unexecuted instantiation: diracdec.c:get_bitsz
Unexecuted instantiation: dirac_arith.c:get_bitsz
Unexecuted instantiation: wmadec.c:get_bitsz
Unexecuted instantiation: aacenc.c:get_bitsz
Unexecuted instantiation: imm4.c:get_bitsz
Unexecuted instantiation: exr.c:get_bitsz
Unexecuted instantiation: aacdec.c:get_bitsz
Unexecuted instantiation: aacdec_fixed.c:get_bitsz
Unexecuted instantiation: aacdec_float.c:get_bitsz
Unexecuted instantiation: aacdec_tab.c:get_bitsz
Unexecuted instantiation: aacdec_usac.c:get_bitsz
Unexecuted instantiation: aacdec_usac_mps212.c:get_bitsz
Unexecuted instantiation: aacps_common.c:get_bitsz
Unexecuted instantiation: aacsbr.c:get_bitsz
Unexecuted instantiation: aacsbr_fixed.c:get_bitsz
Unexecuted instantiation: aacdec_ac.c:get_bitsz
Unexecuted instantiation: aacdec_lpd.c:get_bitsz
Unexecuted instantiation: aacps_fixed.c:get_bitsz
Unexecuted instantiation: aacps_float.c:get_bitsz
Unexecuted instantiation: mjpegdec.c:get_bitsz
Unexecuted instantiation: mjpegdec_common.c:get_bitsz
Unexecuted instantiation: jpeglsdec.c:get_bitsz
Unexecuted instantiation: jvdec.c:get_bitsz
Unexecuted instantiation: rdt.c:get_bitsz
Unexecuted instantiation: rtpdec_h261.c:get_bitsz
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bitsz
Unexecuted instantiation: rtpdec_latm.c:get_bitsz
Unexecuted instantiation: rtpdec_mpeg4.c:get_bitsz
Unexecuted instantiation: rtpdec_qt.c:get_bitsz
Unexecuted instantiation: h264_cavlc.c:get_bitsz
Unexecuted instantiation: h264_direct.c:get_bitsz
Unexecuted instantiation: h264_mb.c:get_bitsz
Unexecuted instantiation: h264_picture.c:get_bitsz
Unexecuted instantiation: h264_refs.c:get_bitsz
Unexecuted instantiation: h264_slice.c:get_bitsz
Unexecuted instantiation: h264_cabac.c:get_bitsz
Unexecuted instantiation: h264_loopfilter.c:get_bitsz
alsdec.c:get_bitsz
Line
Count
Source
354
5.97M
{
355
5.97M
    return n ? get_bits(s, n) : 0;
356
5.97M
}
Unexecuted instantiation: bgmc.c:get_bitsz
Unexecuted instantiation: mlz.c:get_bitsz
Unexecuted instantiation: bonk.c:get_bitsz
Unexecuted instantiation: mxpegdec.c:get_bitsz
Unexecuted instantiation: rv30.c:get_bitsz
Unexecuted instantiation: rv34.c:get_bitsz
Unexecuted instantiation: indeo3.c:get_bitsz
Unexecuted instantiation: eamad.c:get_bitsz
Unexecuted instantiation: mpeg12.c:get_bitsz
Unexecuted instantiation: g726.c:get_bitsz
Unexecuted instantiation: vc1dec.c:get_bitsz
Unexecuted instantiation: vc1_block.c:get_bitsz
Unexecuted instantiation: vc1_loopfilter.c:get_bitsz
Unexecuted instantiation: vc1_mc.c:get_bitsz
Unexecuted instantiation: vc1_pred.c:get_bitsz
mpegaudiodec_float.c:get_bitsz
Line
Count
Source
354
821k
{
355
821k
    return n ? get_bits(s, n) : 0;
356
821k
}
Unexecuted instantiation: huffyuvdec.c:get_bitsz
speexdec.c:get_bitsz
Line
Count
Source
354
2.87M
{
355
2.87M
    return n ? get_bits(s, n) : 0;
356
2.87M
}
Unexecuted instantiation: atrac3plusdec.c:get_bitsz
Unexecuted instantiation: atrac3plusdsp.c:get_bitsz
atrac3plus.c:get_bitsz
Line
Count
Source
354
197k
{
355
197k
    return n ? get_bits(s, n) : 0;
356
197k
}
Unexecuted instantiation: mss4.c:get_bitsz
Unexecuted instantiation: tiff.c:get_bitsz
Unexecuted instantiation: faxcompr.c:get_bitsz
Unexecuted instantiation: ac3dec_float.c:get_bitsz
Unexecuted instantiation: on2avc.c:get_bitsz
Unexecuted instantiation: smacker.c:get_bitsz
Unexecuted instantiation: dvbsubdec.c:get_bitsz
Unexecuted instantiation: mss1.c:get_bitsz
Unexecuted instantiation: mss12.c:get_bitsz
Unexecuted instantiation: mss2.c:get_bitsz
Unexecuted instantiation: mdec.c:get_bitsz
Unexecuted instantiation: osq.c:get_bitsz
Unexecuted instantiation: vp6.c:get_bitsz
Unexecuted instantiation: vp56.c:get_bitsz
Unexecuted instantiation: vp56data.c:get_bitsz
Unexecuted instantiation: loco.c:get_bitsz
Unexecuted instantiation: vp5.c:get_bitsz
Unexecuted instantiation: ra144dec.c:get_bitsz
Unexecuted instantiation: indeo5.c:get_bitsz
Unexecuted instantiation: ivi.c:get_bitsz
Unexecuted instantiation: ivi_dsp.c:get_bitsz
Unexecuted instantiation: apac.c:get_bitsz
Unexecuted instantiation: clearvideo.c:get_bitsz
Unexecuted instantiation: dxtory.c:get_bitsz
mpegaudiodec_fixed.c:get_bitsz
Line
Count
Source
354
469k
{
355
469k
    return n ? get_bits(s, n) : 0;
356
469k
}
Unexecuted instantiation: ralf.c:get_bitsz
Unexecuted instantiation: pixlet.c:get_bitsz
Unexecuted instantiation: wnv1.c:get_bitsz
Unexecuted instantiation: qoadec.c:get_bitsz
Unexecuted instantiation: vima.c:get_bitsz
Unexecuted instantiation: leaddec.c:get_bitsz
Unexecuted instantiation: eatqi.c:get_bitsz
Unexecuted instantiation: lagarith.c:get_bitsz
Unexecuted instantiation: lagarithrac.c:get_bitsz
Unexecuted instantiation: dss_sp.c:get_bitsz
Unexecuted instantiation: siren.c:get_bitsz
Unexecuted instantiation: cavsdec.c:get_bitsz
Unexecuted instantiation: cavs.c:get_bitsz
Unexecuted instantiation: cavsdata.c:get_bitsz
Unexecuted instantiation: hcom.c:get_bitsz
Unexecuted instantiation: vp3.c:get_bitsz
Unexecuted instantiation: webp.c:get_bitsz
Unexecuted instantiation: eatgv.c:get_bitsz
Unexecuted instantiation: eatgq.c:get_bitsz
Unexecuted instantiation: sga.c:get_bitsz
Unexecuted instantiation: binkaudio.c:get_bitsz
Unexecuted instantiation: mpeg12dec.c:get_bitsz
Unexecuted instantiation: indeo2.c:get_bitsz
Unexecuted instantiation: 4xm.c:get_bitsz
wmalosslessdec.c:get_bitsz
Line
Count
Source
354
81.9k
{
355
81.9k
    return n ? get_bits(s, n) : 0;
356
81.9k
}
Unexecuted instantiation: ilbcdec.c:get_bitsz
hevcdec.c:get_bitsz
Line
Count
Source
354
40.1k
{
355
40.1k
    return n ? get_bits(s, n) : 0;
356
40.1k
}
Unexecuted instantiation: mvs.c:get_bitsz
Unexecuted instantiation: pred.c:get_bitsz
Unexecuted instantiation: refs.c:get_bitsz
Unexecuted instantiation: cabac.c:get_bitsz
Unexecuted instantiation: dsp.c:get_bitsz
Unexecuted instantiation: filter.c:get_bitsz
Unexecuted instantiation: tscc2.c:get_bitsz
Unexecuted instantiation: hqx.c:get_bitsz
Unexecuted instantiation: mobiclip.c:get_bitsz
wmaprodec.c:get_bitsz
Line
Count
Source
354
68.9k
{
355
68.9k
    return n ? get_bits(s, n) : 0;
356
68.9k
}
Unexecuted instantiation: g729dec.c:get_bitsz
Unexecuted instantiation: sipr.c:get_bitsz
Unexecuted instantiation: g722dec.c:get_bitsz
Unexecuted instantiation: nellymoserdec.c:get_bitsz
Unexecuted instantiation: dcaenc.c:get_bitsz
Unexecuted instantiation: dcaadpcm.c:get_bitsz
Unexecuted instantiation: dcadata.c:get_bitsz
Unexecuted instantiation: interplayvideo.c:get_bitsz
Unexecuted instantiation: dec.c:get_bitsz
Unexecuted instantiation: dec_celt.c:get_bitsz
Unexecuted instantiation: silk.c:get_bitsz
Unexecuted instantiation: mjpegbdec.c:get_bitsz
Unexecuted instantiation: bink.c:get_bitsz
Unexecuted instantiation: dvdsubdec.c:get_bitsz
Unexecuted instantiation: rtjpeg.c:get_bitsz
Unexecuted instantiation: truespeech.c:get_bitsz
Unexecuted instantiation: metasound.c:get_bitsz
escape124.c:get_bitsz
Line
Count
Source
354
10.8M
{
355
10.8M
    return n ? get_bits(s, n) : 0;
356
10.8M
}
Unexecuted instantiation: cllc.c:get_bitsz
Unexecuted instantiation: dvdec.c:get_bitsz
Unexecuted instantiation: tta.c:get_bitsz
Unexecuted instantiation: fraps.c:get_bitsz
Unexecuted instantiation: motionpixels.c:get_bitsz
Unexecuted instantiation: vp9.c:get_bitsz
Unexecuted instantiation: vp9block.c:get_bitsz
Unexecuted instantiation: vp9data.c:get_bitsz
Unexecuted instantiation: vp9lpf.c:get_bitsz
Unexecuted instantiation: vp9mvs.c:get_bitsz
Unexecuted instantiation: vp9prob.c:get_bitsz
Unexecuted instantiation: vp9recon.c:get_bitsz
Unexecuted instantiation: ffv1dec.c:get_bitsz
Unexecuted instantiation: intra_utils.c:get_bitsz
Unexecuted instantiation: thread.c:get_bitsz
Unexecuted instantiation: ctu.c:get_bitsz
Unexecuted instantiation: inter.c:get_bitsz
Unexecuted instantiation: intra.c:get_bitsz
Unexecuted instantiation: wmavoice.c:get_bitsz
Unexecuted instantiation: rawdec.c:get_bitsz
Unexecuted instantiation: svq1dec.c:get_bitsz
Unexecuted instantiation: mpc7.c:get_bitsz
Unexecuted instantiation: truemotion2rt.c:get_bitsz
Unexecuted instantiation: adxdec.c:get_bitsz
Unexecuted instantiation: rv40.c:get_bitsz
Unexecuted instantiation: xsubdec.c:get_bitsz
Unexecuted instantiation: notchlc.c:get_bitsz
Unexecuted instantiation: aic.c:get_bitsz
Unexecuted instantiation: vqcdec.c:get_bitsz
Unexecuted instantiation: dolby_e.c:get_bitsz
Unexecuted instantiation: proresdec.c:get_bitsz
Unexecuted instantiation: evrcdec.c:get_bitsz
Unexecuted instantiation: dnxhddec.c:get_bitsz
Unexecuted instantiation: dcadec.c:get_bitsz
Unexecuted instantiation: dca_core.c:get_bitsz
dca_lbr.c:get_bitsz
Line
Count
Source
354
466k
{
355
466k
    return n ? get_bits(s, n) : 0;
356
466k
}
Unexecuted instantiation: dca_xll.c:get_bitsz
Unexecuted instantiation: mlpenc.c:get_bitsz
Unexecuted instantiation: atrac3.c:get_bitsz
Unexecuted instantiation: vorbisdec.c:get_bitsz
Unexecuted instantiation: flashsv.c:get_bitsz
Unexecuted instantiation: wavpack.c:get_bitsz
Unexecuted instantiation: speedhqdec.c:get_bitsz
Unexecuted instantiation: g723_1dec.c:get_bitsz
Unexecuted instantiation: g2meet.c:get_bitsz
Unexecuted instantiation: shorten.c:get_bitsz
Unexecuted instantiation: indeo4.c:get_bitsz
Unexecuted instantiation: sp5xdec.c:get_bitsz
Unexecuted instantiation: atrac1.c:get_bitsz
Unexecuted instantiation: apv_decode.c:get_bitsz
Unexecuted instantiation: apv_entropy.c:get_bitsz
Unexecuted instantiation: avs.c:get_bitsz
Unexecuted instantiation: rv60dec.c:get_bitsz
Unexecuted instantiation: alac.c:get_bitsz
Unexecuted instantiation: tiertexseqv.c:get_bitsz
Unexecuted instantiation: ffv1enc.c:get_bitsz
hcadec.c:get_bitsz
Line
Count
Source
354
15.9M
{
355
15.9M
    return n ? get_bits(s, n) : 0;
356
15.9M
}
Unexecuted instantiation: pcx.c:get_bitsz
Unexecuted instantiation: qcelpdec.c:get_bitsz
Unexecuted instantiation: flacdec.c:get_bitsz
Unexecuted instantiation: ac3dec_fixed.c:get_bitsz
Unexecuted instantiation: midivid.c:get_bitsz
Unexecuted instantiation: mimic.c:get_bitsz
Unexecuted instantiation: fic.c:get_bitsz
qdmc.c:get_bitsz
Line
Count
Source
354
3.76M
{
355
3.76M
    return n ? get_bits(s, n) : 0;
356
3.76M
}
Unexecuted instantiation: ra288.c:get_bitsz
Unexecuted instantiation: interplayacm.c:get_bitsz
Unexecuted instantiation: ylc.c:get_bitsz
Unexecuted instantiation: ftr.c:get_bitsz
Unexecuted instantiation: agm.c:get_bitsz
Unexecuted instantiation: xan.c:get_bitsz
Unexecuted instantiation: svq3.c:get_bitsz
Unexecuted instantiation: cri.c:get_bitsz
Unexecuted instantiation: qdm2.c:get_bitsz
Unexecuted instantiation: cljrdec.c:get_bitsz
Unexecuted instantiation: g728dec.c:get_bitsz
Unexecuted instantiation: cook.c:get_bitsz
Unexecuted instantiation: twinvqdec.c:get_bitsz
Unexecuted instantiation: hq_hqa.c:get_bitsz
Unexecuted instantiation: cdxl.c:get_bitsz
Unexecuted instantiation: vble.c:get_bitsz
Unexecuted instantiation: mv30.c:get_bitsz
Unexecuted instantiation: apedec.c:get_bitsz
Unexecuted instantiation: h261dec.c:get_bitsz
Unexecuted instantiation: dstdec.c:get_bitsz
Unexecuted instantiation: jpeglsenc.c:get_bitsz
Unexecuted instantiation: truemotion2.c:get_bitsz
357
358
static inline unsigned int get_bits_le(GetBitContext *s, int n)
359
2.18G
{
360
2.18G
    register int tmp;
361
2.18G
    OPEN_READER(re, s);
362
2.18G
    av_assert2(n>0 && n<=25);
363
2.18G
    UPDATE_CACHE_LE(re, s);
364
2.18G
    tmp = SHOW_UBITS_LE(re, s, n);
365
2.18G
    LAST_SKIP_BITS(re, s, n);
366
2.18G
    CLOSE_READER(re, s);
367
2.18G
    return tmp;
368
2.18G
}
Unexecuted instantiation: mpegvideo_motion.c:get_bits_le
Unexecuted instantiation: wmv2dec.c:get_bits_le
Unexecuted instantiation: aac_adtstoasc.c:get_bits_le
Unexecuted instantiation: dovi_rpu.c:get_bits_le
Unexecuted instantiation: dovi_split.c:get_bits_le
Unexecuted instantiation: dts2pts.c:get_bits_le
Unexecuted instantiation: eac3_core.c:get_bits_le
Unexecuted instantiation: evc_frame_merge.c:get_bits_le
Unexecuted instantiation: extract_extradata.c:get_bits_le
Unexecuted instantiation: h264_metadata.c:get_bits_le
Unexecuted instantiation: h264_redundant_pps.c:get_bits_le
Unexecuted instantiation: h265_metadata.c:get_bits_le
Unexecuted instantiation: h266_metadata.c:get_bits_le
Unexecuted instantiation: lcevc_merge.c:get_bits_le
Unexecuted instantiation: lcevc_metadata.c:get_bits_le
Unexecuted instantiation: remove_extradata.c:get_bits_le
Unexecuted instantiation: truehd_core.c:get_bits_le
Unexecuted instantiation: vp9_raw_reorder.c:get_bits_le
Unexecuted instantiation: vp9_superframe.c:get_bits_le
Unexecuted instantiation: vp9_superframe_split.c:get_bits_le
Unexecuted instantiation: cbs.c:get_bits_le
Unexecuted instantiation: cbs_apv.c:get_bits_le
Unexecuted instantiation: cbs_av1.c:get_bits_le
Unexecuted instantiation: cbs_h264.c:get_bits_le
Unexecuted instantiation: cbs_h2645.c:get_bits_le
Unexecuted instantiation: cbs_h265.c:get_bits_le
Unexecuted instantiation: cbs_h266.c:get_bits_le
Unexecuted instantiation: cbs_lcevc.c:get_bits_le
Unexecuted instantiation: cbs_mpeg2.c:get_bits_le
Unexecuted instantiation: cbs_sei.c:get_bits_le
cbs_vp8.c:get_bits_le
Line
Count
Source
359
1.54M
{
360
1.54M
    register int tmp;
361
1.54M
    OPEN_READER(re, s);
362
1.54M
    av_assert2(n>0 && n<=25);
363
1.54M
    UPDATE_CACHE_LE(re, s);
364
1.54M
    tmp = SHOW_UBITS_LE(re, s, n);
365
1.54M
    LAST_SKIP_BITS(re, s, n);
366
1.54M
    CLOSE_READER(re, s);
367
1.54M
    return tmp;
368
1.54M
}
Unexecuted instantiation: cbs_vp9.c:get_bits_le
Unexecuted instantiation: dovi_rpudec.c:get_bits_le
Unexecuted instantiation: evc_parse.c:get_bits_le
Unexecuted instantiation: evc_ps.c:get_bits_le
Unexecuted instantiation: h263dec.c:get_bits_le
Unexecuted instantiation: h2645_parse.c:get_bits_le
Unexecuted instantiation: h264_parse.c:get_bits_le
Unexecuted instantiation: h264_ps.c:get_bits_le
Unexecuted instantiation: h264data.c:get_bits_le
Unexecuted instantiation: h265_profile_level.c:get_bits_le
Unexecuted instantiation: ps.c:get_bits_le
Unexecuted instantiation: intelh263dec.c:get_bits_le
Unexecuted instantiation: intrax8.c:get_bits_le
Unexecuted instantiation: ituh263dec.c:get_bits_le
Unexecuted instantiation: mlp_parse.c:get_bits_le
Unexecuted instantiation: mpeg4audio.c:get_bits_le
Unexecuted instantiation: mpeg4videodec.c:get_bits_le
Unexecuted instantiation: mpeg_er.c:get_bits_le
Unexecuted instantiation: mpegvideo_dec.c:get_bits_le
Unexecuted instantiation: msmpeg4dec.c:get_bits_le
Unexecuted instantiation: rv10.c:get_bits_le
Unexecuted instantiation: ac3_parser.c:get_bits_le
Unexecuted instantiation: adts_header.c:get_bits_le
Unexecuted instantiation: av1_parse.c:get_bits_le
Unexecuted instantiation: flvdec.c:get_bits_le
Unexecuted instantiation: h2645_vui.c:get_bits_le
Unexecuted instantiation: vc1_parser.c:get_bits_le
Unexecuted instantiation: vorbis_parser.c:get_bits_le
Unexecuted instantiation: vp9_parser.c:get_bits_le
Unexecuted instantiation: vvc_parser.c:get_bits_le
Unexecuted instantiation: aac_ac3_parser.c:get_bits_le
Unexecuted instantiation: av1_parser.c:get_bits_le
Unexecuted instantiation: avs2_parser.c:get_bits_le
Unexecuted instantiation: avs3_parser.c:get_bits_le
Unexecuted instantiation: cavs_parser.c:get_bits_le
Unexecuted instantiation: dca_parser.c:get_bits_le
Unexecuted instantiation: dolby_e_parser.c:get_bits_le
Unexecuted instantiation: evc_parser.c:get_bits_le
Unexecuted instantiation: ffv1_parser.c:get_bits_le
Unexecuted instantiation: flac_parser.c:get_bits_le
Unexecuted instantiation: ftr_parser.c:get_bits_le
Unexecuted instantiation: h264_parser.c:get_bits_le
Unexecuted instantiation: h264_sei.c:get_bits_le
Unexecuted instantiation: h264idct.c:get_bits_le
Unexecuted instantiation: parser.c:get_bits_le
Unexecuted instantiation: sei.c:get_bits_le
Unexecuted instantiation: jpegxl_parser.c:get_bits_le
Unexecuted instantiation: jpegxs_parser.c:get_bits_le
Unexecuted instantiation: lcevc_parser.c:get_bits_le
Unexecuted instantiation: mlp_parser.c:get_bits_le
Unexecuted instantiation: mpeg4video_parser.c:get_bits_le
Unexecuted instantiation: vc1.c:get_bits_le
Unexecuted instantiation: vc1data.c:get_bits_le
Unexecuted instantiation: dca.c:get_bits_le
Unexecuted instantiation: dca_exss.c:get_bits_le
Unexecuted instantiation: dolby_e_parse.c:get_bits_le
Unexecuted instantiation: ffv1.c:get_bits_le
Unexecuted instantiation: ffv1_parse.c:get_bits_le
Unexecuted instantiation: flac.c:get_bits_le
Unexecuted instantiation: h2645_sei.c:get_bits_le
Unexecuted instantiation: parse.c:get_bits_le
Unexecuted instantiation: jpegxl_parse.c:get_bits_le
Unexecuted instantiation: aom_film_grain.c:get_bits_le
Unexecuted instantiation: dynamic_hdr_vivid.c:get_bits_le
Unexecuted instantiation: hdr_dynamic_metadata.c:get_bits_le
Unexecuted instantiation: av1dec.c:get_bits_le
Unexecuted instantiation: bit.c:get_bits_le
Unexecuted instantiation: dtsdec.c:get_bits_le
Unexecuted instantiation: dtshddec.c:get_bits_le
Unexecuted instantiation: h264dec.c:get_bits_le
Unexecuted instantiation: hls_sample_encryption.c:get_bits_le
Unexecuted instantiation: isom.c:get_bits_le
Unexecuted instantiation: matroskadec.c:get_bits_le
Unexecuted instantiation: mlpdec.c:get_bits_le
Unexecuted instantiation: mov.c:get_bits_le
Unexecuted instantiation: mpc8.c:get_bits_le
Unexecuted instantiation: mpegts.c:get_bits_le
Unexecuted instantiation: oggparsetheora.c:get_bits_le
Unexecuted instantiation: shortendec.c:get_bits_le
Unexecuted instantiation: swfdec.c:get_bits_le
Unexecuted instantiation: takdec.c:get_bits_le
Unexecuted instantiation: iamf_parse.c:get_bits_le
Unexecuted instantiation: dirac.c:get_bits_le
Unexecuted instantiation: atrac9dec.c:get_bits_le
Unexecuted instantiation: enc.c:get_bits_le
Unexecuted instantiation: enc_psy.c:get_bits_le
Unexecuted instantiation: pvq.c:get_bits_le
Unexecuted instantiation: rc.c:get_bits_le
Unexecuted instantiation: celt.c:get_bits_le
Unexecuted instantiation: gsmdec.c:get_bits_le
Unexecuted instantiation: msgsmdec.c:get_bits_le
Unexecuted instantiation: imc.c:get_bits_le
adpcm.c:get_bits_le
Line
Count
Source
359
1.50G
{
360
1.50G
    register int tmp;
361
1.50G
    OPEN_READER(re, s);
362
1.50G
    av_assert2(n>0 && n<=25);
363
1.50G
    UPDATE_CACHE_LE(re, s);
364
1.50G
    tmp = SHOW_UBITS_LE(re, s, n);
365
1.50G
    LAST_SKIP_BITS(re, s, n);
366
1.50G
    CLOSE_READER(re, s);
367
1.50G
    return tmp;
368
1.50G
}
Unexecuted instantiation: wmaenc.c:get_bits_le
Unexecuted instantiation: wma.c:get_bits_le
Unexecuted instantiation: cfhd.c:get_bits_le
Unexecuted instantiation: wavarc.c:get_bits_le
Unexecuted instantiation: escape130.c:get_bits_le
asvdec.c:get_bits_le
Line
Count
Source
359
95.9M
{
360
95.9M
    register int tmp;
361
95.9M
    OPEN_READER(re, s);
362
95.9M
    av_assert2(n>0 && n<=25);
363
95.9M
    UPDATE_CACHE_LE(re, s);
364
95.9M
    tmp = SHOW_UBITS_LE(re, s, n);
365
95.9M
    LAST_SKIP_BITS(re, s, n);
366
95.9M
    CLOSE_READER(re, s);
367
95.9M
    return tmp;
368
95.9M
}
Unexecuted instantiation: diracdec.c:get_bits_le
Unexecuted instantiation: dirac_arith.c:get_bits_le
Unexecuted instantiation: wmadec.c:get_bits_le
Unexecuted instantiation: aacenc.c:get_bits_le
Unexecuted instantiation: imm4.c:get_bits_le
Unexecuted instantiation: exr.c:get_bits_le
Unexecuted instantiation: aacdec.c:get_bits_le
Unexecuted instantiation: aacdec_fixed.c:get_bits_le
Unexecuted instantiation: aacdec_float.c:get_bits_le
Unexecuted instantiation: aacdec_tab.c:get_bits_le
Unexecuted instantiation: aacdec_usac.c:get_bits_le
Unexecuted instantiation: aacdec_usac_mps212.c:get_bits_le
Unexecuted instantiation: aacps_common.c:get_bits_le
Unexecuted instantiation: aacsbr.c:get_bits_le
Unexecuted instantiation: aacsbr_fixed.c:get_bits_le
Unexecuted instantiation: aacdec_ac.c:get_bits_le
Unexecuted instantiation: aacdec_lpd.c:get_bits_le
Unexecuted instantiation: aacps_fixed.c:get_bits_le
Unexecuted instantiation: aacps_float.c:get_bits_le
Unexecuted instantiation: mjpegdec.c:get_bits_le
Unexecuted instantiation: mjpegdec_common.c:get_bits_le
Unexecuted instantiation: jpeglsdec.c:get_bits_le
Unexecuted instantiation: jvdec.c:get_bits_le
Unexecuted instantiation: rdt.c:get_bits_le
Unexecuted instantiation: rtpdec_h261.c:get_bits_le
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bits_le
Unexecuted instantiation: rtpdec_latm.c:get_bits_le
Unexecuted instantiation: rtpdec_mpeg4.c:get_bits_le
Unexecuted instantiation: rtpdec_qt.c:get_bits_le
Unexecuted instantiation: h264_cavlc.c:get_bits_le
Unexecuted instantiation: h264_direct.c:get_bits_le
Unexecuted instantiation: h264_mb.c:get_bits_le
Unexecuted instantiation: h264_picture.c:get_bits_le
Unexecuted instantiation: h264_refs.c:get_bits_le
Unexecuted instantiation: h264_slice.c:get_bits_le
Unexecuted instantiation: h264_cabac.c:get_bits_le
Unexecuted instantiation: h264_loopfilter.c:get_bits_le
Unexecuted instantiation: alsdec.c:get_bits_le
Unexecuted instantiation: bgmc.c:get_bits_le
Unexecuted instantiation: mlz.c:get_bits_le
Unexecuted instantiation: bonk.c:get_bits_le
Unexecuted instantiation: mxpegdec.c:get_bits_le
Unexecuted instantiation: rv30.c:get_bits_le
Unexecuted instantiation: rv34.c:get_bits_le
Unexecuted instantiation: indeo3.c:get_bits_le
Unexecuted instantiation: eamad.c:get_bits_le
Unexecuted instantiation: mpeg12.c:get_bits_le
g726.c:get_bits_le
Line
Count
Source
359
42.1M
{
360
42.1M
    register int tmp;
361
42.1M
    OPEN_READER(re, s);
362
42.1M
    av_assert2(n>0 && n<=25);
363
42.1M
    UPDATE_CACHE_LE(re, s);
364
42.1M
    tmp = SHOW_UBITS_LE(re, s, n);
365
42.1M
    LAST_SKIP_BITS(re, s, n);
366
42.1M
    CLOSE_READER(re, s);
367
42.1M
    return tmp;
368
42.1M
}
Unexecuted instantiation: vc1dec.c:get_bits_le
Unexecuted instantiation: vc1_block.c:get_bits_le
Unexecuted instantiation: vc1_loopfilter.c:get_bits_le
Unexecuted instantiation: vc1_mc.c:get_bits_le
Unexecuted instantiation: vc1_pred.c:get_bits_le
Unexecuted instantiation: mpegaudiodec_float.c:get_bits_le
Unexecuted instantiation: huffyuvdec.c:get_bits_le
Unexecuted instantiation: speexdec.c:get_bits_le
Unexecuted instantiation: atrac3plusdec.c:get_bits_le
Unexecuted instantiation: atrac3plusdsp.c:get_bits_le
Unexecuted instantiation: atrac3plus.c:get_bits_le
Unexecuted instantiation: mss4.c:get_bits_le
Unexecuted instantiation: tiff.c:get_bits_le
Unexecuted instantiation: faxcompr.c:get_bits_le
Unexecuted instantiation: ac3dec_float.c:get_bits_le
Unexecuted instantiation: on2avc.c:get_bits_le
Unexecuted instantiation: smacker.c:get_bits_le
Unexecuted instantiation: dvbsubdec.c:get_bits_le
Unexecuted instantiation: mss1.c:get_bits_le
Unexecuted instantiation: mss12.c:get_bits_le
Unexecuted instantiation: mss2.c:get_bits_le
Unexecuted instantiation: mdec.c:get_bits_le
Unexecuted instantiation: osq.c:get_bits_le
Unexecuted instantiation: vp6.c:get_bits_le
Unexecuted instantiation: vp56.c:get_bits_le
Unexecuted instantiation: vp56data.c:get_bits_le
Unexecuted instantiation: loco.c:get_bits_le
Unexecuted instantiation: vp5.c:get_bits_le
Unexecuted instantiation: ra144dec.c:get_bits_le
Unexecuted instantiation: indeo5.c:get_bits_le
Unexecuted instantiation: ivi.c:get_bits_le
Unexecuted instantiation: ivi_dsp.c:get_bits_le
Unexecuted instantiation: apac.c:get_bits_le
Unexecuted instantiation: clearvideo.c:get_bits_le
Unexecuted instantiation: dxtory.c:get_bits_le
Unexecuted instantiation: mpegaudiodec_fixed.c:get_bits_le
Unexecuted instantiation: ralf.c:get_bits_le
Unexecuted instantiation: pixlet.c:get_bits_le
Unexecuted instantiation: wnv1.c:get_bits_le
Unexecuted instantiation: qoadec.c:get_bits_le
Unexecuted instantiation: vima.c:get_bits_le
Unexecuted instantiation: leaddec.c:get_bits_le
Unexecuted instantiation: eatqi.c:get_bits_le
Unexecuted instantiation: lagarith.c:get_bits_le
Unexecuted instantiation: lagarithrac.c:get_bits_le
Unexecuted instantiation: dss_sp.c:get_bits_le
Unexecuted instantiation: siren.c:get_bits_le
Unexecuted instantiation: cavsdec.c:get_bits_le
Unexecuted instantiation: cavs.c:get_bits_le
Unexecuted instantiation: cavsdata.c:get_bits_le
Unexecuted instantiation: hcom.c:get_bits_le
Unexecuted instantiation: vp3.c:get_bits_le
Unexecuted instantiation: webp.c:get_bits_le
Unexecuted instantiation: eatgv.c:get_bits_le
Unexecuted instantiation: eatgq.c:get_bits_le
Unexecuted instantiation: sga.c:get_bits_le
Unexecuted instantiation: binkaudio.c:get_bits_le
Unexecuted instantiation: mpeg12dec.c:get_bits_le
Unexecuted instantiation: indeo2.c:get_bits_le
Unexecuted instantiation: 4xm.c:get_bits_le
Unexecuted instantiation: wmalosslessdec.c:get_bits_le
Unexecuted instantiation: ilbcdec.c:get_bits_le
Unexecuted instantiation: hevcdec.c:get_bits_le
Unexecuted instantiation: mvs.c:get_bits_le
Unexecuted instantiation: pred.c:get_bits_le
Unexecuted instantiation: refs.c:get_bits_le
Unexecuted instantiation: cabac.c:get_bits_le
Unexecuted instantiation: dsp.c:get_bits_le
Unexecuted instantiation: filter.c:get_bits_le
Unexecuted instantiation: tscc2.c:get_bits_le
Unexecuted instantiation: hqx.c:get_bits_le
Unexecuted instantiation: mobiclip.c:get_bits_le
Unexecuted instantiation: wmaprodec.c:get_bits_le
Unexecuted instantiation: g729dec.c:get_bits_le
Unexecuted instantiation: sipr.c:get_bits_le
Unexecuted instantiation: g722dec.c:get_bits_le
Unexecuted instantiation: nellymoserdec.c:get_bits_le
Unexecuted instantiation: dcaenc.c:get_bits_le
Unexecuted instantiation: dcaadpcm.c:get_bits_le
Unexecuted instantiation: dcadata.c:get_bits_le
Unexecuted instantiation: interplayvideo.c:get_bits_le
Unexecuted instantiation: dec.c:get_bits_le
Unexecuted instantiation: dec_celt.c:get_bits_le
Unexecuted instantiation: silk.c:get_bits_le
Unexecuted instantiation: mjpegbdec.c:get_bits_le
Unexecuted instantiation: bink.c:get_bits_le
Unexecuted instantiation: dvdsubdec.c:get_bits_le
Unexecuted instantiation: rtjpeg.c:get_bits_le
Unexecuted instantiation: truespeech.c:get_bits_le
Unexecuted instantiation: metasound.c:get_bits_le
Unexecuted instantiation: escape124.c:get_bits_le
Unexecuted instantiation: cllc.c:get_bits_le
Unexecuted instantiation: dvdec.c:get_bits_le
Unexecuted instantiation: tta.c:get_bits_le
Unexecuted instantiation: fraps.c:get_bits_le
Unexecuted instantiation: motionpixels.c:get_bits_le
Unexecuted instantiation: vp9.c:get_bits_le
Unexecuted instantiation: vp9block.c:get_bits_le
Unexecuted instantiation: vp9data.c:get_bits_le
Unexecuted instantiation: vp9lpf.c:get_bits_le
Unexecuted instantiation: vp9mvs.c:get_bits_le
Unexecuted instantiation: vp9prob.c:get_bits_le
Unexecuted instantiation: vp9recon.c:get_bits_le
Unexecuted instantiation: ffv1dec.c:get_bits_le
Unexecuted instantiation: intra_utils.c:get_bits_le
Unexecuted instantiation: thread.c:get_bits_le
Unexecuted instantiation: ctu.c:get_bits_le
Unexecuted instantiation: inter.c:get_bits_le
Unexecuted instantiation: intra.c:get_bits_le
Unexecuted instantiation: wmavoice.c:get_bits_le
Unexecuted instantiation: rawdec.c:get_bits_le
Unexecuted instantiation: svq1dec.c:get_bits_le
Unexecuted instantiation: mpc7.c:get_bits_le
Unexecuted instantiation: truemotion2rt.c:get_bits_le
Unexecuted instantiation: adxdec.c:get_bits_le
Unexecuted instantiation: rv40.c:get_bits_le
Unexecuted instantiation: xsubdec.c:get_bits_le
Unexecuted instantiation: notchlc.c:get_bits_le
Unexecuted instantiation: aic.c:get_bits_le
Unexecuted instantiation: vqcdec.c:get_bits_le
Unexecuted instantiation: dolby_e.c:get_bits_le
Unexecuted instantiation: proresdec.c:get_bits_le
Unexecuted instantiation: evrcdec.c:get_bits_le
Unexecuted instantiation: dnxhddec.c:get_bits_le
Unexecuted instantiation: dcadec.c:get_bits_le
Unexecuted instantiation: dca_core.c:get_bits_le
Unexecuted instantiation: dca_lbr.c:get_bits_le
Unexecuted instantiation: dca_xll.c:get_bits_le
Unexecuted instantiation: mlpenc.c:get_bits_le
Unexecuted instantiation: atrac3.c:get_bits_le
Unexecuted instantiation: vorbisdec.c:get_bits_le
Unexecuted instantiation: flashsv.c:get_bits_le
Unexecuted instantiation: wavpack.c:get_bits_le
Unexecuted instantiation: speedhqdec.c:get_bits_le
Unexecuted instantiation: g723_1dec.c:get_bits_le
Unexecuted instantiation: g2meet.c:get_bits_le
Unexecuted instantiation: shorten.c:get_bits_le
Unexecuted instantiation: indeo4.c:get_bits_le
Unexecuted instantiation: sp5xdec.c:get_bits_le
Unexecuted instantiation: atrac1.c:get_bits_le
Unexecuted instantiation: apv_decode.c:get_bits_le
Unexecuted instantiation: apv_entropy.c:get_bits_le
Unexecuted instantiation: avs.c:get_bits_le
Unexecuted instantiation: rv60dec.c:get_bits_le
Unexecuted instantiation: alac.c:get_bits_le
Unexecuted instantiation: tiertexseqv.c:get_bits_le
Unexecuted instantiation: ffv1enc.c:get_bits_le
Unexecuted instantiation: hcadec.c:get_bits_le
Unexecuted instantiation: pcx.c:get_bits_le
Unexecuted instantiation: qcelpdec.c:get_bits_le
Unexecuted instantiation: flacdec.c:get_bits_le
Unexecuted instantiation: ac3dec_fixed.c:get_bits_le
Unexecuted instantiation: midivid.c:get_bits_le
Unexecuted instantiation: mimic.c:get_bits_le
Unexecuted instantiation: fic.c:get_bits_le
Unexecuted instantiation: qdmc.c:get_bits_le
Unexecuted instantiation: ra288.c:get_bits_le
Unexecuted instantiation: interplayacm.c:get_bits_le
Unexecuted instantiation: ylc.c:get_bits_le
Unexecuted instantiation: ftr.c:get_bits_le
Unexecuted instantiation: agm.c:get_bits_le
Unexecuted instantiation: xan.c:get_bits_le
Unexecuted instantiation: svq3.c:get_bits_le
Unexecuted instantiation: cri.c:get_bits_le
Unexecuted instantiation: qdm2.c:get_bits_le
Unexecuted instantiation: cljrdec.c:get_bits_le
Unexecuted instantiation: g728dec.c:get_bits_le
Unexecuted instantiation: cook.c:get_bits_le
Unexecuted instantiation: twinvqdec.c:get_bits_le
Unexecuted instantiation: hq_hqa.c:get_bits_le
Unexecuted instantiation: cdxl.c:get_bits_le
Unexecuted instantiation: vble.c:get_bits_le
mv30.c:get_bits_le
Line
Count
Source
359
548M
{
360
548M
    register int tmp;
361
548M
    OPEN_READER(re, s);
362
548M
    av_assert2(n>0 && n<=25);
363
548M
    UPDATE_CACHE_LE(re, s);
364
548M
    tmp = SHOW_UBITS_LE(re, s, n);
365
548M
    LAST_SKIP_BITS(re, s, n);
366
548M
    CLOSE_READER(re, s);
367
548M
    return tmp;
368
548M
}
Unexecuted instantiation: apedec.c:get_bits_le
Unexecuted instantiation: h261dec.c:get_bits_le
Unexecuted instantiation: dstdec.c:get_bits_le
Unexecuted instantiation: jpeglsenc.c:get_bits_le
Unexecuted instantiation: truemotion2.c:get_bits_le
369
370
/**
371
 * Show 1-25 bits.
372
 */
373
static inline unsigned int show_bits(GetBitContext *s, int n)
374
799M
{
375
799M
    register unsigned int tmp;
376
799M
    OPEN_READER_NOSIZE(re, s);
377
799M
    av_assert2(n>0 && n<=25);
378
799M
    UPDATE_CACHE(re, s);
379
799M
    tmp = SHOW_UBITS(re, s, n);
380
799M
    return tmp;
381
799M
}
Unexecuted instantiation: mpegvideo_motion.c:show_bits
wmv2dec.c:show_bits
Line
Count
Source
374
30.6k
{
375
30.6k
    register unsigned int tmp;
376
30.6k
    OPEN_READER_NOSIZE(re, s);
377
30.6k
    av_assert2(n>0 && n<=25);
378
30.6k
    UPDATE_CACHE(re, s);
379
30.6k
    tmp = SHOW_UBITS(re, s, n);
380
30.6k
    return tmp;
381
30.6k
}
Unexecuted instantiation: aac_adtstoasc.c:show_bits
Unexecuted instantiation: dovi_rpu.c:show_bits
Unexecuted instantiation: dovi_split.c:show_bits
Unexecuted instantiation: dts2pts.c:show_bits
Unexecuted instantiation: eac3_core.c:show_bits
Unexecuted instantiation: evc_frame_merge.c:show_bits
Unexecuted instantiation: extract_extradata.c:show_bits
Unexecuted instantiation: h264_metadata.c:show_bits
Unexecuted instantiation: h264_redundant_pps.c:show_bits
Unexecuted instantiation: h265_metadata.c:show_bits
Unexecuted instantiation: h266_metadata.c:show_bits
Unexecuted instantiation: lcevc_merge.c:show_bits
Unexecuted instantiation: lcevc_metadata.c:show_bits
Unexecuted instantiation: remove_extradata.c:show_bits
Unexecuted instantiation: truehd_core.c:show_bits
Unexecuted instantiation: vp9_raw_reorder.c:show_bits
Unexecuted instantiation: vp9_superframe.c:show_bits
Unexecuted instantiation: vp9_superframe_split.c:show_bits
Unexecuted instantiation: cbs.c:show_bits
cbs_apv.c:show_bits
Line
Count
Source
374
233k
{
375
233k
    register unsigned int tmp;
376
233k
    OPEN_READER_NOSIZE(re, s);
377
233k
    av_assert2(n>0 && n<=25);
378
233k
    UPDATE_CACHE(re, s);
379
233k
    tmp = SHOW_UBITS(re, s, n);
380
233k
    return tmp;
381
233k
}
Unexecuted instantiation: cbs_av1.c:show_bits
cbs_h264.c:show_bits
Line
Count
Source
374
125k
{
375
125k
    register unsigned int tmp;
376
125k
    OPEN_READER_NOSIZE(re, s);
377
125k
    av_assert2(n>0 && n<=25);
378
125k
    UPDATE_CACHE(re, s);
379
125k
    tmp = SHOW_UBITS(re, s, n);
380
125k
    return tmp;
381
125k
}
cbs_h2645.c:show_bits
Line
Count
Source
374
13.5M
{
375
13.5M
    register unsigned int tmp;
376
13.5M
    OPEN_READER_NOSIZE(re, s);
377
13.5M
    av_assert2(n>0 && n<=25);
378
13.5M
    UPDATE_CACHE(re, s);
379
13.5M
    tmp = SHOW_UBITS(re, s, n);
380
13.5M
    return tmp;
381
13.5M
}
cbs_h265.c:show_bits
Line
Count
Source
374
24.7k
{
375
24.7k
    register unsigned int tmp;
376
24.7k
    OPEN_READER_NOSIZE(re, s);
377
24.7k
    av_assert2(n>0 && n<=25);
378
24.7k
    UPDATE_CACHE(re, s);
379
24.7k
    tmp = SHOW_UBITS(re, s, n);
380
24.7k
    return tmp;
381
24.7k
}
Unexecuted instantiation: cbs_h266.c:show_bits
cbs_lcevc.c:show_bits
Line
Count
Source
374
260k
{
375
260k
    register unsigned int tmp;
376
260k
    OPEN_READER_NOSIZE(re, s);
377
260k
    av_assert2(n>0 && n<=25);
378
260k
    UPDATE_CACHE(re, s);
379
260k
    tmp = SHOW_UBITS(re, s, n);
380
260k
    return tmp;
381
260k
}
cbs_mpeg2.c:show_bits
Line
Count
Source
374
7.14M
{
375
7.14M
    register unsigned int tmp;
376
7.14M
    OPEN_READER_NOSIZE(re, s);
377
7.14M
    av_assert2(n>0 && n<=25);
378
7.14M
    UPDATE_CACHE(re, s);
379
7.14M
    tmp = SHOW_UBITS(re, s, n);
380
7.14M
    return tmp;
381
7.14M
}
cbs_sei.c:show_bits
Line
Count
Source
374
115M
{
375
115M
    register unsigned int tmp;
376
115M
    OPEN_READER_NOSIZE(re, s);
377
115M
    av_assert2(n>0 && n<=25);
378
115M
    UPDATE_CACHE(re, s);
379
115M
    tmp = SHOW_UBITS(re, s, n);
380
115M
    return tmp;
381
115M
}
Unexecuted instantiation: cbs_vp8.c:show_bits
Unexecuted instantiation: cbs_vp9.c:show_bits
Unexecuted instantiation: dovi_rpudec.c:show_bits
Unexecuted instantiation: evc_parse.c:show_bits
Unexecuted instantiation: evc_ps.c:show_bits
h263dec.c:show_bits
Line
Count
Source
374
30.0k
{
375
30.0k
    register unsigned int tmp;
376
30.0k
    OPEN_READER_NOSIZE(re, s);
377
30.0k
    av_assert2(n>0 && n<=25);
378
30.0k
    UPDATE_CACHE(re, s);
379
30.0k
    tmp = SHOW_UBITS(re, s, n);
380
30.0k
    return tmp;
381
30.0k
}
Unexecuted instantiation: h2645_parse.c:show_bits
Unexecuted instantiation: h264_parse.c:show_bits
h264_ps.c:show_bits
Line
Count
Source
374
1.51M
{
375
1.51M
    register unsigned int tmp;
376
1.51M
    OPEN_READER_NOSIZE(re, s);
377
1.51M
    av_assert2(n>0 && n<=25);
378
1.51M
    UPDATE_CACHE(re, s);
379
1.51M
    tmp = SHOW_UBITS(re, s, n);
380
1.51M
    return tmp;
381
1.51M
}
Unexecuted instantiation: h264data.c:show_bits
Unexecuted instantiation: h265_profile_level.c:show_bits
ps.c:show_bits
Line
Count
Source
374
1.38M
{
375
1.38M
    register unsigned int tmp;
376
1.38M
    OPEN_READER_NOSIZE(re, s);
377
1.38M
    av_assert2(n>0 && n<=25);
378
1.38M
    UPDATE_CACHE(re, s);
379
1.38M
    tmp = SHOW_UBITS(re, s, n);
380
1.38M
    return tmp;
381
1.38M
}
Unexecuted instantiation: intelh263dec.c:show_bits
Unexecuted instantiation: intrax8.c:show_bits
ituh263dec.c:show_bits
Line
Count
Source
374
63.4M
{
375
63.4M
    register unsigned int tmp;
376
63.4M
    OPEN_READER_NOSIZE(re, s);
377
63.4M
    av_assert2(n>0 && n<=25);
378
63.4M
    UPDATE_CACHE(re, s);
379
63.4M
    tmp = SHOW_UBITS(re, s, n);
380
63.4M
    return tmp;
381
63.4M
}
Unexecuted instantiation: mlp_parse.c:show_bits
mpeg4audio.c:show_bits
Line
Count
Source
374
130M
{
375
130M
    register unsigned int tmp;
376
130M
    OPEN_READER_NOSIZE(re, s);
377
130M
    av_assert2(n>0 && n<=25);
378
130M
    UPDATE_CACHE(re, s);
379
130M
    tmp = SHOW_UBITS(re, s, n);
380
130M
    return tmp;
381
130M
}
mpeg4videodec.c:show_bits
Line
Count
Source
374
10.4M
{
375
10.4M
    register unsigned int tmp;
376
10.4M
    OPEN_READER_NOSIZE(re, s);
377
10.4M
    av_assert2(n>0 && n<=25);
378
10.4M
    UPDATE_CACHE(re, s);
379
10.4M
    tmp = SHOW_UBITS(re, s, n);
380
10.4M
    return tmp;
381
10.4M
}
Unexecuted instantiation: mpeg_er.c:show_bits
Unexecuted instantiation: mpegvideo_dec.c:show_bits
Unexecuted instantiation: msmpeg4dec.c:show_bits
rv10.c:show_bits
Line
Count
Source
374
2.90M
{
375
2.90M
    register unsigned int tmp;
376
2.90M
    OPEN_READER_NOSIZE(re, s);
377
2.90M
    av_assert2(n>0 && n<=25);
378
2.90M
    UPDATE_CACHE(re, s);
379
2.90M
    tmp = SHOW_UBITS(re, s, n);
380
2.90M
    return tmp;
381
2.90M
}
Unexecuted instantiation: ac3_parser.c:show_bits
Unexecuted instantiation: adts_header.c:show_bits
Unexecuted instantiation: av1_parse.c:show_bits
Unexecuted instantiation: flvdec.c:show_bits
Unexecuted instantiation: h2645_vui.c:show_bits
Unexecuted instantiation: vc1_parser.c:show_bits
Unexecuted instantiation: vorbis_parser.c:show_bits
Unexecuted instantiation: vp9_parser.c:show_bits
Unexecuted instantiation: vvc_parser.c:show_bits
Unexecuted instantiation: aac_ac3_parser.c:show_bits
Unexecuted instantiation: av1_parser.c:show_bits
Unexecuted instantiation: avs2_parser.c:show_bits
Unexecuted instantiation: avs3_parser.c:show_bits
Unexecuted instantiation: cavs_parser.c:show_bits
Unexecuted instantiation: dca_parser.c:show_bits
Unexecuted instantiation: dolby_e_parser.c:show_bits
Unexecuted instantiation: evc_parser.c:show_bits
Unexecuted instantiation: ffv1_parser.c:show_bits
Unexecuted instantiation: flac_parser.c:show_bits
Unexecuted instantiation: ftr_parser.c:show_bits
Unexecuted instantiation: h264_parser.c:show_bits
Unexecuted instantiation: h264_sei.c:show_bits
Unexecuted instantiation: h264idct.c:show_bits
Unexecuted instantiation: parser.c:show_bits
Unexecuted instantiation: sei.c:show_bits
Unexecuted instantiation: jpegxl_parser.c:show_bits
Unexecuted instantiation: jpegxs_parser.c:show_bits
Unexecuted instantiation: lcevc_parser.c:show_bits
Unexecuted instantiation: mlp_parser.c:show_bits
Unexecuted instantiation: mpeg4video_parser.c:show_bits
Unexecuted instantiation: vc1.c:show_bits
Unexecuted instantiation: vc1data.c:show_bits
Unexecuted instantiation: dca.c:show_bits
Unexecuted instantiation: dca_exss.c:show_bits
Unexecuted instantiation: dolby_e_parse.c:show_bits
Unexecuted instantiation: ffv1.c:show_bits
Unexecuted instantiation: ffv1_parse.c:show_bits
Unexecuted instantiation: flac.c:show_bits
Unexecuted instantiation: h2645_sei.c:show_bits
Unexecuted instantiation: parse.c:show_bits
Unexecuted instantiation: jpegxl_parse.c:show_bits
Unexecuted instantiation: aom_film_grain.c:show_bits
Unexecuted instantiation: dynamic_hdr_vivid.c:show_bits
Unexecuted instantiation: hdr_dynamic_metadata.c:show_bits
Unexecuted instantiation: av1dec.c:show_bits
Unexecuted instantiation: bit.c:show_bits
Unexecuted instantiation: dtsdec.c:show_bits
Unexecuted instantiation: dtshddec.c:show_bits
Unexecuted instantiation: h264dec.c:show_bits
Unexecuted instantiation: hls_sample_encryption.c:show_bits
Unexecuted instantiation: isom.c:show_bits
Unexecuted instantiation: matroskadec.c:show_bits
Unexecuted instantiation: mlpdec.c:show_bits
Unexecuted instantiation: mov.c:show_bits
Unexecuted instantiation: mpc8.c:show_bits
Unexecuted instantiation: mpegts.c:show_bits
Unexecuted instantiation: oggparsetheora.c:show_bits
Unexecuted instantiation: shortendec.c:show_bits
Unexecuted instantiation: swfdec.c:show_bits
Unexecuted instantiation: takdec.c:show_bits
Unexecuted instantiation: iamf_parse.c:show_bits
Unexecuted instantiation: dirac.c:show_bits
Unexecuted instantiation: atrac9dec.c:show_bits
Unexecuted instantiation: enc.c:show_bits
Unexecuted instantiation: enc_psy.c:show_bits
Unexecuted instantiation: pvq.c:show_bits
Unexecuted instantiation: rc.c:show_bits
Unexecuted instantiation: celt.c:show_bits
Unexecuted instantiation: gsmdec.c:show_bits
Unexecuted instantiation: msgsmdec.c:show_bits
Unexecuted instantiation: imc.c:show_bits
Unexecuted instantiation: adpcm.c:show_bits
Unexecuted instantiation: wmaenc.c:show_bits
Unexecuted instantiation: wma.c:show_bits
Unexecuted instantiation: cfhd.c:show_bits
Unexecuted instantiation: wavarc.c:show_bits
Unexecuted instantiation: escape130.c:show_bits
Unexecuted instantiation: asvdec.c:show_bits
Unexecuted instantiation: diracdec.c:show_bits
Unexecuted instantiation: dirac_arith.c:show_bits
Unexecuted instantiation: wmadec.c:show_bits
Unexecuted instantiation: aacenc.c:show_bits
Unexecuted instantiation: imm4.c:show_bits
Unexecuted instantiation: exr.c:show_bits
aacdec.c:show_bits
Line
Count
Source
374
4.51M
{
375
4.51M
    register unsigned int tmp;
376
4.51M
    OPEN_READER_NOSIZE(re, s);
377
4.51M
    av_assert2(n>0 && n<=25);
378
4.51M
    UPDATE_CACHE(re, s);
379
4.51M
    tmp = SHOW_UBITS(re, s, n);
380
4.51M
    return tmp;
381
4.51M
}
Unexecuted instantiation: aacdec_fixed.c:show_bits
Unexecuted instantiation: aacdec_float.c:show_bits
Unexecuted instantiation: aacdec_tab.c:show_bits
Unexecuted instantiation: aacdec_usac.c:show_bits
Unexecuted instantiation: aacdec_usac_mps212.c:show_bits
Unexecuted instantiation: aacps_common.c:show_bits
aacsbr.c:show_bits
Line
Count
Source
374
1.50k
{
375
1.50k
    register unsigned int tmp;
376
1.50k
    OPEN_READER_NOSIZE(re, s);
377
1.50k
    av_assert2(n>0 && n<=25);
378
1.50k
    UPDATE_CACHE(re, s);
379
1.50k
    tmp = SHOW_UBITS(re, s, n);
380
1.50k
    return tmp;
381
1.50k
}
aacsbr_fixed.c:show_bits
Line
Count
Source
374
1.08k
{
375
1.08k
    register unsigned int tmp;
376
1.08k
    OPEN_READER_NOSIZE(re, s);
377
1.08k
    av_assert2(n>0 && n<=25);
378
1.08k
    UPDATE_CACHE(re, s);
379
1.08k
    tmp = SHOW_UBITS(re, s, n);
380
1.08k
    return tmp;
381
1.08k
}
Unexecuted instantiation: aacdec_ac.c:show_bits
Unexecuted instantiation: aacdec_lpd.c:show_bits
Unexecuted instantiation: aacps_fixed.c:show_bits
Unexecuted instantiation: aacps_float.c:show_bits
Unexecuted instantiation: mjpegdec.c:show_bits
Unexecuted instantiation: mjpegdec_common.c:show_bits
Unexecuted instantiation: jpeglsdec.c:show_bits
Unexecuted instantiation: jvdec.c:show_bits
Unexecuted instantiation: rdt.c:show_bits
Unexecuted instantiation: rtpdec_h261.c:show_bits
Unexecuted instantiation: rtpdec_h263_rfc2190.c:show_bits
Unexecuted instantiation: rtpdec_latm.c:show_bits
Unexecuted instantiation: rtpdec_mpeg4.c:show_bits
Unexecuted instantiation: rtpdec_qt.c:show_bits
h264_cavlc.c:show_bits
Line
Count
Source
374
8.03M
{
375
8.03M
    register unsigned int tmp;
376
8.03M
    OPEN_READER_NOSIZE(re, s);
377
8.03M
    av_assert2(n>0 && n<=25);
378
8.03M
    UPDATE_CACHE(re, s);
379
8.03M
    tmp = SHOW_UBITS(re, s, n);
380
8.03M
    return tmp;
381
8.03M
}
Unexecuted instantiation: h264_direct.c:show_bits
Unexecuted instantiation: h264_mb.c:show_bits
Unexecuted instantiation: h264_picture.c:show_bits
Unexecuted instantiation: h264_refs.c:show_bits
Unexecuted instantiation: h264_slice.c:show_bits
Unexecuted instantiation: h264_cabac.c:show_bits
Unexecuted instantiation: h264_loopfilter.c:show_bits
Unexecuted instantiation: alsdec.c:show_bits
Unexecuted instantiation: bgmc.c:show_bits
Unexecuted instantiation: mlz.c:show_bits
Unexecuted instantiation: bonk.c:show_bits
Unexecuted instantiation: mxpegdec.c:show_bits
Unexecuted instantiation: rv30.c:show_bits
rv34.c:show_bits
Line
Count
Source
374
12.5k
{
375
12.5k
    register unsigned int tmp;
376
12.5k
    OPEN_READER_NOSIZE(re, s);
377
12.5k
    av_assert2(n>0 && n<=25);
378
12.5k
    UPDATE_CACHE(re, s);
379
12.5k
    tmp = SHOW_UBITS(re, s, n);
380
12.5k
    return tmp;
381
12.5k
}
Unexecuted instantiation: indeo3.c:show_bits
Unexecuted instantiation: eamad.c:show_bits
Unexecuted instantiation: mpeg12.c:show_bits
Unexecuted instantiation: g726.c:show_bits
Unexecuted instantiation: vc1dec.c:show_bits
Unexecuted instantiation: vc1_block.c:show_bits
Unexecuted instantiation: vc1_loopfilter.c:show_bits
Unexecuted instantiation: vc1_mc.c:show_bits
Unexecuted instantiation: vc1_pred.c:show_bits
Unexecuted instantiation: mpegaudiodec_float.c:show_bits
Unexecuted instantiation: huffyuvdec.c:show_bits
speexdec.c:show_bits
Line
Count
Source
374
1.96M
{
375
1.96M
    register unsigned int tmp;
376
1.96M
    OPEN_READER_NOSIZE(re, s);
377
1.96M
    av_assert2(n>0 && n<=25);
378
1.96M
    UPDATE_CACHE(re, s);
379
1.96M
    tmp = SHOW_UBITS(re, s, n);
380
1.96M
    return tmp;
381
1.96M
}
Unexecuted instantiation: atrac3plusdec.c:show_bits
Unexecuted instantiation: atrac3plusdsp.c:show_bits
Unexecuted instantiation: atrac3plus.c:show_bits
Unexecuted instantiation: mss4.c:show_bits
Unexecuted instantiation: tiff.c:show_bits
faxcompr.c:show_bits
Line
Count
Source
374
897k
{
375
897k
    register unsigned int tmp;
376
897k
    OPEN_READER_NOSIZE(re, s);
377
897k
    av_assert2(n>0 && n<=25);
378
897k
    UPDATE_CACHE(re, s);
379
897k
    tmp = SHOW_UBITS(re, s, n);
380
897k
    return tmp;
381
897k
}
Unexecuted instantiation: ac3dec_float.c:show_bits
Unexecuted instantiation: on2avc.c:show_bits
Unexecuted instantiation: smacker.c:show_bits
Unexecuted instantiation: dvbsubdec.c:show_bits
Unexecuted instantiation: mss1.c:show_bits
Unexecuted instantiation: mss12.c:show_bits
Unexecuted instantiation: mss2.c:show_bits
Unexecuted instantiation: mdec.c:show_bits
Unexecuted instantiation: osq.c:show_bits
Unexecuted instantiation: vp6.c:show_bits
Unexecuted instantiation: vp56.c:show_bits
Unexecuted instantiation: vp56data.c:show_bits
Unexecuted instantiation: loco.c:show_bits
Unexecuted instantiation: vp5.c:show_bits
Unexecuted instantiation: ra144dec.c:show_bits
Unexecuted instantiation: indeo5.c:show_bits
ivi.c:show_bits
Line
Count
Source
374
935
{
375
935
    register unsigned int tmp;
376
935
    OPEN_READER_NOSIZE(re, s);
377
935
    av_assert2(n>0 && n<=25);
378
935
    UPDATE_CACHE(re, s);
379
935
    tmp = SHOW_UBITS(re, s, n);
380
935
    return tmp;
381
935
}
Unexecuted instantiation: ivi_dsp.c:show_bits
Unexecuted instantiation: apac.c:show_bits
Unexecuted instantiation: clearvideo.c:show_bits
Unexecuted instantiation: dxtory.c:show_bits
Unexecuted instantiation: mpegaudiodec_fixed.c:show_bits
Unexecuted instantiation: ralf.c:show_bits
pixlet.c:show_bits
Line
Count
Source
374
29.0M
{
375
29.0M
    register unsigned int tmp;
376
29.0M
    OPEN_READER_NOSIZE(re, s);
377
29.0M
    av_assert2(n>0 && n<=25);
378
29.0M
    UPDATE_CACHE(re, s);
379
29.0M
    tmp = SHOW_UBITS(re, s, n);
380
29.0M
    return tmp;
381
29.0M
}
Unexecuted instantiation: wnv1.c:show_bits
Unexecuted instantiation: qoadec.c:show_bits
Unexecuted instantiation: vima.c:show_bits
Unexecuted instantiation: leaddec.c:show_bits
Unexecuted instantiation: eatqi.c:show_bits
Unexecuted instantiation: lagarith.c:show_bits
Unexecuted instantiation: lagarithrac.c:show_bits
Unexecuted instantiation: dss_sp.c:show_bits
siren.c:show_bits
Line
Count
Source
374
12.7M
{
375
12.7M
    register unsigned int tmp;
376
12.7M
    OPEN_READER_NOSIZE(re, s);
377
12.7M
    av_assert2(n>0 && n<=25);
378
12.7M
    UPDATE_CACHE(re, s);
379
12.7M
    tmp = SHOW_UBITS(re, s, n);
380
12.7M
    return tmp;
381
12.7M
}
cavsdec.c:show_bits
Line
Count
Source
374
685k
{
375
685k
    register unsigned int tmp;
376
685k
    OPEN_READER_NOSIZE(re, s);
377
685k
    av_assert2(n>0 && n<=25);
378
685k
    UPDATE_CACHE(re, s);
379
685k
    tmp = SHOW_UBITS(re, s, n);
380
685k
    return tmp;
381
685k
}
Unexecuted instantiation: cavs.c:show_bits
Unexecuted instantiation: cavsdata.c:show_bits
Unexecuted instantiation: hcom.c:show_bits
vp3.c:show_bits
Line
Count
Source
374
25.1M
{
375
25.1M
    register unsigned int tmp;
376
25.1M
    OPEN_READER_NOSIZE(re, s);
377
25.1M
    av_assert2(n>0 && n<=25);
378
25.1M
    UPDATE_CACHE(re, s);
379
25.1M
    tmp = SHOW_UBITS(re, s, n);
380
25.1M
    return tmp;
381
25.1M
}
Unexecuted instantiation: webp.c:show_bits
Unexecuted instantiation: eatgv.c:show_bits
eatgq.c:show_bits
Line
Count
Source
374
44.9M
{
375
44.9M
    register unsigned int tmp;
376
44.9M
    OPEN_READER_NOSIZE(re, s);
377
44.9M
    av_assert2(n>0 && n<=25);
378
44.9M
    UPDATE_CACHE(re, s);
379
44.9M
    tmp = SHOW_UBITS(re, s, n);
380
44.9M
    return tmp;
381
44.9M
}
Unexecuted instantiation: sga.c:show_bits
Unexecuted instantiation: binkaudio.c:show_bits
mpeg12dec.c:show_bits
Line
Count
Source
374
802k
{
375
802k
    register unsigned int tmp;
376
802k
    OPEN_READER_NOSIZE(re, s);
377
802k
    av_assert2(n>0 && n<=25);
378
802k
    UPDATE_CACHE(re, s);
379
802k
    tmp = SHOW_UBITS(re, s, n);
380
802k
    return tmp;
381
802k
}
Unexecuted instantiation: indeo2.c:show_bits
Unexecuted instantiation: 4xm.c:show_bits
wmalosslessdec.c:show_bits
Line
Count
Source
374
15.3k
{
375
15.3k
    register unsigned int tmp;
376
15.3k
    OPEN_READER_NOSIZE(re, s);
377
15.3k
    av_assert2(n>0 && n<=25);
378
15.3k
    UPDATE_CACHE(re, s);
379
15.3k
    tmp = SHOW_UBITS(re, s, n);
380
15.3k
    return tmp;
381
15.3k
}
Unexecuted instantiation: ilbcdec.c:show_bits
Unexecuted instantiation: hevcdec.c:show_bits
Unexecuted instantiation: mvs.c:show_bits
Unexecuted instantiation: pred.c:show_bits
Unexecuted instantiation: refs.c:show_bits
Unexecuted instantiation: cabac.c:show_bits
Unexecuted instantiation: dsp.c:show_bits
Unexecuted instantiation: filter.c:show_bits
Unexecuted instantiation: tscc2.c:show_bits
Unexecuted instantiation: hqx.c:show_bits
Unexecuted instantiation: mobiclip.c:show_bits
wmaprodec.c:show_bits
Line
Count
Source
374
90.2k
{
375
90.2k
    register unsigned int tmp;
376
90.2k
    OPEN_READER_NOSIZE(re, s);
377
90.2k
    av_assert2(n>0 && n<=25);
378
90.2k
    UPDATE_CACHE(re, s);
379
90.2k
    tmp = SHOW_UBITS(re, s, n);
380
90.2k
    return tmp;
381
90.2k
}
Unexecuted instantiation: g729dec.c:show_bits
Unexecuted instantiation: sipr.c:show_bits
Unexecuted instantiation: g722dec.c:show_bits
Unexecuted instantiation: nellymoserdec.c:show_bits
Unexecuted instantiation: dcaenc.c:show_bits
Unexecuted instantiation: dcaadpcm.c:show_bits
Unexecuted instantiation: dcadata.c:show_bits
Unexecuted instantiation: interplayvideo.c:show_bits
Unexecuted instantiation: dec.c:show_bits
Unexecuted instantiation: dec_celt.c:show_bits
Unexecuted instantiation: silk.c:show_bits
Unexecuted instantiation: mjpegbdec.c:show_bits
Unexecuted instantiation: bink.c:show_bits
Unexecuted instantiation: dvdsubdec.c:show_bits
Unexecuted instantiation: rtjpeg.c:show_bits
Unexecuted instantiation: truespeech.c:show_bits
Unexecuted instantiation: metasound.c:show_bits
Unexecuted instantiation: escape124.c:show_bits
Unexecuted instantiation: cllc.c:show_bits
Unexecuted instantiation: dvdec.c:show_bits
Unexecuted instantiation: tta.c:show_bits
Unexecuted instantiation: fraps.c:show_bits
Unexecuted instantiation: motionpixels.c:show_bits
Unexecuted instantiation: vp9.c:show_bits
Unexecuted instantiation: vp9block.c:show_bits
Unexecuted instantiation: vp9data.c:show_bits
Unexecuted instantiation: vp9lpf.c:show_bits
Unexecuted instantiation: vp9mvs.c:show_bits
Unexecuted instantiation: vp9prob.c:show_bits
Unexecuted instantiation: vp9recon.c:show_bits
Unexecuted instantiation: ffv1dec.c:show_bits
Unexecuted instantiation: intra_utils.c:show_bits
Unexecuted instantiation: thread.c:show_bits
Unexecuted instantiation: ctu.c:show_bits
Unexecuted instantiation: inter.c:show_bits
Unexecuted instantiation: intra.c:show_bits
Unexecuted instantiation: wmavoice.c:show_bits
Unexecuted instantiation: rawdec.c:show_bits
Unexecuted instantiation: svq1dec.c:show_bits
Unexecuted instantiation: mpc7.c:show_bits
Unexecuted instantiation: truemotion2rt.c:show_bits
Unexecuted instantiation: adxdec.c:show_bits
Unexecuted instantiation: rv40.c:show_bits
xsubdec.c:show_bits
Line
Count
Source
374
9.99M
{
375
9.99M
    register unsigned int tmp;
376
9.99M
    OPEN_READER_NOSIZE(re, s);
377
9.99M
    av_assert2(n>0 && n<=25);
378
9.99M
    UPDATE_CACHE(re, s);
379
9.99M
    tmp = SHOW_UBITS(re, s, n);
380
9.99M
    return tmp;
381
9.99M
}
Unexecuted instantiation: notchlc.c:show_bits
Unexecuted instantiation: aic.c:show_bits
vqcdec.c:show_bits
Line
Count
Source
374
34.7M
{
375
34.7M
    register unsigned int tmp;
376
34.7M
    OPEN_READER_NOSIZE(re, s);
377
34.7M
    av_assert2(n>0 && n<=25);
378
34.7M
    UPDATE_CACHE(re, s);
379
34.7M
    tmp = SHOW_UBITS(re, s, n);
380
34.7M
    return tmp;
381
34.7M
}
Unexecuted instantiation: dolby_e.c:show_bits
Unexecuted instantiation: proresdec.c:show_bits
Unexecuted instantiation: evrcdec.c:show_bits
Unexecuted instantiation: dnxhddec.c:show_bits
Unexecuted instantiation: dcadec.c:show_bits
Unexecuted instantiation: dca_core.c:show_bits
Unexecuted instantiation: dca_lbr.c:show_bits
Unexecuted instantiation: dca_xll.c:show_bits
Unexecuted instantiation: mlpenc.c:show_bits
Unexecuted instantiation: mlpdec.c:show_bits
atrac3.c:show_bits
Line
Count
Source
374
6.00M
{
375
6.00M
    register unsigned int tmp;
376
6.00M
    OPEN_READER_NOSIZE(re, s);
377
6.00M
    av_assert2(n>0 && n<=25);
378
6.00M
    UPDATE_CACHE(re, s);
379
6.00M
    tmp = SHOW_UBITS(re, s, n);
380
6.00M
    return tmp;
381
6.00M
}
Unexecuted instantiation: vorbisdec.c:show_bits
Unexecuted instantiation: flashsv.c:show_bits
Unexecuted instantiation: wavpack.c:show_bits
Unexecuted instantiation: speedhqdec.c:show_bits
Unexecuted instantiation: g723_1dec.c:show_bits
Unexecuted instantiation: g2meet.c:show_bits
Unexecuted instantiation: shorten.c:show_bits
Unexecuted instantiation: indeo4.c:show_bits
Unexecuted instantiation: sp5xdec.c:show_bits
Unexecuted instantiation: atrac1.c:show_bits
Unexecuted instantiation: apv_decode.c:show_bits
apv_entropy.c:show_bits
Line
Count
Source
374
188M
{
375
188M
    register unsigned int tmp;
376
188M
    OPEN_READER_NOSIZE(re, s);
377
188M
    av_assert2(n>0 && n<=25);
378
188M
    UPDATE_CACHE(re, s);
379
188M
    tmp = SHOW_UBITS(re, s, n);
380
188M
    return tmp;
381
188M
}
Unexecuted instantiation: avs.c:show_bits
Unexecuted instantiation: rv60dec.c:show_bits
alac.c:show_bits
Line
Count
Source
374
19.7M
{
375
19.7M
    register unsigned int tmp;
376
19.7M
    OPEN_READER_NOSIZE(re, s);
377
19.7M
    av_assert2(n>0 && n<=25);
378
19.7M
    UPDATE_CACHE(re, s);
379
19.7M
    tmp = SHOW_UBITS(re, s, n);
380
19.7M
    return tmp;
381
19.7M
}
Unexecuted instantiation: tiertexseqv.c:show_bits
Unexecuted instantiation: ffv1enc.c:show_bits
Unexecuted instantiation: hcadec.c:show_bits
Unexecuted instantiation: pcx.c:show_bits
Unexecuted instantiation: qcelpdec.c:show_bits
flacdec.c:show_bits
Line
Count
Source
374
114k
{
375
114k
    register unsigned int tmp;
376
114k
    OPEN_READER_NOSIZE(re, s);
377
114k
    av_assert2(n>0 && n<=25);
378
114k
    UPDATE_CACHE(re, s);
379
114k
    tmp = SHOW_UBITS(re, s, n);
380
114k
    return tmp;
381
114k
}
Unexecuted instantiation: ac3dec_fixed.c:show_bits
Unexecuted instantiation: midivid.c:show_bits
Unexecuted instantiation: mimic.c:show_bits
Unexecuted instantiation: fic.c:show_bits
Unexecuted instantiation: qdmc.c:show_bits
Unexecuted instantiation: ra288.c:show_bits
Unexecuted instantiation: interplayacm.c:show_bits
Unexecuted instantiation: ylc.c:show_bits
Unexecuted instantiation: ftr.c:show_bits
agm.c:show_bits
Line
Count
Source
374
5.87M
{
375
5.87M
    register unsigned int tmp;
376
5.87M
    OPEN_READER_NOSIZE(re, s);
377
5.87M
    av_assert2(n>0 && n<=25);
378
5.87M
    UPDATE_CACHE(re, s);
379
5.87M
    tmp = SHOW_UBITS(re, s, n);
380
5.87M
    return tmp;
381
5.87M
}
Unexecuted instantiation: xan.c:show_bits
svq3.c:show_bits
Line
Count
Source
374
346k
{
375
346k
    register unsigned int tmp;
376
346k
    OPEN_READER_NOSIZE(re, s);
377
346k
    av_assert2(n>0 && n<=25);
378
346k
    UPDATE_CACHE(re, s);
379
346k
    tmp = SHOW_UBITS(re, s, n);
380
346k
    return tmp;
381
346k
}
Unexecuted instantiation: cri.c:show_bits
Unexecuted instantiation: qdm2.c:show_bits
Unexecuted instantiation: cljrdec.c:show_bits
Unexecuted instantiation: g728dec.c:show_bits
Unexecuted instantiation: cook.c:show_bits
Unexecuted instantiation: twinvqdec.c:show_bits
Unexecuted instantiation: hq_hqa.c:show_bits
Unexecuted instantiation: cdxl.c:show_bits
vble.c:show_bits
Line
Count
Source
374
56.5M
{
375
56.5M
    register unsigned int tmp;
376
56.5M
    OPEN_READER_NOSIZE(re, s);
377
56.5M
    av_assert2(n>0 && n<=25);
378
56.5M
    UPDATE_CACHE(re, s);
379
56.5M
    tmp = SHOW_UBITS(re, s, n);
380
56.5M
    return tmp;
381
56.5M
}
Unexecuted instantiation: mv30.c:show_bits
Unexecuted instantiation: apedec.c:show_bits
h261dec.c:show_bits
Line
Count
Source
374
1.90M
{
375
1.90M
    register unsigned int tmp;
376
1.90M
    OPEN_READER_NOSIZE(re, s);
377
1.90M
    av_assert2(n>0 && n<=25);
378
1.90M
    UPDATE_CACHE(re, s);
379
1.90M
    tmp = SHOW_UBITS(re, s, n);
380
1.90M
    return tmp;
381
1.90M
}
Unexecuted instantiation: dstdec.c:show_bits
Unexecuted instantiation: jpeglsenc.c:show_bits
Unexecuted instantiation: truemotion2.c:show_bits
382
383
static inline void skip_bits(GetBitContext *s, int n)
384
24.9G
{
385
24.9G
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
24.9G
    OPEN_READER_SIZE(re, s);
387
24.9G
    LAST_SKIP_BITS(re, s, n);
388
24.9G
    CLOSE_READER(re, s);
389
24.9G
}
Unexecuted instantiation: mpegvideo_motion.c:skip_bits
Unexecuted instantiation: wmv2dec.c:skip_bits
aac_adtstoasc.c:skip_bits
Line
Count
Source
384
502
{
385
502
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
502
    OPEN_READER_SIZE(re, s);
387
502
    LAST_SKIP_BITS(re, s, n);
388
502
    CLOSE_READER(re, s);
389
502
}
Unexecuted instantiation: dovi_rpu.c:skip_bits
Unexecuted instantiation: dovi_split.c:skip_bits
Unexecuted instantiation: dts2pts.c:skip_bits
Unexecuted instantiation: eac3_core.c:skip_bits
evc_frame_merge.c:skip_bits
Line
Count
Source
384
270k
{
385
270k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
270k
    OPEN_READER_SIZE(re, s);
387
270k
    LAST_SKIP_BITS(re, s, n);
388
270k
    CLOSE_READER(re, s);
389
270k
}
Unexecuted instantiation: extract_extradata.c:skip_bits
Unexecuted instantiation: h264_metadata.c:skip_bits
Unexecuted instantiation: h264_redundant_pps.c:skip_bits
Unexecuted instantiation: h265_metadata.c:skip_bits
Unexecuted instantiation: h266_metadata.c:skip_bits
Unexecuted instantiation: lcevc_merge.c:skip_bits
Unexecuted instantiation: lcevc_metadata.c:skip_bits
Unexecuted instantiation: remove_extradata.c:skip_bits
Unexecuted instantiation: truehd_core.c:skip_bits
vp9_raw_reorder.c:skip_bits
Line
Count
Source
384
8.19k
{
385
8.19k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
8.19k
    OPEN_READER_SIZE(re, s);
387
8.19k
    LAST_SKIP_BITS(re, s, n);
388
8.19k
    CLOSE_READER(re, s);
389
8.19k
}
Unexecuted instantiation: vp9_superframe.c:skip_bits
Unexecuted instantiation: vp9_superframe_split.c:skip_bits
Unexecuted instantiation: cbs.c:skip_bits
Unexecuted instantiation: cbs_apv.c:skip_bits
Unexecuted instantiation: cbs_av1.c:skip_bits
Unexecuted instantiation: cbs_h264.c:skip_bits
Unexecuted instantiation: cbs_h2645.c:skip_bits
cbs_h265.c:skip_bits
Line
Count
Source
384
133M
{
385
133M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
133M
    OPEN_READER_SIZE(re, s);
387
133M
    LAST_SKIP_BITS(re, s, n);
388
133M
    CLOSE_READER(re, s);
389
133M
}
cbs_h266.c:skip_bits
Line
Count
Source
384
385M
{
385
385M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
385M
    OPEN_READER_SIZE(re, s);
387
385M
    LAST_SKIP_BITS(re, s, n);
388
385M
    CLOSE_READER(re, s);
389
385M
}
Unexecuted instantiation: cbs_lcevc.c:skip_bits
cbs_mpeg2.c:skip_bits
Line
Count
Source
384
6.86M
{
385
6.86M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
6.86M
    OPEN_READER_SIZE(re, s);
387
6.86M
    LAST_SKIP_BITS(re, s, n);
388
6.86M
    CLOSE_READER(re, s);
389
6.86M
}
Unexecuted instantiation: cbs_sei.c:skip_bits
Unexecuted instantiation: cbs_vp8.c:skip_bits
Unexecuted instantiation: cbs_vp9.c:skip_bits
dovi_rpudec.c:skip_bits
Line
Count
Source
384
22.2k
{
385
22.2k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
22.2k
    OPEN_READER_SIZE(re, s);
387
22.2k
    LAST_SKIP_BITS(re, s, n);
388
22.2k
    CLOSE_READER(re, s);
389
22.2k
}
Unexecuted instantiation: evc_parse.c:skip_bits
Unexecuted instantiation: evc_ps.c:skip_bits
Unexecuted instantiation: h263dec.c:skip_bits
h2645_parse.c:skip_bits
Line
Count
Source
384
24.2M
{
385
24.2M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
24.2M
    OPEN_READER_SIZE(re, s);
387
24.2M
    LAST_SKIP_BITS(re, s, n);
388
24.2M
    CLOSE_READER(re, s);
389
24.2M
}
Unexecuted instantiation: h264_parse.c:skip_bits
h264_ps.c:skip_bits
Line
Count
Source
384
4.34M
{
385
4.34M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
4.34M
    OPEN_READER_SIZE(re, s);
387
4.34M
    LAST_SKIP_BITS(re, s, n);
388
4.34M
    CLOSE_READER(re, s);
389
4.34M
}
Unexecuted instantiation: h264data.c:skip_bits
Unexecuted instantiation: h265_profile_level.c:skip_bits
ps.c:skip_bits
Line
Count
Source
384
23.5G
{
385
23.5G
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
23.5G
    OPEN_READER_SIZE(re, s);
387
23.5G
    LAST_SKIP_BITS(re, s, n);
388
23.5G
    CLOSE_READER(re, s);
389
23.5G
}
intelh263dec.c:skip_bits
Line
Count
Source
384
192k
{
385
192k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
192k
    OPEN_READER_SIZE(re, s);
387
192k
    LAST_SKIP_BITS(re, s, n);
388
192k
    CLOSE_READER(re, s);
389
192k
}
Unexecuted instantiation: intrax8.c:skip_bits
ituh263dec.c:skip_bits
Line
Count
Source
384
50.0M
{
385
50.0M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
50.0M
    OPEN_READER_SIZE(re, s);
387
50.0M
    LAST_SKIP_BITS(re, s, n);
388
50.0M
    CLOSE_READER(re, s);
389
50.0M
}
mlp_parse.c:skip_bits
Line
Count
Source
384
620k
{
385
620k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
620k
    OPEN_READER_SIZE(re, s);
387
620k
    LAST_SKIP_BITS(re, s, n);
388
620k
    CLOSE_READER(re, s);
389
620k
}
mpeg4audio.c:skip_bits
Line
Count
Source
384
17.0k
{
385
17.0k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
17.0k
    OPEN_READER_SIZE(re, s);
387
17.0k
    LAST_SKIP_BITS(re, s, n);
388
17.0k
    CLOSE_READER(re, s);
389
17.0k
}
mpeg4videodec.c:skip_bits
Line
Count
Source
384
3.27M
{
385
3.27M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
3.27M
    OPEN_READER_SIZE(re, s);
387
3.27M
    LAST_SKIP_BITS(re, s, n);
388
3.27M
    CLOSE_READER(re, s);
389
3.27M
}
Unexecuted instantiation: mpeg_er.c:skip_bits
Unexecuted instantiation: mpegvideo_dec.c:skip_bits
msmpeg4dec.c:skip_bits
Line
Count
Source
384
145k
{
385
145k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
145k
    OPEN_READER_SIZE(re, s);
387
145k
    LAST_SKIP_BITS(re, s, n);
388
145k
    CLOSE_READER(re, s);
389
145k
}
rv10.c:skip_bits
Line
Count
Source
384
95.7k
{
385
95.7k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
95.7k
    OPEN_READER_SIZE(re, s);
387
95.7k
    LAST_SKIP_BITS(re, s, n);
388
95.7k
    CLOSE_READER(re, s);
389
95.7k
}
ac3_parser.c:skip_bits
Line
Count
Source
384
108M
{
385
108M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
108M
    OPEN_READER_SIZE(re, s);
387
108M
    LAST_SKIP_BITS(re, s, n);
388
108M
    CLOSE_READER(re, s);
389
108M
}
adts_header.c:skip_bits
Line
Count
Source
384
31.2M
{
385
31.2M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
31.2M
    OPEN_READER_SIZE(re, s);
387
31.2M
    LAST_SKIP_BITS(re, s, n);
388
31.2M
    CLOSE_READER(re, s);
389
31.2M
}
av1_parse.c:skip_bits
Line
Count
Source
384
1.25M
{
385
1.25M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.25M
    OPEN_READER_SIZE(re, s);
387
1.25M
    LAST_SKIP_BITS(re, s, n);
388
1.25M
    CLOSE_READER(re, s);
389
1.25M
}
flvdec.c:skip_bits
Line
Count
Source
384
90.7k
{
385
90.7k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
90.7k
    OPEN_READER_SIZE(re, s);
387
90.7k
    LAST_SKIP_BITS(re, s, n);
388
90.7k
    CLOSE_READER(re, s);
389
90.7k
}
Unexecuted instantiation: h2645_vui.c:skip_bits
Unexecuted instantiation: vc1_parser.c:skip_bits
vorbis_parser.c:skip_bits
Line
Count
Source
384
39.8k
{
385
39.8k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
39.8k
    OPEN_READER_SIZE(re, s);
387
39.8k
    LAST_SKIP_BITS(re, s, n);
388
39.8k
    CLOSE_READER(re, s);
389
39.8k
}
Unexecuted instantiation: vp9_parser.c:skip_bits
Unexecuted instantiation: vvc_parser.c:skip_bits
Unexecuted instantiation: aac_ac3_parser.c:skip_bits
Unexecuted instantiation: av1_parser.c:skip_bits
avs2_parser.c:skip_bits
Line
Count
Source
384
2.02k
{
385
2.02k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
2.02k
    OPEN_READER_SIZE(re, s);
387
2.02k
    LAST_SKIP_BITS(re, s, n);
388
2.02k
    CLOSE_READER(re, s);
389
2.02k
}
avs3_parser.c:skip_bits
Line
Count
Source
384
3
{
385
3
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
3
    OPEN_READER_SIZE(re, s);
387
3
    LAST_SKIP_BITS(re, s, n);
388
3
    CLOSE_READER(re, s);
389
3
}
cavs_parser.c:skip_bits
Line
Count
Source
384
192k
{
385
192k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
192k
    OPEN_READER_SIZE(re, s);
387
192k
    LAST_SKIP_BITS(re, s, n);
388
192k
    CLOSE_READER(re, s);
389
192k
}
dca_parser.c:skip_bits
Line
Count
Source
384
83.7k
{
385
83.7k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
83.7k
    OPEN_READER_SIZE(re, s);
387
83.7k
    LAST_SKIP_BITS(re, s, n);
388
83.7k
    CLOSE_READER(re, s);
389
83.7k
}
Unexecuted instantiation: dolby_e_parser.c:skip_bits
evc_parser.c:skip_bits
Line
Count
Source
384
689k
{
385
689k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
689k
    OPEN_READER_SIZE(re, s);
387
689k
    LAST_SKIP_BITS(re, s, n);
388
689k
    CLOSE_READER(re, s);
389
689k
}
Unexecuted instantiation: ffv1_parser.c:skip_bits
Unexecuted instantiation: flac_parser.c:skip_bits
Unexecuted instantiation: ftr_parser.c:skip_bits
Unexecuted instantiation: h264_parser.c:skip_bits
h264_sei.c:skip_bits
Line
Count
Source
384
1.50M
{
385
1.50M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.50M
    OPEN_READER_SIZE(re, s);
387
1.50M
    LAST_SKIP_BITS(re, s, n);
388
1.50M
    CLOSE_READER(re, s);
389
1.50M
}
Unexecuted instantiation: h264idct.c:skip_bits
parser.c:skip_bits
Line
Count
Source
384
1.01M
{
385
1.01M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.01M
    OPEN_READER_SIZE(re, s);
387
1.01M
    LAST_SKIP_BITS(re, s, n);
388
1.01M
    CLOSE_READER(re, s);
389
1.01M
}
Unexecuted instantiation: sei.c:skip_bits
jpegxl_parser.c:skip_bits
Line
Count
Source
384
11.7M
{
385
11.7M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
11.7M
    OPEN_READER_SIZE(re, s);
387
11.7M
    LAST_SKIP_BITS(re, s, n);
388
11.7M
    CLOSE_READER(re, s);
389
11.7M
}
Unexecuted instantiation: jpegxs_parser.c:skip_bits
lcevc_parser.c:skip_bits
Line
Count
Source
384
8
{
385
8
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
8
    OPEN_READER_SIZE(re, s);
387
8
    LAST_SKIP_BITS(re, s, n);
388
8
    CLOSE_READER(re, s);
389
8
}
Unexecuted instantiation: mlp_parser.c:skip_bits
Unexecuted instantiation: mpeg4video_parser.c:skip_bits
vc1.c:skip_bits
Line
Count
Source
384
3.73M
{
385
3.73M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
3.73M
    OPEN_READER_SIZE(re, s);
387
3.73M
    LAST_SKIP_BITS(re, s, n);
388
3.73M
    CLOSE_READER(re, s);
389
3.73M
}
Unexecuted instantiation: vc1data.c:skip_bits
dca.c:skip_bits
Line
Count
Source
384
84.3k
{
385
84.3k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
84.3k
    OPEN_READER_SIZE(re, s);
387
84.3k
    LAST_SKIP_BITS(re, s, n);
388
84.3k
    CLOSE_READER(re, s);
389
84.3k
}
dca_exss.c:skip_bits
Line
Count
Source
384
4.93M
{
385
4.93M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
4.93M
    OPEN_READER_SIZE(re, s);
387
4.93M
    LAST_SKIP_BITS(re, s, n);
388
4.93M
    CLOSE_READER(re, s);
389
4.93M
}
dolby_e_parse.c:skip_bits
Line
Count
Source
384
1.21M
{
385
1.21M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.21M
    OPEN_READER_SIZE(re, s);
387
1.21M
    LAST_SKIP_BITS(re, s, n);
388
1.21M
    CLOSE_READER(re, s);
389
1.21M
}
Unexecuted instantiation: ffv1.c:skip_bits
Unexecuted instantiation: ffv1_parse.c:skip_bits
flac.c:skip_bits
Line
Count
Source
384
11.5M
{
385
11.5M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
11.5M
    OPEN_READER_SIZE(re, s);
387
11.5M
    LAST_SKIP_BITS(re, s, n);
388
11.5M
    CLOSE_READER(re, s);
389
11.5M
}
h2645_sei.c:skip_bits
Line
Count
Source
384
660k
{
385
660k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
660k
    OPEN_READER_SIZE(re, s);
387
660k
    LAST_SKIP_BITS(re, s, n);
388
660k
    CLOSE_READER(re, s);
389
660k
}
Unexecuted instantiation: parse.c:skip_bits
Unexecuted instantiation: jpegxl_parse.c:skip_bits
aom_film_grain.c:skip_bits
Line
Count
Source
384
237k
{
385
237k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
237k
    OPEN_READER_SIZE(re, s);
387
237k
    LAST_SKIP_BITS(re, s, n);
388
237k
    CLOSE_READER(re, s);
389
237k
}
Unexecuted instantiation: dynamic_hdr_vivid.c:skip_bits
Unexecuted instantiation: hdr_dynamic_metadata.c:skip_bits
av1dec.c:skip_bits
Line
Count
Source
384
3.40M
{
385
3.40M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
3.40M
    OPEN_READER_SIZE(re, s);
387
3.40M
    LAST_SKIP_BITS(re, s, n);
388
3.40M
    CLOSE_READER(re, s);
389
3.40M
}
Unexecuted instantiation: bit.c:skip_bits
Unexecuted instantiation: dtsdec.c:skip_bits
Unexecuted instantiation: dtshddec.c:skip_bits
h264dec.c:skip_bits
Line
Count
Source
384
254k
{
385
254k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
254k
    OPEN_READER_SIZE(re, s);
387
254k
    LAST_SKIP_BITS(re, s, n);
388
254k
    CLOSE_READER(re, s);
389
254k
}
Unexecuted instantiation: hls_sample_encryption.c:skip_bits
Unexecuted instantiation: isom.c:skip_bits
Unexecuted instantiation: matroskadec.c:skip_bits
mov.c:skip_bits
Line
Count
Source
384
56.4k
{
385
56.4k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
56.4k
    OPEN_READER_SIZE(re, s);
387
56.4k
    LAST_SKIP_BITS(re, s, n);
388
56.4k
    CLOSE_READER(re, s);
389
56.4k
}
Unexecuted instantiation: mpegts.c:skip_bits
oggparsetheora.c:skip_bits
Line
Count
Source
384
22.6k
{
385
22.6k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
22.6k
    OPEN_READER_SIZE(re, s);
387
22.6k
    LAST_SKIP_BITS(re, s, n);
388
22.6k
    CLOSE_READER(re, s);
389
22.6k
}
Unexecuted instantiation: shortendec.c:skip_bits
Unexecuted instantiation: swfdec.c:skip_bits
Unexecuted instantiation: takdec.c:skip_bits
iamf_parse.c:skip_bits
Line
Count
Source
384
2.84k
{
385
2.84k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
2.84k
    OPEN_READER_SIZE(re, s);
387
2.84k
    LAST_SKIP_BITS(re, s, n);
388
2.84k
    CLOSE_READER(re, s);
389
2.84k
}
Unexecuted instantiation: dirac.c:skip_bits
atrac9dec.c:skip_bits
Line
Count
Source
384
5.27M
{
385
5.27M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
5.27M
    OPEN_READER_SIZE(re, s);
387
5.27M
    LAST_SKIP_BITS(re, s, n);
388
5.27M
    CLOSE_READER(re, s);
389
5.27M
}
Unexecuted instantiation: enc.c:skip_bits
Unexecuted instantiation: enc_psy.c:skip_bits
Unexecuted instantiation: pvq.c:skip_bits
Unexecuted instantiation: rc.c:skip_bits
Unexecuted instantiation: celt.c:skip_bits
Unexecuted instantiation: gsmdec.c:skip_bits
Unexecuted instantiation: msgsmdec.c:skip_bits
Unexecuted instantiation: imc.c:skip_bits
adpcm.c:skip_bits
Line
Count
Source
384
461k
{
385
461k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
461k
    OPEN_READER_SIZE(re, s);
387
461k
    LAST_SKIP_BITS(re, s, n);
388
461k
    CLOSE_READER(re, s);
389
461k
}
Unexecuted instantiation: wmaenc.c:skip_bits
Unexecuted instantiation: wma.c:skip_bits
Unexecuted instantiation: cfhd.c:skip_bits
wavarc.c:skip_bits
Line
Count
Source
384
1.78M
{
385
1.78M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.78M
    OPEN_READER_SIZE(re, s);
387
1.78M
    LAST_SKIP_BITS(re, s, n);
388
1.78M
    CLOSE_READER(re, s);
389
1.78M
}
Unexecuted instantiation: escape130.c:skip_bits
Unexecuted instantiation: asvdec.c:skip_bits
diracdec.c:skip_bits
Line
Count
Source
384
180k
{
385
180k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
180k
    OPEN_READER_SIZE(re, s);
387
180k
    LAST_SKIP_BITS(re, s, n);
388
180k
    CLOSE_READER(re, s);
389
180k
}
dirac_arith.c:skip_bits
Line
Count
Source
384
154k
{
385
154k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
154k
    OPEN_READER_SIZE(re, s);
387
154k
    LAST_SKIP_BITS(re, s, n);
388
154k
    CLOSE_READER(re, s);
389
154k
}
wmadec.c:skip_bits
Line
Count
Source
384
45.4k
{
385
45.4k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
45.4k
    OPEN_READER_SIZE(re, s);
387
45.4k
    LAST_SKIP_BITS(re, s, n);
388
45.4k
    CLOSE_READER(re, s);
389
45.4k
}
Unexecuted instantiation: aacenc.c:skip_bits
imm4.c:skip_bits
Line
Count
Source
384
34.5k
{
385
34.5k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
34.5k
    OPEN_READER_SIZE(re, s);
387
34.5k
    LAST_SKIP_BITS(re, s, n);
388
34.5k
    CLOSE_READER(re, s);
389
34.5k
}
Unexecuted instantiation: exr.c:skip_bits
aacdec.c:skip_bits
Line
Count
Source
384
1.74M
{
385
1.74M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.74M
    OPEN_READER_SIZE(re, s);
387
1.74M
    LAST_SKIP_BITS(re, s, n);
388
1.74M
    CLOSE_READER(re, s);
389
1.74M
}
Unexecuted instantiation: aacdec_fixed.c:skip_bits
Unexecuted instantiation: aacdec_float.c:skip_bits
Unexecuted instantiation: aacdec_tab.c:skip_bits
aacdec_usac.c:skip_bits
Line
Count
Source
384
1.24M
{
385
1.24M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.24M
    OPEN_READER_SIZE(re, s);
387
1.24M
    LAST_SKIP_BITS(re, s, n);
388
1.24M
    CLOSE_READER(re, s);
389
1.24M
}
Unexecuted instantiation: aacdec_usac_mps212.c:skip_bits
aacps_common.c:skip_bits
Line
Count
Source
384
620k
{
385
620k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
620k
    OPEN_READER_SIZE(re, s);
387
620k
    LAST_SKIP_BITS(re, s, n);
388
620k
    CLOSE_READER(re, s);
389
620k
}
aacsbr.c:skip_bits
Line
Count
Source
384
766k
{
385
766k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
766k
    OPEN_READER_SIZE(re, s);
387
766k
    LAST_SKIP_BITS(re, s, n);
388
766k
    CLOSE_READER(re, s);
389
766k
}
aacsbr_fixed.c:skip_bits
Line
Count
Source
384
248k
{
385
248k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
248k
    OPEN_READER_SIZE(re, s);
387
248k
    LAST_SKIP_BITS(re, s, n);
388
248k
    CLOSE_READER(re, s);
389
248k
}
Unexecuted instantiation: aacdec_ac.c:skip_bits
aacdec_lpd.c:skip_bits
Line
Count
Source
384
560k
{
385
560k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
560k
    OPEN_READER_SIZE(re, s);
387
560k
    LAST_SKIP_BITS(re, s, n);
388
560k
    CLOSE_READER(re, s);
389
560k
}
Unexecuted instantiation: aacps_fixed.c:skip_bits
Unexecuted instantiation: aacps_float.c:skip_bits
mjpegdec.c:skip_bits
Line
Count
Source
384
37.0k
{
385
37.0k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
37.0k
    OPEN_READER_SIZE(re, s);
387
37.0k
    LAST_SKIP_BITS(re, s, n);
388
37.0k
    CLOSE_READER(re, s);
389
37.0k
}
Unexecuted instantiation: mjpegdec_common.c:skip_bits
Unexecuted instantiation: jpeglsdec.c:skip_bits
Unexecuted instantiation: jvdec.c:skip_bits
Unexecuted instantiation: rdt.c:skip_bits
Unexecuted instantiation: rtpdec_h261.c:skip_bits
Unexecuted instantiation: rtpdec_h263_rfc2190.c:skip_bits
Unexecuted instantiation: rtpdec_latm.c:skip_bits
Unexecuted instantiation: rtpdec_mpeg4.c:skip_bits
Unexecuted instantiation: rtpdec_qt.c:skip_bits
h264_cavlc.c:skip_bits
Line
Count
Source
384
8.03M
{
385
8.03M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
8.03M
    OPEN_READER_SIZE(re, s);
387
8.03M
    LAST_SKIP_BITS(re, s, n);
388
8.03M
    CLOSE_READER(re, s);
389
8.03M
}
Unexecuted instantiation: h264_direct.c:skip_bits
Unexecuted instantiation: h264_mb.c:skip_bits
Unexecuted instantiation: h264_picture.c:skip_bits
h264_refs.c:skip_bits
Line
Count
Source
384
1.11M
{
385
1.11M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.11M
    OPEN_READER_SIZE(re, s);
387
1.11M
    LAST_SKIP_BITS(re, s, n);
388
1.11M
    CLOSE_READER(re, s);
389
1.11M
}
h264_slice.c:skip_bits
Line
Count
Source
384
1.48M
{
385
1.48M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.48M
    OPEN_READER_SIZE(re, s);
387
1.48M
    LAST_SKIP_BITS(re, s, n);
388
1.48M
    CLOSE_READER(re, s);
389
1.48M
}
Unexecuted instantiation: h264_cabac.c:skip_bits
Unexecuted instantiation: h264_loopfilter.c:skip_bits
alsdec.c:skip_bits
Line
Count
Source
384
1.27M
{
385
1.27M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.27M
    OPEN_READER_SIZE(re, s);
387
1.27M
    LAST_SKIP_BITS(re, s, n);
388
1.27M
    CLOSE_READER(re, s);
389
1.27M
}
Unexecuted instantiation: bgmc.c:skip_bits
Unexecuted instantiation: mlz.c:skip_bits
bonk.c:skip_bits
Line
Count
Source
384
73.6k
{
385
73.6k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
73.6k
    OPEN_READER_SIZE(re, s);
387
73.6k
    LAST_SKIP_BITS(re, s, n);
388
73.6k
    CLOSE_READER(re, s);
389
73.6k
}
Unexecuted instantiation: mxpegdec.c:skip_bits
rv30.c:skip_bits
Line
Count
Source
384
510k
{
385
510k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
510k
    OPEN_READER_SIZE(re, s);
387
510k
    LAST_SKIP_BITS(re, s, n);
388
510k
    CLOSE_READER(re, s);
389
510k
}
Unexecuted instantiation: rv34.c:skip_bits
Unexecuted instantiation: indeo3.c:skip_bits
Unexecuted instantiation: eamad.c:skip_bits
Unexecuted instantiation: mpeg12.c:skip_bits
Unexecuted instantiation: g726.c:skip_bits
vc1dec.c:skip_bits
Line
Count
Source
384
211k
{
385
211k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
211k
    OPEN_READER_SIZE(re, s);
387
211k
    LAST_SKIP_BITS(re, s, n);
388
211k
    CLOSE_READER(re, s);
389
211k
}
Unexecuted instantiation: vc1_block.c:skip_bits
Unexecuted instantiation: vc1_loopfilter.c:skip_bits
Unexecuted instantiation: vc1_mc.c:skip_bits
Unexecuted instantiation: vc1_pred.c:skip_bits
mpegaudiodec_float.c:skip_bits
Line
Count
Source
384
2.23M
{
385
2.23M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
2.23M
    OPEN_READER_SIZE(re, s);
387
2.23M
    LAST_SKIP_BITS(re, s, n);
388
2.23M
    CLOSE_READER(re, s);
389
2.23M
}
huffyuvdec.c:skip_bits
Line
Count
Source
384
82.8k
{
385
82.8k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
82.8k
    OPEN_READER_SIZE(re, s);
387
82.8k
    LAST_SKIP_BITS(re, s, n);
388
82.8k
    CLOSE_READER(re, s);
389
82.8k
}
Unexecuted instantiation: speexdec.c:skip_bits
Unexecuted instantiation: atrac3plusdec.c:skip_bits
Unexecuted instantiation: atrac3plusdsp.c:skip_bits
Unexecuted instantiation: atrac3plus.c:skip_bits
Unexecuted instantiation: mss4.c:skip_bits
Unexecuted instantiation: tiff.c:skip_bits
faxcompr.c:skip_bits
Line
Count
Source
384
271k
{
385
271k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
271k
    OPEN_READER_SIZE(re, s);
387
271k
    LAST_SKIP_BITS(re, s, n);
388
271k
    CLOSE_READER(re, s);
389
271k
}
ac3dec_float.c:skip_bits
Line
Count
Source
384
1.86M
{
385
1.86M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.86M
    OPEN_READER_SIZE(re, s);
387
1.86M
    LAST_SKIP_BITS(re, s, n);
388
1.86M
    CLOSE_READER(re, s);
389
1.86M
}
Unexecuted instantiation: on2avc.c:skip_bits
smacker.c:skip_bits
Line
Count
Source
384
352k
{
385
352k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
352k
    OPEN_READER_SIZE(re, s);
387
352k
    LAST_SKIP_BITS(re, s, n);
388
352k
    CLOSE_READER(re, s);
389
352k
}
Unexecuted instantiation: dvbsubdec.c:skip_bits
Unexecuted instantiation: mss1.c:skip_bits
Unexecuted instantiation: mss12.c:skip_bits
mss2.c:skip_bits
Line
Count
Source
384
181k
{
385
181k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
181k
    OPEN_READER_SIZE(re, s);
387
181k
    LAST_SKIP_BITS(re, s, n);
388
181k
    CLOSE_READER(re, s);
389
181k
}
mdec.c:skip_bits
Line
Count
Source
384
128k
{
385
128k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
128k
    OPEN_READER_SIZE(re, s);
387
128k
    LAST_SKIP_BITS(re, s, n);
388
128k
    CLOSE_READER(re, s);
389
128k
}
osq.c:skip_bits
Line
Count
Source
384
45.3k
{
385
45.3k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
45.3k
    OPEN_READER_SIZE(re, s);
387
45.3k
    LAST_SKIP_BITS(re, s, n);
388
45.3k
    CLOSE_READER(re, s);
389
45.3k
}
Unexecuted instantiation: vp6.c:skip_bits
Unexecuted instantiation: vp56.c:skip_bits
Unexecuted instantiation: vp56data.c:skip_bits
Unexecuted instantiation: loco.c:skip_bits
Unexecuted instantiation: vp5.c:skip_bits
Unexecuted instantiation: ra144dec.c:skip_bits
indeo5.c:skip_bits
Line
Count
Source
384
7.12M
{
385
7.12M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
7.12M
    OPEN_READER_SIZE(re, s);
387
7.12M
    LAST_SKIP_BITS(re, s, n);
388
7.12M
    CLOSE_READER(re, s);
389
7.12M
}
ivi.c:skip_bits
Line
Count
Source
384
85.7k
{
385
85.7k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
85.7k
    OPEN_READER_SIZE(re, s);
387
85.7k
    LAST_SKIP_BITS(re, s, n);
388
85.7k
    CLOSE_READER(re, s);
389
85.7k
}
Unexecuted instantiation: ivi_dsp.c:skip_bits
apac.c:skip_bits
Line
Count
Source
384
300k
{
385
300k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
300k
    OPEN_READER_SIZE(re, s);
387
300k
    LAST_SKIP_BITS(re, s, n);
388
300k
    CLOSE_READER(re, s);
389
300k
}
Unexecuted instantiation: clearvideo.c:skip_bits
Unexecuted instantiation: dxtory.c:skip_bits
mpegaudiodec_fixed.c:skip_bits
Line
Count
Source
384
2.14M
{
385
2.14M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
2.14M
    OPEN_READER_SIZE(re, s);
387
2.14M
    LAST_SKIP_BITS(re, s, n);
388
2.14M
    CLOSE_READER(re, s);
389
2.14M
}
Unexecuted instantiation: ralf.c:skip_bits
pixlet.c:skip_bits
Line
Count
Source
384
29.0M
{
385
29.0M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
29.0M
    OPEN_READER_SIZE(re, s);
387
29.0M
    LAST_SKIP_BITS(re, s, n);
388
29.0M
    CLOSE_READER(re, s);
389
29.0M
}
Unexecuted instantiation: wnv1.c:skip_bits
Unexecuted instantiation: qoadec.c:skip_bits
Unexecuted instantiation: vima.c:skip_bits
Unexecuted instantiation: leaddec.c:skip_bits
Unexecuted instantiation: eatqi.c:skip_bits
Unexecuted instantiation: lagarith.c:skip_bits
lagarithrac.c:skip_bits
Line
Count
Source
384
6.46k
{
385
6.46k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
6.46k
    OPEN_READER_SIZE(re, s);
387
6.46k
    LAST_SKIP_BITS(re, s, n);
388
6.46k
    CLOSE_READER(re, s);
389
6.46k
}
Unexecuted instantiation: dss_sp.c:skip_bits
siren.c:skip_bits
Line
Count
Source
384
1.02M
{
385
1.02M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.02M
    OPEN_READER_SIZE(re, s);
387
1.02M
    LAST_SKIP_BITS(re, s, n);
388
1.02M
    CLOSE_READER(re, s);
389
1.02M
}
cavsdec.c:skip_bits
Line
Count
Source
384
438k
{
385
438k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
438k
    OPEN_READER_SIZE(re, s);
387
438k
    LAST_SKIP_BITS(re, s, n);
388
438k
    CLOSE_READER(re, s);
389
438k
}
Unexecuted instantiation: cavs.c:skip_bits
Unexecuted instantiation: cavsdata.c:skip_bits
Unexecuted instantiation: hcom.c:skip_bits
vp3.c:skip_bits
Line
Count
Source
384
25.6M
{
385
25.6M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
25.6M
    OPEN_READER_SIZE(re, s);
387
25.6M
    LAST_SKIP_BITS(re, s, n);
388
25.6M
    CLOSE_READER(re, s);
389
25.6M
}
webp.c:skip_bits
Line
Count
Source
384
136M
{
385
136M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
136M
    OPEN_READER_SIZE(re, s);
387
136M
    LAST_SKIP_BITS(re, s, n);
388
136M
    CLOSE_READER(re, s);
389
136M
}
mpc8.c:skip_bits
Line
Count
Source
384
427k
{
385
427k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
427k
    OPEN_READER_SIZE(re, s);
387
427k
    LAST_SKIP_BITS(re, s, n);
388
427k
    CLOSE_READER(re, s);
389
427k
}
Unexecuted instantiation: eatgv.c:skip_bits
eatgq.c:skip_bits
Line
Count
Source
384
44.8M
{
385
44.8M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
44.8M
    OPEN_READER_SIZE(re, s);
387
44.8M
    LAST_SKIP_BITS(re, s, n);
388
44.8M
    CLOSE_READER(re, s);
389
44.8M
}
Unexecuted instantiation: sga.c:skip_bits
binkaudio.c:skip_bits
Line
Count
Source
384
1.06M
{
385
1.06M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.06M
    OPEN_READER_SIZE(re, s);
387
1.06M
    LAST_SKIP_BITS(re, s, n);
388
1.06M
    CLOSE_READER(re, s);
389
1.06M
}
mpeg12dec.c:skip_bits
Line
Count
Source
384
3.71M
{
385
3.71M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
3.71M
    OPEN_READER_SIZE(re, s);
387
3.71M
    LAST_SKIP_BITS(re, s, n);
388
3.71M
    CLOSE_READER(re, s);
389
3.71M
}
Unexecuted instantiation: indeo2.c:skip_bits
Unexecuted instantiation: 4xm.c:skip_bits
wmalosslessdec.c:skip_bits
Line
Count
Source
384
808k
{
385
808k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
808k
    OPEN_READER_SIZE(re, s);
387
808k
    LAST_SKIP_BITS(re, s, n);
388
808k
    CLOSE_READER(re, s);
389
808k
}
Unexecuted instantiation: ilbcdec.c:skip_bits
hevcdec.c:skip_bits
Line
Count
Source
384
355k
{
385
355k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
355k
    OPEN_READER_SIZE(re, s);
387
355k
    LAST_SKIP_BITS(re, s, n);
388
355k
    CLOSE_READER(re, s);
389
355k
}
Unexecuted instantiation: mvs.c:skip_bits
Unexecuted instantiation: pred.c:skip_bits
Unexecuted instantiation: refs.c:skip_bits
Unexecuted instantiation: cabac.c:skip_bits
Unexecuted instantiation: dsp.c:skip_bits
Unexecuted instantiation: filter.c:skip_bits
Unexecuted instantiation: tscc2.c:skip_bits
Unexecuted instantiation: hqx.c:skip_bits
Unexecuted instantiation: mobiclip.c:skip_bits
wmaprodec.c:skip_bits
Line
Count
Source
384
7.07M
{
385
7.07M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
7.07M
    OPEN_READER_SIZE(re, s);
387
7.07M
    LAST_SKIP_BITS(re, s, n);
388
7.07M
    CLOSE_READER(re, s);
389
7.07M
}
Unexecuted instantiation: g729dec.c:skip_bits
Unexecuted instantiation: sipr.c:skip_bits
g722dec.c:skip_bits
Line
Count
Source
384
13.8M
{
385
13.8M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
13.8M
    OPEN_READER_SIZE(re, s);
387
13.8M
    LAST_SKIP_BITS(re, s, n);
388
13.8M
    CLOSE_READER(re, s);
389
13.8M
}
Unexecuted instantiation: nellymoserdec.c:skip_bits
Unexecuted instantiation: dcaenc.c:skip_bits
Unexecuted instantiation: dcaadpcm.c:skip_bits
Unexecuted instantiation: dcadata.c:skip_bits
Unexecuted instantiation: interplayvideo.c:skip_bits
Unexecuted instantiation: dec.c:skip_bits
Unexecuted instantiation: dec_celt.c:skip_bits
Unexecuted instantiation: silk.c:skip_bits
mjpegbdec.c:skip_bits
Line
Count
Source
384
1.16M
{
385
1.16M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.16M
    OPEN_READER_SIZE(re, s);
387
1.16M
    LAST_SKIP_BITS(re, s, n);
388
1.16M
    CLOSE_READER(re, s);
389
1.16M
}
Unexecuted instantiation: bink.c:skip_bits
dvdsubdec.c:skip_bits
Line
Count
Source
384
49.2k
{
385
49.2k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
49.2k
    OPEN_READER_SIZE(re, s);
387
49.2k
    LAST_SKIP_BITS(re, s, n);
388
49.2k
    CLOSE_READER(re, s);
389
49.2k
}
rtjpeg.c:skip_bits
Line
Count
Source
384
12.7M
{
385
12.7M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
12.7M
    OPEN_READER_SIZE(re, s);
387
12.7M
    LAST_SKIP_BITS(re, s, n);
388
12.7M
    CLOSE_READER(re, s);
389
12.7M
}
Unexecuted instantiation: truespeech.c:skip_bits
metasound.c:skip_bits
Line
Count
Source
384
15.6k
{
385
15.6k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
15.6k
    OPEN_READER_SIZE(re, s);
387
15.6k
    LAST_SKIP_BITS(re, s, n);
388
15.6k
    CLOSE_READER(re, s);
389
15.6k
}
Unexecuted instantiation: escape124.c:skip_bits
cllc.c:skip_bits
Line
Count
Source
384
115k
{
385
115k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
115k
    OPEN_READER_SIZE(re, s);
387
115k
    LAST_SKIP_BITS(re, s, n);
388
115k
    CLOSE_READER(re, s);
389
115k
}
Unexecuted instantiation: dvdec.c:skip_bits
tta.c:skip_bits
Line
Count
Source
384
20.5k
{
385
20.5k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
20.5k
    OPEN_READER_SIZE(re, s);
387
20.5k
    LAST_SKIP_BITS(re, s, n);
388
20.5k
    CLOSE_READER(re, s);
389
20.5k
}
Unexecuted instantiation: fraps.c:skip_bits
Unexecuted instantiation: motionpixels.c:skip_bits
vp9.c:skip_bits
Line
Count
Source
384
610k
{
385
610k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
610k
    OPEN_READER_SIZE(re, s);
387
610k
    LAST_SKIP_BITS(re, s, n);
388
610k
    CLOSE_READER(re, s);
389
610k
}
Unexecuted instantiation: vp9block.c:skip_bits
Unexecuted instantiation: vp9data.c:skip_bits
Unexecuted instantiation: vp9lpf.c:skip_bits
Unexecuted instantiation: vp9mvs.c:skip_bits
Unexecuted instantiation: vp9prob.c:skip_bits
Unexecuted instantiation: vp9recon.c:skip_bits
Unexecuted instantiation: ffv1dec.c:skip_bits
Unexecuted instantiation: intra_utils.c:skip_bits
Unexecuted instantiation: thread.c:skip_bits
Unexecuted instantiation: ctu.c:skip_bits
Unexecuted instantiation: inter.c:skip_bits
Unexecuted instantiation: intra.c:skip_bits
wmavoice.c:skip_bits
Line
Count
Source
384
1.20M
{
385
1.20M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.20M
    OPEN_READER_SIZE(re, s);
387
1.20M
    LAST_SKIP_BITS(re, s, n);
388
1.20M
    CLOSE_READER(re, s);
389
1.20M
}
Unexecuted instantiation: rawdec.c:skip_bits
svq1dec.c:skip_bits
Line
Count
Source
384
172k
{
385
172k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
172k
    OPEN_READER_SIZE(re, s);
387
172k
    LAST_SKIP_BITS(re, s, n);
388
172k
    CLOSE_READER(re, s);
389
172k
}
Unexecuted instantiation: mpc7.c:skip_bits
truemotion2rt.c:skip_bits
Line
Count
Source
384
137k
{
385
137k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
137k
    OPEN_READER_SIZE(re, s);
387
137k
    LAST_SKIP_BITS(re, s, n);
388
137k
    CLOSE_READER(re, s);
389
137k
}
Unexecuted instantiation: adxdec.c:skip_bits
rv40.c:skip_bits
Line
Count
Source
384
158k
{
385
158k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
158k
    OPEN_READER_SIZE(re, s);
387
158k
    LAST_SKIP_BITS(re, s, n);
388
158k
    CLOSE_READER(re, s);
389
158k
}
xsubdec.c:skip_bits
Line
Count
Source
384
451k
{
385
451k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
451k
    OPEN_READER_SIZE(re, s);
387
451k
    LAST_SKIP_BITS(re, s, n);
388
451k
    CLOSE_READER(re, s);
389
451k
}
Unexecuted instantiation: notchlc.c:skip_bits
Unexecuted instantiation: aic.c:skip_bits
vqcdec.c:skip_bits
Line
Count
Source
384
12.6M
{
385
12.6M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
12.6M
    OPEN_READER_SIZE(re, s);
387
12.6M
    LAST_SKIP_BITS(re, s, n);
388
12.6M
    CLOSE_READER(re, s);
389
12.6M
}
Unexecuted instantiation: dolby_e.c:skip_bits
Unexecuted instantiation: proresdec.c:skip_bits
Unexecuted instantiation: evrcdec.c:skip_bits
Unexecuted instantiation: dnxhddec.c:skip_bits
Unexecuted instantiation: dcadec.c:skip_bits
dca_core.c:skip_bits
Line
Count
Source
384
275k
{
385
275k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
275k
    OPEN_READER_SIZE(re, s);
387
275k
    LAST_SKIP_BITS(re, s, n);
388
275k
    CLOSE_READER(re, s);
389
275k
}
Unexecuted instantiation: dca_lbr.c:skip_bits
dca_xll.c:skip_bits
Line
Count
Source
384
48.8k
{
385
48.8k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
48.8k
    OPEN_READER_SIZE(re, s);
387
48.8k
    LAST_SKIP_BITS(re, s, n);
388
48.8k
    CLOSE_READER(re, s);
389
48.8k
}
Unexecuted instantiation: mlpenc.c:skip_bits
mlpdec.c:skip_bits
Line
Count
Source
384
544k
{
385
544k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
544k
    OPEN_READER_SIZE(re, s);
387
544k
    LAST_SKIP_BITS(re, s, n);
388
544k
    CLOSE_READER(re, s);
389
544k
}
atrac3.c:skip_bits
Line
Count
Source
384
5.99M
{
385
5.99M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
5.99M
    OPEN_READER_SIZE(re, s);
387
5.99M
    LAST_SKIP_BITS(re, s, n);
388
5.99M
    CLOSE_READER(re, s);
389
5.99M
}
vorbisdec.c:skip_bits
Line
Count
Source
384
11.0k
{
385
11.0k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
11.0k
    OPEN_READER_SIZE(re, s);
387
11.0k
    LAST_SKIP_BITS(re, s, n);
388
11.0k
    CLOSE_READER(re, s);
389
11.0k
}
flashsv.c:skip_bits
Line
Count
Source
384
232k
{
385
232k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
232k
    OPEN_READER_SIZE(re, s);
387
232k
    LAST_SKIP_BITS(re, s, n);
388
232k
    CLOSE_READER(re, s);
389
232k
}
Unexecuted instantiation: wavpack.c:skip_bits
Unexecuted instantiation: speedhqdec.c:skip_bits
g723_1dec.c:skip_bits
Line
Count
Source
384
805k
{
385
805k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
805k
    OPEN_READER_SIZE(re, s);
387
805k
    LAST_SKIP_BITS(re, s, n);
388
805k
    CLOSE_READER(re, s);
389
805k
}
Unexecuted instantiation: g2meet.c:skip_bits
shorten.c:skip_bits
Line
Count
Source
384
1.97M
{
385
1.97M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.97M
    OPEN_READER_SIZE(re, s);
387
1.97M
    LAST_SKIP_BITS(re, s, n);
388
1.97M
    CLOSE_READER(re, s);
389
1.97M
}
indeo4.c:skip_bits
Line
Count
Source
384
82.2k
{
385
82.2k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
82.2k
    OPEN_READER_SIZE(re, s);
387
82.2k
    LAST_SKIP_BITS(re, s, n);
388
82.2k
    CLOSE_READER(re, s);
389
82.2k
}
Unexecuted instantiation: sp5xdec.c:skip_bits
atrac1.c:skip_bits
Line
Count
Source
384
405k
{
385
405k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
405k
    OPEN_READER_SIZE(re, s);
387
405k
    LAST_SKIP_BITS(re, s, n);
388
405k
    CLOSE_READER(re, s);
389
405k
}
Unexecuted instantiation: apv_decode.c:skip_bits
apv_entropy.c:skip_bits
Line
Count
Source
384
188M
{
385
188M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
188M
    OPEN_READER_SIZE(re, s);
387
188M
    LAST_SKIP_BITS(re, s, n);
388
188M
    CLOSE_READER(re, s);
389
188M
}
avs.c:skip_bits
Line
Count
Source
384
422k
{
385
422k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
422k
    OPEN_READER_SIZE(re, s);
387
422k
    LAST_SKIP_BITS(re, s, n);
388
422k
    CLOSE_READER(re, s);
389
422k
}
rv60dec.c:skip_bits
Line
Count
Source
384
707k
{
385
707k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
707k
    OPEN_READER_SIZE(re, s);
387
707k
    LAST_SKIP_BITS(re, s, n);
388
707k
    CLOSE_READER(re, s);
389
707k
}
alac.c:skip_bits
Line
Count
Source
384
19.9M
{
385
19.9M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
19.9M
    OPEN_READER_SIZE(re, s);
387
19.9M
    LAST_SKIP_BITS(re, s, n);
388
19.9M
    CLOSE_READER(re, s);
389
19.9M
}
Unexecuted instantiation: tiertexseqv.c:skip_bits
Unexecuted instantiation: ffv1enc.c:skip_bits
Unexecuted instantiation: hcadec.c:skip_bits
Unexecuted instantiation: pcx.c:skip_bits
Unexecuted instantiation: qcelpdec.c:skip_bits
flacdec.c:skip_bits
Line
Count
Source
384
554k
{
385
554k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
554k
    OPEN_READER_SIZE(re, s);
387
554k
    LAST_SKIP_BITS(re, s, n);
388
554k
    CLOSE_READER(re, s);
389
554k
}
ac3dec_fixed.c:skip_bits
Line
Count
Source
384
864k
{
385
864k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
864k
    OPEN_READER_SIZE(re, s);
387
864k
    LAST_SKIP_BITS(re, s, n);
388
864k
    CLOSE_READER(re, s);
389
864k
}
Unexecuted instantiation: midivid.c:skip_bits
Unexecuted instantiation: mimic.c:skip_bits
Unexecuted instantiation: fic.c:skip_bits
Unexecuted instantiation: qdmc.c:skip_bits
Unexecuted instantiation: ra288.c:skip_bits
interplayacm.c:skip_bits
Line
Count
Source
384
109k
{
385
109k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
109k
    OPEN_READER_SIZE(re, s);
387
109k
    LAST_SKIP_BITS(re, s, n);
388
109k
    CLOSE_READER(re, s);
389
109k
}
Unexecuted instantiation: ylc.c:skip_bits
Unexecuted instantiation: ftr.c:skip_bits
agm.c:skip_bits
Line
Count
Source
384
2.82M
{
385
2.82M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
2.82M
    OPEN_READER_SIZE(re, s);
387
2.82M
    LAST_SKIP_BITS(re, s, n);
388
2.82M
    CLOSE_READER(re, s);
389
2.82M
}
Unexecuted instantiation: xan.c:skip_bits
svq3.c:skip_bits
Line
Count
Source
384
850k
{
385
850k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
850k
    OPEN_READER_SIZE(re, s);
387
850k
    LAST_SKIP_BITS(re, s, n);
388
850k
    CLOSE_READER(re, s);
389
850k
}
Unexecuted instantiation: cri.c:skip_bits
qdm2.c:skip_bits
Line
Count
Source
384
133k
{
385
133k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
133k
    OPEN_READER_SIZE(re, s);
387
133k
    LAST_SKIP_BITS(re, s, n);
388
133k
    CLOSE_READER(re, s);
389
133k
}
Unexecuted instantiation: cljrdec.c:skip_bits
Unexecuted instantiation: g728dec.c:skip_bits
Unexecuted instantiation: cook.c:skip_bits
twinvqdec.c:skip_bits
Line
Count
Source
384
230k
{
385
230k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
230k
    OPEN_READER_SIZE(re, s);
387
230k
    LAST_SKIP_BITS(re, s, n);
388
230k
    CLOSE_READER(re, s);
389
230k
}
Unexecuted instantiation: hq_hqa.c:skip_bits
cdxl.c:skip_bits
Line
Count
Source
384
1.48M
{
385
1.48M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
1.48M
    OPEN_READER_SIZE(re, s);
387
1.48M
    LAST_SKIP_BITS(re, s, n);
388
1.48M
    CLOSE_READER(re, s);
389
1.48M
}
vble.c:skip_bits
Line
Count
Source
384
56.5M
{
385
56.5M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
56.5M
    OPEN_READER_SIZE(re, s);
387
56.5M
    LAST_SKIP_BITS(re, s, n);
388
56.5M
    CLOSE_READER(re, s);
389
56.5M
}
mv30.c:skip_bits
Line
Count
Source
384
40.0k
{
385
40.0k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
40.0k
    OPEN_READER_SIZE(re, s);
387
40.0k
    LAST_SKIP_BITS(re, s, n);
388
40.0k
    CLOSE_READER(re, s);
389
40.0k
}
Unexecuted instantiation: apedec.c:skip_bits
h261dec.c:skip_bits
Line
Count
Source
384
4.48M
{
385
4.48M
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
4.48M
    OPEN_READER_SIZE(re, s);
387
4.48M
    LAST_SKIP_BITS(re, s, n);
388
4.48M
    CLOSE_READER(re, s);
389
4.48M
}
dstdec.c:skip_bits
Line
Count
Source
384
7.69k
{
385
7.69k
    OPEN_READER_NOSIZE_NOCACHE(re, s);
386
7.69k
    OPEN_READER_SIZE(re, s);
387
7.69k
    LAST_SKIP_BITS(re, s, n);
388
7.69k
    CLOSE_READER(re, s);
389
7.69k
}
Unexecuted instantiation: jpeglsenc.c:skip_bits
Unexecuted instantiation: truemotion2.c:skip_bits
390
391
static inline unsigned int get_bits1(GetBitContext *s)
392
16.9G
{
393
16.9G
    unsigned int index = s->index;
394
16.9G
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
16.5G
    if (s->index < s->size_in_bits_plus8)
404
13.4G
#endif
405
13.4G
        index++;
406
16.9G
    s->index = index;
407
408
16.9G
    return result;
409
16.9G
}
Unexecuted instantiation: mpegvideo_motion.c:get_bits1
wmv2dec.c:get_bits1
Line
Count
Source
392
23.4M
{
393
23.4M
    unsigned int index = s->index;
394
23.4M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
23.4M
    result <<= index & 7;
400
23.4M
    result >>= 8 - 1;
401
23.4M
#endif
402
23.4M
#if !UNCHECKED_BITSTREAM_READER
403
23.4M
    if (s->index < s->size_in_bits_plus8)
404
23.4M
#endif
405
23.4M
        index++;
406
23.4M
    s->index = index;
407
408
23.4M
    return result;
409
23.4M
}
Unexecuted instantiation: aac_adtstoasc.c:get_bits1
Unexecuted instantiation: dovi_rpu.c:get_bits1
Unexecuted instantiation: dovi_split.c:get_bits1
Unexecuted instantiation: dts2pts.c:get_bits1
Unexecuted instantiation: eac3_core.c:get_bits1
evc_frame_merge.c:get_bits1
Line
Count
Source
392
135k
{
393
135k
    unsigned int index = s->index;
394
135k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
135k
    result <<= index & 7;
400
135k
    result >>= 8 - 1;
401
135k
#endif
402
135k
#if !UNCHECKED_BITSTREAM_READER
403
135k
    if (s->index < s->size_in_bits_plus8)
404
135k
#endif
405
135k
        index++;
406
135k
    s->index = index;
407
408
135k
    return result;
409
135k
}
Unexecuted instantiation: extract_extradata.c:get_bits1
Unexecuted instantiation: h264_metadata.c:get_bits1
Unexecuted instantiation: h264_redundant_pps.c:get_bits1
Unexecuted instantiation: h265_metadata.c:get_bits1
Unexecuted instantiation: h266_metadata.c:get_bits1
Unexecuted instantiation: lcevc_merge.c:get_bits1
Unexecuted instantiation: lcevc_metadata.c:get_bits1
Unexecuted instantiation: remove_extradata.c:get_bits1
truehd_core.c:get_bits1
Line
Count
Source
392
36.4k
{
393
36.4k
    unsigned int index = s->index;
394
36.4k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
36.4k
    result <<= index & 7;
400
36.4k
    result >>= 8 - 1;
401
36.4k
#endif
402
36.4k
#if !UNCHECKED_BITSTREAM_READER
403
36.4k
    if (s->index < s->size_in_bits_plus8)
404
30.9k
#endif
405
30.9k
        index++;
406
36.4k
    s->index = index;
407
408
36.4k
    return result;
409
36.4k
}
vp9_raw_reorder.c:get_bits1
Line
Count
Source
392
1.02M
{
393
1.02M
    unsigned int index = s->index;
394
1.02M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.02M
    result <<= index & 7;
400
1.02M
    result >>= 8 - 1;
401
1.02M
#endif
402
1.02M
#if !UNCHECKED_BITSTREAM_READER
403
1.02M
    if (s->index < s->size_in_bits_plus8)
404
1.02M
#endif
405
1.02M
        index++;
406
1.02M
    s->index = index;
407
408
1.02M
    return result;
409
1.02M
}
vp9_superframe.c:get_bits1
Line
Count
Source
392
50.7k
{
393
50.7k
    unsigned int index = s->index;
394
50.7k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
50.7k
    result <<= index & 7;
400
50.7k
    result >>= 8 - 1;
401
50.7k
#endif
402
50.7k
#if !UNCHECKED_BITSTREAM_READER
403
50.7k
    if (s->index < s->size_in_bits_plus8)
404
50.7k
#endif
405
50.7k
        index++;
406
50.7k
    s->index = index;
407
408
50.7k
    return result;
409
50.7k
}
vp9_superframe_split.c:get_bits1
Line
Count
Source
392
27.7k
{
393
27.7k
    unsigned int index = s->index;
394
27.7k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
27.7k
    result <<= index & 7;
400
27.7k
    result >>= 8 - 1;
401
27.7k
#endif
402
27.7k
#if !UNCHECKED_BITSTREAM_READER
403
27.7k
    if (s->index < s->size_in_bits_plus8)
404
27.7k
#endif
405
27.7k
        index++;
406
27.7k
    s->index = index;
407
408
27.7k
    return result;
409
27.7k
}
cbs.c:get_bits1
Line
Count
Source
392
9.01G
{
393
9.01G
    unsigned int index = s->index;
394
9.01G
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
9.01G
    result <<= index & 7;
400
9.01G
    result >>= 8 - 1;
401
9.01G
#endif
402
9.01G
#if !UNCHECKED_BITSTREAM_READER
403
9.01G
    if (s->index < s->size_in_bits_plus8)
404
9.01G
#endif
405
9.01G
        index++;
406
9.01G
    s->index = index;
407
408
9.01G
    return result;
409
9.01G
}
Unexecuted instantiation: cbs_apv.c:get_bits1
cbs_av1.c:get_bits1
Line
Count
Source
392
9.39M
{
393
9.39M
    unsigned int index = s->index;
394
9.39M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
9.39M
    result <<= index & 7;
400
9.39M
    result >>= 8 - 1;
401
9.39M
#endif
402
9.39M
#if !UNCHECKED_BITSTREAM_READER
403
9.39M
    if (s->index < s->size_in_bits_plus8)
404
9.39M
#endif
405
9.39M
        index++;
406
9.39M
    s->index = index;
407
408
9.39M
    return result;
409
9.39M
}
Unexecuted instantiation: cbs_h264.c:get_bits1
Unexecuted instantiation: cbs_h2645.c:get_bits1
Unexecuted instantiation: cbs_h265.c:get_bits1
Unexecuted instantiation: cbs_h266.c:get_bits1
Unexecuted instantiation: cbs_lcevc.c:get_bits1
Unexecuted instantiation: cbs_mpeg2.c:get_bits1
Unexecuted instantiation: cbs_sei.c:get_bits1
Unexecuted instantiation: cbs_vp8.c:get_bits1
cbs_vp9.c:get_bits1
Line
Count
Source
392
1.98M
{
393
1.98M
    unsigned int index = s->index;
394
1.98M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.98M
    result <<= index & 7;
400
1.98M
    result >>= 8 - 1;
401
1.98M
#endif
402
1.98M
#if !UNCHECKED_BITSTREAM_READER
403
1.98M
    if (s->index < s->size_in_bits_plus8)
404
1.98M
#endif
405
1.98M
        index++;
406
1.98M
    s->index = index;
407
408
1.98M
    return result;
409
1.98M
}
dovi_rpudec.c:get_bits1
Line
Count
Source
392
82.9k
{
393
82.9k
    unsigned int index = s->index;
394
82.9k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
82.9k
    result <<= index & 7;
400
82.9k
    result >>= 8 - 1;
401
82.9k
#endif
402
82.9k
#if !UNCHECKED_BITSTREAM_READER
403
82.9k
    if (s->index < s->size_in_bits_plus8)
404
82.9k
#endif
405
82.9k
        index++;
406
82.9k
    s->index = index;
407
408
82.9k
    return result;
409
82.9k
}
evc_parse.c:get_bits1
Line
Count
Source
392
425k
{
393
425k
    unsigned int index = s->index;
394
425k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
425k
    result <<= index & 7;
400
425k
    result >>= 8 - 1;
401
425k
#endif
402
425k
#if !UNCHECKED_BITSTREAM_READER
403
425k
    if (s->index < s->size_in_bits_plus8)
404
380k
#endif
405
380k
        index++;
406
425k
    s->index = index;
407
408
425k
    return result;
409
425k
}
evc_ps.c:get_bits1
Line
Count
Source
392
3.85M
{
393
3.85M
    unsigned int index = s->index;
394
3.85M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
3.85M
    result <<= index & 7;
400
3.85M
    result >>= 8 - 1;
401
3.85M
#endif
402
3.85M
#if !UNCHECKED_BITSTREAM_READER
403
3.85M
    if (s->index < s->size_in_bits_plus8)
404
3.52M
#endif
405
3.52M
        index++;
406
3.85M
    s->index = index;
407
408
3.85M
    return result;
409
3.85M
}
Unexecuted instantiation: h263dec.c:get_bits1
h2645_parse.c:get_bits1
Line
Count
Source
392
106M
{
393
106M
    unsigned int index = s->index;
394
106M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
106M
    result <<= index & 7;
400
106M
    result >>= 8 - 1;
401
106M
#endif
402
106M
#if !UNCHECKED_BITSTREAM_READER
403
106M
    if (s->index < s->size_in_bits_plus8)
404
106M
#endif
405
106M
        index++;
406
106M
    s->index = index;
407
408
106M
    return result;
409
106M
}
h264_parse.c:get_bits1
Line
Count
Source
392
16.9M
{
393
16.9M
    unsigned int index = s->index;
394
16.9M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
16.9M
    result <<= index & 7;
400
16.9M
    result >>= 8 - 1;
401
16.9M
#endif
402
16.9M
#if !UNCHECKED_BITSTREAM_READER
403
16.9M
    if (s->index < s->size_in_bits_plus8)
404
14.2M
#endif
405
14.2M
        index++;
406
16.9M
    s->index = index;
407
408
16.9M
    return result;
409
16.9M
}
h264_ps.c:get_bits1
Line
Count
Source
392
71.1M
{
393
71.1M
    unsigned int index = s->index;
394
71.1M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
71.1M
    result <<= index & 7;
400
71.1M
    result >>= 8 - 1;
401
71.1M
#endif
402
71.1M
#if !UNCHECKED_BITSTREAM_READER
403
71.1M
    if (s->index < s->size_in_bits_plus8)
404
64.2M
#endif
405
64.2M
        index++;
406
71.1M
    s->index = index;
407
408
71.1M
    return result;
409
71.1M
}
Unexecuted instantiation: h264data.c:get_bits1
Unexecuted instantiation: h265_profile_level.c:get_bits1
ps.c:get_bits1
Line
Count
Source
392
920M
{
393
920M
    unsigned int index = s->index;
394
920M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
920M
    result <<= index & 7;
400
920M
    result >>= 8 - 1;
401
920M
#endif
402
920M
#if !UNCHECKED_BITSTREAM_READER
403
920M
    if (s->index < s->size_in_bits_plus8)
404
890M
#endif
405
890M
        index++;
406
920M
    s->index = index;
407
408
920M
    return result;
409
920M
}
intelh263dec.c:get_bits1
Line
Count
Source
392
321k
{
393
321k
    unsigned int index = s->index;
394
321k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
321k
    result <<= index & 7;
400
321k
    result >>= 8 - 1;
401
321k
#endif
402
321k
#if !UNCHECKED_BITSTREAM_READER
403
321k
    if (s->index < s->size_in_bits_plus8)
404
320k
#endif
405
320k
        index++;
406
321k
    s->index = index;
407
408
321k
    return result;
409
321k
}
intrax8.c:get_bits1
Line
Count
Source
392
11.5M
{
393
11.5M
    unsigned int index = s->index;
394
11.5M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
11.5M
    result <<= index & 7;
400
11.5M
    result >>= 8 - 1;
401
11.5M
#endif
402
11.5M
#if !UNCHECKED_BITSTREAM_READER
403
11.5M
    if (s->index < s->size_in_bits_plus8)
404
8.19M
#endif
405
8.19M
        index++;
406
11.5M
    s->index = index;
407
408
11.5M
    return result;
409
11.5M
}
ituh263dec.c:get_bits1
Line
Count
Source
392
127M
{
393
127M
    unsigned int index = s->index;
394
127M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
127M
    result <<= index & 7;
400
127M
    result >>= 8 - 1;
401
127M
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
    if (s->index < s->size_in_bits_plus8)
404
#endif
405
127M
        index++;
406
127M
    s->index = index;
407
408
127M
    return result;
409
127M
}
mlp_parse.c:get_bits1
Line
Count
Source
392
310k
{
393
310k
    unsigned int index = s->index;
394
310k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
310k
    result <<= index & 7;
400
310k
    result >>= 8 - 1;
401
310k
#endif
402
310k
#if !UNCHECKED_BITSTREAM_READER
403
310k
    if (s->index < s->size_in_bits_plus8)
404
310k
#endif
405
310k
        index++;
406
310k
    s->index = index;
407
408
310k
    return result;
409
310k
}
mpeg4audio.c:get_bits1
Line
Count
Source
392
130M
{
393
130M
    unsigned int index = s->index;
394
130M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
130M
    result <<= index & 7;
400
130M
    result >>= 8 - 1;
401
130M
#endif
402
130M
#if !UNCHECKED_BITSTREAM_READER
403
130M
    if (s->index < s->size_in_bits_plus8)
404
130M
#endif
405
130M
        index++;
406
130M
    s->index = index;
407
408
130M
    return result;
409
130M
}
mpeg4videodec.c:get_bits1
Line
Count
Source
392
42.2M
{
393
42.2M
    unsigned int index = s->index;
394
42.2M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
42.2M
    result <<= index & 7;
400
42.2M
    result >>= 8 - 1;
401
42.2M
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
    if (s->index < s->size_in_bits_plus8)
404
#endif
405
42.2M
        index++;
406
42.2M
    s->index = index;
407
408
42.2M
    return result;
409
42.2M
}
Unexecuted instantiation: mpeg_er.c:get_bits1
Unexecuted instantiation: mpegvideo_dec.c:get_bits1
msmpeg4dec.c:get_bits1
Line
Count
Source
392
28.0M
{
393
28.0M
    unsigned int index = s->index;
394
28.0M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
28.0M
    result <<= index & 7;
400
28.0M
    result >>= 8 - 1;
401
28.0M
#endif
402
28.0M
#if !UNCHECKED_BITSTREAM_READER
403
28.0M
    if (s->index < s->size_in_bits_plus8)
404
27.9M
#endif
405
27.9M
        index++;
406
28.0M
    s->index = index;
407
408
28.0M
    return result;
409
28.0M
}
rv10.c:get_bits1
Line
Count
Source
392
551k
{
393
551k
    unsigned int index = s->index;
394
551k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
551k
    result <<= index & 7;
400
551k
    result >>= 8 - 1;
401
551k
#endif
402
551k
#if !UNCHECKED_BITSTREAM_READER
403
551k
    if (s->index < s->size_in_bits_plus8)
404
529k
#endif
405
529k
        index++;
406
551k
    s->index = index;
407
408
551k
    return result;
409
551k
}
ac3_parser.c:get_bits1
Line
Count
Source
392
116M
{
393
116M
    unsigned int index = s->index;
394
116M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
116M
    result <<= index & 7;
400
116M
    result >>= 8 - 1;
401
116M
#endif
402
116M
#if !UNCHECKED_BITSTREAM_READER
403
116M
    if (s->index < s->size_in_bits_plus8)
404
105M
#endif
405
105M
        index++;
406
116M
    s->index = index;
407
408
116M
    return result;
409
116M
}
adts_header.c:get_bits1
Line
Count
Source
392
5.49M
{
393
5.49M
    unsigned int index = s->index;
394
5.49M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
5.49M
    result <<= index & 7;
400
5.49M
    result >>= 8 - 1;
401
5.49M
#endif
402
5.49M
#if !UNCHECKED_BITSTREAM_READER
403
5.49M
    if (s->index < s->size_in_bits_plus8)
404
5.49M
#endif
405
5.49M
        index++;
406
5.49M
    s->index = index;
407
408
5.49M
    return result;
409
5.49M
}
av1_parse.c:get_bits1
Line
Count
Source
392
3.75M
{
393
3.75M
    unsigned int index = s->index;
394
3.75M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
3.75M
    result <<= index & 7;
400
3.75M
    result >>= 8 - 1;
401
3.75M
#endif
402
3.75M
#if !UNCHECKED_BITSTREAM_READER
403
3.75M
    if (s->index < s->size_in_bits_plus8)
404
3.75M
#endif
405
3.75M
        index++;
406
3.75M
    s->index = index;
407
408
3.75M
    return result;
409
3.75M
}
flvdec.c:get_bits1
Line
Count
Source
392
88.1k
{
393
88.1k
    unsigned int index = s->index;
394
88.1k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
88.1k
    result <<= index & 7;
400
88.1k
    result >>= 8 - 1;
401
88.1k
#endif
402
88.1k
#if !UNCHECKED_BITSTREAM_READER
403
88.1k
    if (s->index < s->size_in_bits_plus8)
404
88.1k
#endif
405
88.1k
        index++;
406
88.1k
    s->index = index;
407
408
88.1k
    return result;
409
88.1k
}
h2645_vui.c:get_bits1
Line
Count
Source
392
18.4M
{
393
18.4M
    unsigned int index = s->index;
394
18.4M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
18.4M
    result <<= index & 7;
400
18.4M
    result >>= 8 - 1;
401
18.4M
#endif
402
18.4M
#if !UNCHECKED_BITSTREAM_READER
403
18.4M
    if (s->index < s->size_in_bits_plus8)
404
17.7M
#endif
405
17.7M
        index++;
406
18.4M
    s->index = index;
407
408
18.4M
    return result;
409
18.4M
}
Unexecuted instantiation: vc1_parser.c:get_bits1
vorbis_parser.c:get_bits1
Line
Count
Source
392
2.26M
{
393
2.26M
    unsigned int index = s->index;
394
2.26M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.26M
    result <<= index & 7;
400
2.26M
    result >>= 8 - 1;
401
2.26M
#endif
402
2.26M
#if !UNCHECKED_BITSTREAM_READER
403
2.26M
    if (s->index < s->size_in_bits_plus8)
404
2.26M
#endif
405
2.26M
        index++;
406
2.26M
    s->index = index;
407
408
2.26M
    return result;
409
2.26M
}
vp9_parser.c:get_bits1
Line
Count
Source
392
1.88M
{
393
1.88M
    unsigned int index = s->index;
394
1.88M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.88M
    result <<= index & 7;
400
1.88M
    result >>= 8 - 1;
401
1.88M
#endif
402
1.88M
#if !UNCHECKED_BITSTREAM_READER
403
1.88M
    if (s->index < s->size_in_bits_plus8)
404
1.88M
#endif
405
1.88M
        index++;
406
1.88M
    s->index = index;
407
408
1.88M
    return result;
409
1.88M
}
Unexecuted instantiation: vvc_parser.c:get_bits1
Unexecuted instantiation: aac_ac3_parser.c:get_bits1
Unexecuted instantiation: av1_parser.c:get_bits1
Unexecuted instantiation: avs2_parser.c:get_bits1
Unexecuted instantiation: avs3_parser.c:get_bits1
Unexecuted instantiation: cavs_parser.c:get_bits1
Unexecuted instantiation: dca_parser.c:get_bits1
Unexecuted instantiation: dolby_e_parser.c:get_bits1
evc_parser.c:get_bits1
Line
Count
Source
392
350k
{
393
350k
    unsigned int index = s->index;
394
350k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
350k
    result <<= index & 7;
400
350k
    result >>= 8 - 1;
401
350k
#endif
402
350k
#if !UNCHECKED_BITSTREAM_READER
403
350k
    if (s->index < s->size_in_bits_plus8)
404
350k
#endif
405
350k
        index++;
406
350k
    s->index = index;
407
408
350k
    return result;
409
350k
}
Unexecuted instantiation: ffv1_parser.c:get_bits1
flac_parser.c:get_bits1
Line
Count
Source
392
9.02M
{
393
9.02M
    unsigned int index = s->index;
394
9.02M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
9.02M
    result <<= index & 7;
400
9.02M
    result >>= 8 - 1;
401
9.02M
#endif
402
9.02M
#if !UNCHECKED_BITSTREAM_READER
403
9.02M
    if (s->index < s->size_in_bits_plus8)
404
9.02M
#endif
405
9.02M
        index++;
406
9.02M
    s->index = index;
407
408
9.02M
    return result;
409
9.02M
}
Unexecuted instantiation: ftr_parser.c:get_bits1
h264_parser.c:get_bits1
Line
Count
Source
392
23.3M
{
393
23.3M
    unsigned int index = s->index;
394
23.3M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
23.3M
    result <<= index & 7;
400
23.3M
    result >>= 8 - 1;
401
23.3M
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
    if (s->index < s->size_in_bits_plus8)
404
#endif
405
23.3M
        index++;
406
23.3M
    s->index = index;
407
408
23.3M
    return result;
409
23.3M
}
Unexecuted instantiation: h264_sei.c:get_bits1
Unexecuted instantiation: h264idct.c:get_bits1
parser.c:get_bits1
Line
Count
Source
392
928k
{
393
928k
    unsigned int index = s->index;
394
928k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
928k
    result <<= index & 7;
400
928k
    result >>= 8 - 1;
401
928k
#endif
402
928k
#if !UNCHECKED_BITSTREAM_READER
403
928k
    if (s->index < s->size_in_bits_plus8)
404
928k
#endif
405
928k
        index++;
406
928k
    s->index = index;
407
408
928k
    return result;
409
928k
}
sei.c:get_bits1
Line
Count
Source
392
1.41M
{
393
1.41M
    unsigned int index = s->index;
394
1.41M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.41M
    result <<= index & 7;
400
1.41M
    result >>= 8 - 1;
401
1.41M
#endif
402
1.41M
#if !UNCHECKED_BITSTREAM_READER
403
1.41M
    if (s->index < s->size_in_bits_plus8)
404
893k
#endif
405
893k
        index++;
406
1.41M
    s->index = index;
407
408
1.41M
    return result;
409
1.41M
}
jpegxl_parser.c:get_bits1
Line
Count
Source
392
23.5M
{
393
23.5M
    unsigned int index = s->index;
394
23.5M
    uint8_t result     = s->buffer[index >> 3];
395
23.5M
#ifdef BITSTREAM_READER_LE
396
23.5M
    result >>= index & 7;
397
23.5M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
23.5M
#if !UNCHECKED_BITSTREAM_READER
403
23.5M
    if (s->index < s->size_in_bits_plus8)
404
23.5M
#endif
405
23.5M
        index++;
406
23.5M
    s->index = index;
407
408
23.5M
    return result;
409
23.5M
}
Unexecuted instantiation: jpegxs_parser.c:get_bits1
lcevc_parser.c:get_bits1
Line
Count
Source
392
4
{
393
4
    unsigned int index = s->index;
394
4
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
4
    result <<= index & 7;
400
4
    result >>= 8 - 1;
401
4
#endif
402
4
#if !UNCHECKED_BITSTREAM_READER
403
4
    if (s->index < s->size_in_bits_plus8)
404
4
#endif
405
4
        index++;
406
4
    s->index = index;
407
408
4
    return result;
409
4
}
Unexecuted instantiation: mlp_parser.c:get_bits1
Unexecuted instantiation: mpeg4video_parser.c:get_bits1
vc1.c:get_bits1
Line
Count
Source
392
55.1M
{
393
55.1M
    unsigned int index = s->index;
394
55.1M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
55.1M
    result <<= index & 7;
400
55.1M
    result >>= 8 - 1;
401
55.1M
#endif
402
55.1M
#if !UNCHECKED_BITSTREAM_READER
403
55.1M
    if (s->index < s->size_in_bits_plus8)
404
45.4M
#endif
405
45.4M
        index++;
406
55.1M
    s->index = index;
407
408
55.1M
    return result;
409
55.1M
}
Unexecuted instantiation: vc1data.c:get_bits1
dca.c:get_bits1
Line
Count
Source
392
3.98M
{
393
3.98M
    unsigned int index = s->index;
394
3.98M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
3.98M
    result <<= index & 7;
400
3.98M
    result >>= 8 - 1;
401
3.98M
#endif
402
3.98M
#if !UNCHECKED_BITSTREAM_READER
403
3.98M
    if (s->index < s->size_in_bits_plus8)
404
3.98M
#endif
405
3.98M
        index++;
406
3.98M
    s->index = index;
407
408
3.98M
    return result;
409
3.98M
}
dca_exss.c:get_bits1
Line
Count
Source
392
11.2M
{
393
11.2M
    unsigned int index = s->index;
394
11.2M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
11.2M
    result <<= index & 7;
400
11.2M
    result >>= 8 - 1;
401
11.2M
#endif
402
11.2M
#if !UNCHECKED_BITSTREAM_READER
403
11.2M
    if (s->index < s->size_in_bits_plus8)
404
10.0M
#endif
405
10.0M
        index++;
406
11.2M
    s->index = index;
407
408
11.2M
    return result;
409
11.2M
}
Unexecuted instantiation: dolby_e_parse.c:get_bits1
Unexecuted instantiation: ffv1.c:get_bits1
Unexecuted instantiation: ffv1_parse.c:get_bits1
flac.c:get_bits1
Line
Count
Source
392
27.7M
{
393
27.7M
    unsigned int index = s->index;
394
27.7M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
27.7M
    result <<= index & 7;
400
27.7M
    result >>= 8 - 1;
401
27.7M
#endif
402
27.7M
#if !UNCHECKED_BITSTREAM_READER
403
27.7M
    if (s->index < s->size_in_bits_plus8)
404
27.7M
#endif
405
27.7M
        index++;
406
27.7M
    s->index = index;
407
408
27.7M
    return result;
409
27.7M
}
h2645_sei.c:get_bits1
Line
Count
Source
392
2.69M
{
393
2.69M
    unsigned int index = s->index;
394
2.69M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.69M
    result <<= index & 7;
400
2.69M
    result >>= 8 - 1;
401
2.69M
#endif
402
2.69M
#if !UNCHECKED_BITSTREAM_READER
403
2.69M
    if (s->index < s->size_in_bits_plus8)
404
2.21M
#endif
405
2.21M
        index++;
406
2.69M
    s->index = index;
407
408
2.69M
    return result;
409
2.69M
}
Unexecuted instantiation: parse.c:get_bits1
jpegxl_parse.c:get_bits1
Line
Count
Source
392
19.0M
{
393
19.0M
    unsigned int index = s->index;
394
19.0M
    uint8_t result     = s->buffer[index >> 3];
395
19.0M
#ifdef BITSTREAM_READER_LE
396
19.0M
    result >>= index & 7;
397
19.0M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
19.0M
#if !UNCHECKED_BITSTREAM_READER
403
19.0M
    if (s->index < s->size_in_bits_plus8)
404
19.0M
#endif
405
19.0M
        index++;
406
19.0M
    s->index = index;
407
408
19.0M
    return result;
409
19.0M
}
aom_film_grain.c:get_bits1
Line
Count
Source
392
2.74M
{
393
2.74M
    unsigned int index = s->index;
394
2.74M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.74M
    result <<= index & 7;
400
2.74M
    result >>= 8 - 1;
401
2.74M
#endif
402
2.74M
#if !UNCHECKED_BITSTREAM_READER
403
2.74M
    if (s->index < s->size_in_bits_plus8)
404
2.28M
#endif
405
2.28M
        index++;
406
2.74M
    s->index = index;
407
408
2.74M
    return result;
409
2.74M
}
Unexecuted instantiation: dynamic_hdr_vivid.c:get_bits1
hdr_dynamic_metadata.c:get_bits1
Line
Count
Source
392
919k
{
393
919k
    unsigned int index = s->index;
394
919k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
919k
    result <<= index & 7;
400
919k
    result >>= 8 - 1;
401
919k
#endif
402
919k
#if !UNCHECKED_BITSTREAM_READER
403
919k
    if (s->index < s->size_in_bits_plus8)
404
919k
#endif
405
919k
        index++;
406
919k
    s->index = index;
407
408
919k
    return result;
409
919k
}
av1dec.c:get_bits1
Line
Count
Source
392
11.3M
{
393
11.3M
    unsigned int index = s->index;
394
11.3M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
11.3M
    result <<= index & 7;
400
11.3M
    result >>= 8 - 1;
401
11.3M
#endif
402
11.3M
#if !UNCHECKED_BITSTREAM_READER
403
11.3M
    if (s->index < s->size_in_bits_plus8)
404
11.3M
#endif
405
11.3M
        index++;
406
11.3M
    s->index = index;
407
408
11.3M
    return result;
409
11.3M
}
Unexecuted instantiation: bit.c:get_bits1
dtsdec.c:get_bits1
Line
Count
Source
392
1.17M
{
393
1.17M
    unsigned int index = s->index;
394
1.17M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.17M
    result <<= index & 7;
400
1.17M
    result >>= 8 - 1;
401
1.17M
#endif
402
1.17M
#if !UNCHECKED_BITSTREAM_READER
403
1.17M
    if (s->index < s->size_in_bits_plus8)
404
1.17M
#endif
405
1.17M
        index++;
406
1.17M
    s->index = index;
407
408
1.17M
    return result;
409
1.17M
}
Unexecuted instantiation: dtshddec.c:get_bits1
Unexecuted instantiation: h264dec.c:get_bits1
Unexecuted instantiation: hls_sample_encryption.c:get_bits1
Unexecuted instantiation: isom.c:get_bits1
Unexecuted instantiation: matroskadec.c:get_bits1
Unexecuted instantiation: mov.c:get_bits1
mpc8.c:get_bits1
Line
Count
Source
392
7.55M
{
393
7.55M
    unsigned int index = s->index;
394
7.55M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
7.55M
    result <<= index & 7;
400
7.55M
    result >>= 8 - 1;
401
7.55M
#endif
402
7.55M
#if !UNCHECKED_BITSTREAM_READER
403
7.55M
    if (s->index < s->size_in_bits_plus8)
404
6.56M
#endif
405
6.56M
        index++;
406
7.55M
    s->index = index;
407
408
7.55M
    return result;
409
7.55M
}
Unexecuted instantiation: mpegts.c:get_bits1
Unexecuted instantiation: oggparsetheora.c:get_bits1
Unexecuted instantiation: shortendec.c:get_bits1
Unexecuted instantiation: swfdec.c:get_bits1
Unexecuted instantiation: takdec.c:get_bits1
iamf_parse.c:get_bits1
Line
Count
Source
392
4.29M
{
393
4.29M
    unsigned int index = s->index;
394
4.29M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
4.29M
    result <<= index & 7;
400
4.29M
    result >>= 8 - 1;
401
4.29M
#endif
402
4.29M
#if !UNCHECKED_BITSTREAM_READER
403
4.29M
    if (s->index < s->size_in_bits_plus8)
404
4.29M
#endif
405
4.29M
        index++;
406
4.29M
    s->index = index;
407
408
4.29M
    return result;
409
4.29M
}
dirac.c:get_bits1
Line
Count
Source
392
243k
{
393
243k
    unsigned int index = s->index;
394
243k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
243k
    result <<= index & 7;
400
243k
    result >>= 8 - 1;
401
243k
#endif
402
243k
#if !UNCHECKED_BITSTREAM_READER
403
243k
    if (s->index < s->size_in_bits_plus8)
404
212k
#endif
405
212k
        index++;
406
243k
    s->index = index;
407
408
243k
    return result;
409
243k
}
atrac9dec.c:get_bits1
Line
Count
Source
392
11.1M
{
393
11.1M
    unsigned int index = s->index;
394
11.1M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
11.1M
    result <<= index & 7;
400
11.1M
    result >>= 8 - 1;
401
11.1M
#endif
402
11.1M
#if !UNCHECKED_BITSTREAM_READER
403
11.1M
    if (s->index < s->size_in_bits_plus8)
404
11.1M
#endif
405
11.1M
        index++;
406
11.1M
    s->index = index;
407
408
11.1M
    return result;
409
11.1M
}
Unexecuted instantiation: enc.c:get_bits1
Unexecuted instantiation: enc_psy.c:get_bits1
Unexecuted instantiation: pvq.c:get_bits1
Unexecuted instantiation: rc.c:get_bits1
Unexecuted instantiation: celt.c:get_bits1
Unexecuted instantiation: gsmdec.c:get_bits1
Unexecuted instantiation: msgsmdec.c:get_bits1
imc.c:get_bits1
Line
Count
Source
392
40.5M
{
393
40.5M
    unsigned int index = s->index;
394
40.5M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
40.5M
    result <<= index & 7;
400
40.5M
    result >>= 8 - 1;
401
40.5M
#endif
402
40.5M
#if !UNCHECKED_BITSTREAM_READER
403
40.5M
    if (s->index < s->size_in_bits_plus8)
404
40.5M
#endif
405
40.5M
        index++;
406
40.5M
    s->index = index;
407
408
40.5M
    return result;
409
40.5M
}
Unexecuted instantiation: adpcm.c:get_bits1
Unexecuted instantiation: wmaenc.c:get_bits1
wma.c:get_bits1
Line
Count
Source
392
191M
{
393
191M
    unsigned int index = s->index;
394
191M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
191M
    result <<= index & 7;
400
191M
    result >>= 8 - 1;
401
191M
#endif
402
191M
#if !UNCHECKED_BITSTREAM_READER
403
191M
    if (s->index < s->size_in_bits_plus8)
404
5.57M
#endif
405
5.57M
        index++;
406
191M
    s->index = index;
407
408
191M
    return result;
409
191M
}
Unexecuted instantiation: cfhd.c:get_bits1
wavarc.c:get_bits1
Line
Count
Source
392
128M
{
393
128M
    unsigned int index = s->index;
394
128M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
128M
    result <<= index & 7;
400
128M
    result >>= 8 - 1;
401
128M
#endif
402
128M
#if !UNCHECKED_BITSTREAM_READER
403
128M
    if (s->index < s->size_in_bits_plus8)
404
128M
#endif
405
128M
        index++;
406
128M
    s->index = index;
407
408
128M
    return result;
409
128M
}
escape130.c:get_bits1
Line
Count
Source
392
32.7M
{
393
32.7M
    unsigned int index = s->index;
394
32.7M
    uint8_t result     = s->buffer[index >> 3];
395
32.7M
#ifdef BITSTREAM_READER_LE
396
32.7M
    result >>= index & 7;
397
32.7M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
32.7M
#if !UNCHECKED_BITSTREAM_READER
403
32.7M
    if (s->index < s->size_in_bits_plus8)
404
32.6M
#endif
405
32.6M
        index++;
406
32.7M
    s->index = index;
407
408
32.7M
    return result;
409
32.7M
}
Unexecuted instantiation: asvdec.c:get_bits1
diracdec.c:get_bits1
Line
Count
Source
392
2.24M
{
393
2.24M
    unsigned int index = s->index;
394
2.24M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.24M
    result <<= index & 7;
400
2.24M
    result >>= 8 - 1;
401
2.24M
#endif
402
2.24M
#if !UNCHECKED_BITSTREAM_READER
403
2.24M
    if (s->index < s->size_in_bits_plus8)
404
1.70M
#endif
405
1.70M
        index++;
406
2.24M
    s->index = index;
407
408
2.24M
    return result;
409
2.24M
}
Unexecuted instantiation: dirac_arith.c:get_bits1
wmadec.c:get_bits1
Line
Count
Source
392
2.19M
{
393
2.19M
    unsigned int index = s->index;
394
2.19M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.19M
    result <<= index & 7;
400
2.19M
    result >>= 8 - 1;
401
2.19M
#endif
402
2.19M
#if !UNCHECKED_BITSTREAM_READER
403
2.19M
    if (s->index < s->size_in_bits_plus8)
404
2.17M
#endif
405
2.17M
        index++;
406
2.19M
    s->index = index;
407
408
2.19M
    return result;
409
2.19M
}
Unexecuted instantiation: aacenc.c:get_bits1
imm4.c:get_bits1
Line
Count
Source
392
4.09M
{
393
4.09M
    unsigned int index = s->index;
394
4.09M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
4.09M
    result <<= index & 7;
400
4.09M
    result >>= 8 - 1;
401
4.09M
#endif
402
4.09M
#if !UNCHECKED_BITSTREAM_READER
403
4.09M
    if (s->index < s->size_in_bits_plus8)
404
4.09M
#endif
405
4.09M
        index++;
406
4.09M
    s->index = index;
407
408
4.09M
    return result;
409
4.09M
}
Unexecuted instantiation: exr.c:get_bits1
aacdec.c:get_bits1
Line
Count
Source
392
18.7M
{
393
18.7M
    unsigned int index = s->index;
394
18.7M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
18.7M
    result <<= index & 7;
400
18.7M
    result >>= 8 - 1;
401
18.7M
#endif
402
18.7M
#if !UNCHECKED_BITSTREAM_READER
403
18.7M
    if (s->index < s->size_in_bits_plus8)
404
14.6M
#endif
405
14.6M
        index++;
406
18.7M
    s->index = index;
407
408
18.7M
    return result;
409
18.7M
}
aacdec_fixed.c:get_bits1
Line
Count
Source
392
61.9k
{
393
61.9k
    unsigned int index = s->index;
394
61.9k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
61.9k
    result <<= index & 7;
400
61.9k
    result >>= 8 - 1;
401
61.9k
#endif
402
61.9k
#if !UNCHECKED_BITSTREAM_READER
403
61.9k
    if (s->index < s->size_in_bits_plus8)
404
46.0k
#endif
405
46.0k
        index++;
406
61.9k
    s->index = index;
407
408
61.9k
    return result;
409
61.9k
}
aacdec_float.c:get_bits1
Line
Count
Source
392
210k
{
393
210k
    unsigned int index = s->index;
394
210k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
210k
    result <<= index & 7;
400
210k
    result >>= 8 - 1;
401
210k
#endif
402
210k
#if !UNCHECKED_BITSTREAM_READER
403
210k
    if (s->index < s->size_in_bits_plus8)
404
167k
#endif
405
167k
        index++;
406
210k
    s->index = index;
407
408
210k
    return result;
409
210k
}
Unexecuted instantiation: aacdec_tab.c:get_bits1
aacdec_usac.c:get_bits1
Line
Count
Source
392
24.5M
{
393
24.5M
    unsigned int index = s->index;
394
24.5M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
24.5M
    result <<= index & 7;
400
24.5M
    result >>= 8 - 1;
401
24.5M
#endif
402
24.5M
#if !UNCHECKED_BITSTREAM_READER
403
24.5M
    if (s->index < s->size_in_bits_plus8)
404
16.4M
#endif
405
16.4M
        index++;
406
24.5M
    s->index = index;
407
408
24.5M
    return result;
409
24.5M
}
aacdec_usac_mps212.c:get_bits1
Line
Count
Source
392
970k
{
393
970k
    unsigned int index = s->index;
394
970k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
970k
    result <<= index & 7;
400
970k
    result >>= 8 - 1;
401
970k
#endif
402
970k
#if !UNCHECKED_BITSTREAM_READER
403
970k
    if (s->index < s->size_in_bits_plus8)
404
859k
#endif
405
859k
        index++;
406
970k
    s->index = index;
407
408
970k
    return result;
409
970k
}
aacps_common.c:get_bits1
Line
Count
Source
392
1.07M
{
393
1.07M
    unsigned int index = s->index;
394
1.07M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.07M
    result <<= index & 7;
400
1.07M
    result >>= 8 - 1;
401
1.07M
#endif
402
1.07M
#if !UNCHECKED_BITSTREAM_READER
403
1.07M
    if (s->index < s->size_in_bits_plus8)
404
530k
#endif
405
530k
        index++;
406
1.07M
    s->index = index;
407
408
1.07M
    return result;
409
1.07M
}
aacsbr.c:get_bits1
Line
Count
Source
392
16.7M
{
393
16.7M
    unsigned int index = s->index;
394
16.7M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
16.7M
    result <<= index & 7;
400
16.7M
    result >>= 8 - 1;
401
16.7M
#endif
402
16.7M
#if !UNCHECKED_BITSTREAM_READER
403
16.7M
    if (s->index < s->size_in_bits_plus8)
404
10.2M
#endif
405
10.2M
        index++;
406
16.7M
    s->index = index;
407
408
16.7M
    return result;
409
16.7M
}
aacsbr_fixed.c:get_bits1
Line
Count
Source
392
3.16M
{
393
3.16M
    unsigned int index = s->index;
394
3.16M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
3.16M
    result <<= index & 7;
400
3.16M
    result >>= 8 - 1;
401
3.16M
#endif
402
3.16M
#if !UNCHECKED_BITSTREAM_READER
403
3.16M
    if (s->index < s->size_in_bits_plus8)
404
3.05M
#endif
405
3.05M
        index++;
406
3.16M
    s->index = index;
407
408
3.16M
    return result;
409
3.16M
}
aacdec_ac.c:get_bits1
Line
Count
Source
392
44.9M
{
393
44.9M
    unsigned int index = s->index;
394
44.9M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
44.9M
    result <<= index & 7;
400
44.9M
    result >>= 8 - 1;
401
44.9M
#endif
402
44.9M
#if !UNCHECKED_BITSTREAM_READER
403
44.9M
    if (s->index < s->size_in_bits_plus8)
404
32.9M
#endif
405
32.9M
        index++;
406
44.9M
    s->index = index;
407
408
44.9M
    return result;
409
44.9M
}
aacdec_lpd.c:get_bits1
Line
Count
Source
392
3.45M
{
393
3.45M
    unsigned int index = s->index;
394
3.45M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
3.45M
    result <<= index & 7;
400
3.45M
    result >>= 8 - 1;
401
3.45M
#endif
402
3.45M
#if !UNCHECKED_BITSTREAM_READER
403
3.45M
    if (s->index < s->size_in_bits_plus8)
404
3.05M
#endif
405
3.05M
        index++;
406
3.45M
    s->index = index;
407
408
3.45M
    return result;
409
3.45M
}
Unexecuted instantiation: aacps_fixed.c:get_bits1
Unexecuted instantiation: aacps_float.c:get_bits1
mjpegdec.c:get_bits1
Line
Count
Source
392
5.18M
{
393
5.18M
    unsigned int index = s->index;
394
5.18M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
5.18M
    result <<= index & 7;
400
5.18M
    result >>= 8 - 1;
401
5.18M
#endif
402
5.18M
#if !UNCHECKED_BITSTREAM_READER
403
5.18M
    if (s->index < s->size_in_bits_plus8)
404
4.62M
#endif
405
4.62M
        index++;
406
5.18M
    s->index = index;
407
408
5.18M
    return result;
409
5.18M
}
Unexecuted instantiation: mjpegdec_common.c:get_bits1
jpeglsdec.c:get_bits1
Line
Count
Source
392
20.2M
{
393
20.2M
    unsigned int index = s->index;
394
20.2M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
20.2M
    result <<= index & 7;
400
20.2M
    result >>= 8 - 1;
401
20.2M
#endif
402
20.2M
#if !UNCHECKED_BITSTREAM_READER
403
20.2M
    if (s->index < s->size_in_bits_plus8)
404
20.2M
#endif
405
20.2M
        index++;
406
20.2M
    s->index = index;
407
408
20.2M
    return result;
409
20.2M
}
jvdec.c:get_bits1
Line
Count
Source
392
9.63M
{
393
9.63M
    unsigned int index = s->index;
394
9.63M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
9.63M
    result <<= index & 7;
400
9.63M
    result >>= 8 - 1;
401
9.63M
#endif
402
9.63M
#if !UNCHECKED_BITSTREAM_READER
403
9.63M
    if (s->index < s->size_in_bits_plus8)
404
6.10M
#endif
405
6.10M
        index++;
406
9.63M
    s->index = index;
407
408
9.63M
    return result;
409
9.63M
}
Unexecuted instantiation: rdt.c:get_bits1
Unexecuted instantiation: rtpdec_h261.c:get_bits1
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bits1
Unexecuted instantiation: rtpdec_latm.c:get_bits1
Unexecuted instantiation: rtpdec_mpeg4.c:get_bits1
Unexecuted instantiation: rtpdec_qt.c:get_bits1
h264_cavlc.c:get_bits1
Line
Count
Source
392
5.35M
{
393
5.35M
    unsigned int index = s->index;
394
5.35M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
5.35M
    result <<= index & 7;
400
5.35M
    result >>= 8 - 1;
401
5.35M
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
    if (s->index < s->size_in_bits_plus8)
404
#endif
405
5.35M
        index++;
406
5.35M
    s->index = index;
407
408
5.35M
    return result;
409
5.35M
}
Unexecuted instantiation: h264_direct.c:get_bits1
Unexecuted instantiation: h264_mb.c:get_bits1
Unexecuted instantiation: h264_picture.c:get_bits1
h264_refs.c:get_bits1
Line
Count
Source
392
5.19M
{
393
5.19M
    unsigned int index = s->index;
394
5.19M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
5.19M
    result <<= index & 7;
400
5.19M
    result >>= 8 - 1;
401
5.19M
#endif
402
5.19M
#if !UNCHECKED_BITSTREAM_READER
403
5.19M
    if (s->index < s->size_in_bits_plus8)
404
4.87M
#endif
405
4.87M
        index++;
406
5.19M
    s->index = index;
407
408
5.19M
    return result;
409
5.19M
}
h264_slice.c:get_bits1
Line
Count
Source
392
4.68M
{
393
4.68M
    unsigned int index = s->index;
394
4.68M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
4.68M
    result <<= index & 7;
400
4.68M
    result >>= 8 - 1;
401
4.68M
#endif
402
4.68M
#if !UNCHECKED_BITSTREAM_READER
403
4.68M
    if (s->index < s->size_in_bits_plus8)
404
4.67M
#endif
405
4.67M
        index++;
406
4.68M
    s->index = index;
407
408
4.68M
    return result;
409
4.68M
}
Unexecuted instantiation: h264_cabac.c:get_bits1
Unexecuted instantiation: h264_loopfilter.c:get_bits1
alsdec.c:get_bits1
Line
Count
Source
392
481M
{
393
481M
    unsigned int index = s->index;
394
481M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
481M
    result <<= index & 7;
400
481M
    result >>= 8 - 1;
401
481M
#endif
402
481M
#if !UNCHECKED_BITSTREAM_READER
403
481M
    if (s->index < s->size_in_bits_plus8)
404
418M
#endif
405
418M
        index++;
406
481M
    s->index = index;
407
408
481M
    return result;
409
481M
}
bgmc.c:get_bits1
Line
Count
Source
392
210M
{
393
210M
    unsigned int index = s->index;
394
210M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
210M
    result <<= index & 7;
400
210M
    result >>= 8 - 1;
401
210M
#endif
402
210M
#if !UNCHECKED_BITSTREAM_READER
403
210M
    if (s->index < s->size_in_bits_plus8)
404
22.4M
#endif
405
22.4M
        index++;
406
210M
    s->index = index;
407
408
210M
    return result;
409
210M
}
mlz.c:get_bits1
Line
Count
Source
392
935M
{
393
935M
    unsigned int index = s->index;
394
935M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
935M
    result <<= index & 7;
400
935M
    result >>= 8 - 1;
401
935M
#endif
402
935M
#if !UNCHECKED_BITSTREAM_READER
403
935M
    if (s->index < s->size_in_bits_plus8)
404
10.2M
#endif
405
10.2M
        index++;
406
935M
    s->index = index;
407
408
935M
    return result;
409
935M
}
bonk.c:get_bits1
Line
Count
Source
392
3.25M
{
393
3.25M
    unsigned int index = s->index;
394
3.25M
    uint8_t result     = s->buffer[index >> 3];
395
3.25M
#ifdef BITSTREAM_READER_LE
396
3.25M
    result >>= index & 7;
397
3.25M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
3.25M
#if !UNCHECKED_BITSTREAM_READER
403
3.25M
    if (s->index < s->size_in_bits_plus8)
404
2.95M
#endif
405
2.95M
        index++;
406
3.25M
    s->index = index;
407
408
3.25M
    return result;
409
3.25M
}
Unexecuted instantiation: mxpegdec.c:get_bits1
rv30.c:get_bits1
Line
Count
Source
392
256k
{
393
256k
    unsigned int index = s->index;
394
256k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
256k
    result <<= index & 7;
400
256k
    result >>= 8 - 1;
401
256k
#endif
402
256k
#if !UNCHECKED_BITSTREAM_READER
403
256k
    if (s->index < s->size_in_bits_plus8)
404
256k
#endif
405
256k
        index++;
406
256k
    s->index = index;
407
408
256k
    return result;
409
256k
}
rv34.c:get_bits1
Line
Count
Source
392
99.0M
{
393
99.0M
    unsigned int index = s->index;
394
99.0M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
99.0M
    result <<= index & 7;
400
99.0M
    result >>= 8 - 1;
401
99.0M
#endif
402
99.0M
#if !UNCHECKED_BITSTREAM_READER
403
99.0M
    if (s->index < s->size_in_bits_plus8)
404
98.6M
#endif
405
98.6M
        index++;
406
99.0M
    s->index = index;
407
408
99.0M
    return result;
409
99.0M
}
Unexecuted instantiation: indeo3.c:get_bits1
eamad.c:get_bits1
Line
Count
Source
392
7.98M
{
393
7.98M
    unsigned int index = s->index;
394
7.98M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
7.98M
    result <<= index & 7;
400
7.98M
    result >>= 8 - 1;
401
7.98M
#endif
402
7.98M
#if !UNCHECKED_BITSTREAM_READER
403
7.98M
    if (s->index < s->size_in_bits_plus8)
404
7.98M
#endif
405
7.98M
        index++;
406
7.98M
    s->index = index;
407
408
7.98M
    return result;
409
7.98M
}
Unexecuted instantiation: mpeg12.c:get_bits1
Unexecuted instantiation: g726.c:get_bits1
vc1dec.c:get_bits1
Line
Count
Source
392
1.56M
{
393
1.56M
    unsigned int index = s->index;
394
1.56M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.56M
    result <<= index & 7;
400
1.56M
    result >>= 8 - 1;
401
1.56M
#endif
402
1.56M
#if !UNCHECKED_BITSTREAM_READER
403
1.56M
    if (s->index < s->size_in_bits_plus8)
404
1.16M
#endif
405
1.16M
        index++;
406
1.56M
    s->index = index;
407
408
1.56M
    return result;
409
1.56M
}
vc1_block.c:get_bits1
Line
Count
Source
392
371M
{
393
371M
    unsigned int index = s->index;
394
371M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
371M
    result <<= index & 7;
400
371M
    result >>= 8 - 1;
401
371M
#endif
402
371M
#if !UNCHECKED_BITSTREAM_READER
403
371M
    if (s->index < s->size_in_bits_plus8)
404
370M
#endif
405
370M
        index++;
406
371M
    s->index = index;
407
408
371M
    return result;
409
371M
}
Unexecuted instantiation: vc1_loopfilter.c:get_bits1
Unexecuted instantiation: vc1_mc.c:get_bits1
vc1_pred.c:get_bits1
Line
Count
Source
392
4.90M
{
393
4.90M
    unsigned int index = s->index;
394
4.90M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
4.90M
    result <<= index & 7;
400
4.90M
    result >>= 8 - 1;
401
4.90M
#endif
402
4.90M
#if !UNCHECKED_BITSTREAM_READER
403
4.90M
    if (s->index < s->size_in_bits_plus8)
404
4.90M
#endif
405
4.90M
        index++;
406
4.90M
    s->index = index;
407
408
4.90M
    return result;
409
4.90M
}
mpegaudiodec_float.c:get_bits1
Line
Count
Source
392
23.1M
{
393
23.1M
    unsigned int index = s->index;
394
23.1M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
23.1M
    result <<= index & 7;
400
23.1M
    result >>= 8 - 1;
401
23.1M
#endif
402
23.1M
#if !UNCHECKED_BITSTREAM_READER
403
23.1M
    if (s->index < s->size_in_bits_plus8)
404
17.3M
#endif
405
17.3M
        index++;
406
23.1M
    s->index = index;
407
408
23.1M
    return result;
409
23.1M
}
Unexecuted instantiation: huffyuvdec.c:get_bits1
speexdec.c:get_bits1
Line
Count
Source
392
1.27M
{
393
1.27M
    unsigned int index = s->index;
394
1.27M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.27M
    result <<= index & 7;
400
1.27M
    result >>= 8 - 1;
401
1.27M
#endif
402
1.27M
#if !UNCHECKED_BITSTREAM_READER
403
1.27M
    if (s->index < s->size_in_bits_plus8)
404
1.13M
#endif
405
1.13M
        index++;
406
1.27M
    s->index = index;
407
408
1.27M
    return result;
409
1.27M
}
atrac3plusdec.c:get_bits1
Line
Count
Source
392
2.15M
{
393
2.15M
    unsigned int index = s->index;
394
2.15M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.15M
    result <<= index & 7;
400
2.15M
    result >>= 8 - 1;
401
2.15M
#endif
402
2.15M
#if !UNCHECKED_BITSTREAM_READER
403
2.15M
    if (s->index < s->size_in_bits_plus8)
404
2.15M
#endif
405
2.15M
        index++;
406
2.15M
    s->index = index;
407
408
2.15M
    return result;
409
2.15M
}
Unexecuted instantiation: atrac3plusdsp.c:get_bits1
atrac3plus.c:get_bits1
Line
Count
Source
392
5.39M
{
393
5.39M
    unsigned int index = s->index;
394
5.39M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
5.39M
    result <<= index & 7;
400
5.39M
    result >>= 8 - 1;
401
5.39M
#endif
402
5.39M
#if !UNCHECKED_BITSTREAM_READER
403
5.39M
    if (s->index < s->size_in_bits_plus8)
404
3.55M
#endif
405
3.55M
        index++;
406
5.39M
    s->index = index;
407
408
5.39M
    return result;
409
5.39M
}
mss4.c:get_bits1
Line
Count
Source
392
77.3M
{
393
77.3M
    unsigned int index = s->index;
394
77.3M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
77.3M
    result <<= index & 7;
400
77.3M
    result >>= 8 - 1;
401
77.3M
#endif
402
77.3M
#if !UNCHECKED_BITSTREAM_READER
403
77.3M
    if (s->index < s->size_in_bits_plus8)
404
74.9M
#endif
405
74.9M
        index++;
406
77.3M
    s->index = index;
407
408
77.3M
    return result;
409
77.3M
}
Unexecuted instantiation: tiff.c:get_bits1
faxcompr.c:get_bits1
Line
Count
Source
392
9.28M
{
393
9.28M
    unsigned int index = s->index;
394
9.28M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
9.28M
    result <<= index & 7;
400
9.28M
    result >>= 8 - 1;
401
9.28M
#endif
402
9.28M
#if !UNCHECKED_BITSTREAM_READER
403
9.28M
    if (s->index < s->size_in_bits_plus8)
404
6.27M
#endif
405
6.27M
        index++;
406
9.28M
    s->index = index;
407
408
9.28M
    return result;
409
9.28M
}
ac3dec_float.c:get_bits1
Line
Count
Source
392
41.4M
{
393
41.4M
    unsigned int index = s->index;
394
41.4M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
41.4M
    result <<= index & 7;
400
41.4M
    result >>= 8 - 1;
401
41.4M
#endif
402
41.4M
#if !UNCHECKED_BITSTREAM_READER
403
41.4M
    if (s->index < s->size_in_bits_plus8)
404
30.6M
#endif
405
30.6M
        index++;
406
41.4M
    s->index = index;
407
408
41.4M
    return result;
409
41.4M
}
on2avc.c:get_bits1
Line
Count
Source
392
2.40M
{
393
2.40M
    unsigned int index = s->index;
394
2.40M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.40M
    result <<= index & 7;
400
2.40M
    result >>= 8 - 1;
401
2.40M
#endif
402
2.40M
#if !UNCHECKED_BITSTREAM_READER
403
2.40M
    if (s->index < s->size_in_bits_plus8)
404
1.11M
#endif
405
1.11M
        index++;
406
2.40M
    s->index = index;
407
408
2.40M
    return result;
409
2.40M
}
smacker.c:get_bits1
Line
Count
Source
392
130M
{
393
130M
    unsigned int index = s->index;
394
130M
    uint8_t result     = s->buffer[index >> 3];
395
130M
#ifdef BITSTREAM_READER_LE
396
130M
    result >>= index & 7;
397
130M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
    if (s->index < s->size_in_bits_plus8)
404
#endif
405
130M
        index++;
406
130M
    s->index = index;
407
408
130M
    return result;
409
130M
}
dvbsubdec.c:get_bits1
Line
Count
Source
392
437k
{
393
437k
    unsigned int index = s->index;
394
437k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
437k
    result <<= index & 7;
400
437k
    result >>= 8 - 1;
401
437k
#endif
402
437k
#if !UNCHECKED_BITSTREAM_READER
403
437k
    if (s->index < s->size_in_bits_plus8)
404
437k
#endif
405
437k
        index++;
406
437k
    s->index = index;
407
408
437k
    return result;
409
437k
}
mss1.c:get_bits1
Line
Count
Source
392
164M
{
393
164M
    unsigned int index = s->index;
394
164M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
164M
    result <<= index & 7;
400
164M
    result >>= 8 - 1;
401
164M
#endif
402
164M
#if !UNCHECKED_BITSTREAM_READER
403
164M
    if (s->index < s->size_in_bits_plus8)
404
78.8M
#endif
405
78.8M
        index++;
406
164M
    s->index = index;
407
408
164M
    return result;
409
164M
}
Unexecuted instantiation: mss12.c:get_bits1
mss2.c:get_bits1
Line
Count
Source
392
574k
{
393
574k
    unsigned int index = s->index;
394
574k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
574k
    result <<= index & 7;
400
574k
    result >>= 8 - 1;
401
574k
#endif
402
574k
#if !UNCHECKED_BITSTREAM_READER
403
574k
    if (s->index < s->size_in_bits_plus8)
404
574k
#endif
405
574k
        index++;
406
574k
    s->index = index;
407
408
574k
    return result;
409
574k
}
Unexecuted instantiation: mdec.c:get_bits1
osq.c:get_bits1
Line
Count
Source
392
53.2M
{
393
53.2M
    unsigned int index = s->index;
394
53.2M
    uint8_t result     = s->buffer[index >> 3];
395
53.2M
#ifdef BITSTREAM_READER_LE
396
53.2M
    result >>= index & 7;
397
53.2M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
53.2M
#if !UNCHECKED_BITSTREAM_READER
403
53.2M
    if (s->index < s->size_in_bits_plus8)
404
53.0M
#endif
405
53.0M
        index++;
406
53.2M
    s->index = index;
407
408
53.2M
    return result;
409
53.2M
}
vp6.c:get_bits1
Line
Count
Source
392
16.9M
{
393
16.9M
    unsigned int index = s->index;
394
16.9M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
16.9M
    result <<= index & 7;
400
16.9M
    result >>= 8 - 1;
401
16.9M
#endif
402
16.9M
#if !UNCHECKED_BITSTREAM_READER
403
16.9M
    if (s->index < s->size_in_bits_plus8)
404
16.9M
#endif
405
16.9M
        index++;
406
16.9M
    s->index = index;
407
408
16.9M
    return result;
409
16.9M
}
Unexecuted instantiation: vp56.c:get_bits1
Unexecuted instantiation: vp56data.c:get_bits1
Unexecuted instantiation: loco.c:get_bits1
Unexecuted instantiation: vp5.c:get_bits1
Unexecuted instantiation: ra144dec.c:get_bits1
indeo5.c:get_bits1
Line
Count
Source
392
13.0M
{
393
13.0M
    unsigned int index = s->index;
394
13.0M
    uint8_t result     = s->buffer[index >> 3];
395
13.0M
#ifdef BITSTREAM_READER_LE
396
13.0M
    result >>= index & 7;
397
13.0M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
13.0M
#if !UNCHECKED_BITSTREAM_READER
403
13.0M
    if (s->index < s->size_in_bits_plus8)
404
4.76M
#endif
405
4.76M
        index++;
406
13.0M
    s->index = index;
407
408
13.0M
    return result;
409
13.0M
}
ivi.c:get_bits1
Line
Count
Source
392
224k
{
393
224k
    unsigned int index = s->index;
394
224k
    uint8_t result     = s->buffer[index >> 3];
395
224k
#ifdef BITSTREAM_READER_LE
396
224k
    result >>= index & 7;
397
224k
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
224k
#if !UNCHECKED_BITSTREAM_READER
403
224k
    if (s->index < s->size_in_bits_plus8)
404
192k
#endif
405
192k
        index++;
406
224k
    s->index = index;
407
408
224k
    return result;
409
224k
}
Unexecuted instantiation: ivi_dsp.c:get_bits1
apac.c:get_bits1
Line
Count
Source
392
118M
{
393
118M
    unsigned int index = s->index;
394
118M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
118M
    result <<= index & 7;
400
118M
    result >>= 8 - 1;
401
118M
#endif
402
118M
#if !UNCHECKED_BITSTREAM_READER
403
118M
    if (s->index < s->size_in_bits_plus8)
404
118M
#endif
405
118M
        index++;
406
118M
    s->index = index;
407
408
118M
    return result;
409
118M
}
clearvideo.c:get_bits1
Line
Count
Source
392
54.2M
{
393
54.2M
    unsigned int index = s->index;
394
54.2M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
54.2M
    result <<= index & 7;
400
54.2M
    result >>= 8 - 1;
401
54.2M
#endif
402
54.2M
#if !UNCHECKED_BITSTREAM_READER
403
54.2M
    if (s->index < s->size_in_bits_plus8)
404
16.1M
#endif
405
16.1M
        index++;
406
54.2M
    s->index = index;
407
408
54.2M
    return result;
409
54.2M
}
dxtory.c:get_bits1
Line
Count
Source
392
99.2M
{
393
99.2M
    unsigned int index = s->index;
394
99.2M
    uint8_t result     = s->buffer[index >> 3];
395
99.2M
#ifdef BITSTREAM_READER_LE
396
99.2M
    result >>= index & 7;
397
99.2M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
99.2M
#if !UNCHECKED_BITSTREAM_READER
403
99.2M
    if (s->index < s->size_in_bits_plus8)
404
50.5M
#endif
405
50.5M
        index++;
406
99.2M
    s->index = index;
407
408
99.2M
    return result;
409
99.2M
}
mpegaudiodec_fixed.c:get_bits1
Line
Count
Source
392
17.9M
{
393
17.9M
    unsigned int index = s->index;
394
17.9M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
17.9M
    result <<= index & 7;
400
17.9M
    result >>= 8 - 1;
401
17.9M
#endif
402
17.9M
#if !UNCHECKED_BITSTREAM_READER
403
17.9M
    if (s->index < s->size_in_bits_plus8)
404
11.6M
#endif
405
11.6M
        index++;
406
17.9M
    s->index = index;
407
408
17.9M
    return result;
409
17.9M
}
ralf.c:get_bits1
Line
Count
Source
392
977k
{
393
977k
    unsigned int index = s->index;
394
977k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
977k
    result <<= index & 7;
400
977k
    result >>= 8 - 1;
401
977k
#endif
402
977k
#if !UNCHECKED_BITSTREAM_READER
403
977k
    if (s->index < s->size_in_bits_plus8)
404
963k
#endif
405
963k
        index++;
406
977k
    s->index = index;
407
408
977k
    return result;
409
977k
}
pixlet.c:get_bits1
Line
Count
Source
392
37.0M
{
393
37.0M
    unsigned int index = s->index;
394
37.0M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
37.0M
    result <<= index & 7;
400
37.0M
    result >>= 8 - 1;
401
37.0M
#endif
402
37.0M
#if !UNCHECKED_BITSTREAM_READER
403
37.0M
    if (s->index < s->size_in_bits_plus8)
404
17.3M
#endif
405
17.3M
        index++;
406
37.0M
    s->index = index;
407
408
37.0M
    return result;
409
37.0M
}
Unexecuted instantiation: wnv1.c:get_bits1
Unexecuted instantiation: qoadec.c:get_bits1
Unexecuted instantiation: vima.c:get_bits1
Unexecuted instantiation: leaddec.c:get_bits1
Unexecuted instantiation: eatqi.c:get_bits1
Unexecuted instantiation: lagarith.c:get_bits1
Unexecuted instantiation: lagarithrac.c:get_bits1
Unexecuted instantiation: dss_sp.c:get_bits1
siren.c:get_bits1
Line
Count
Source
392
55.9M
{
393
55.9M
    unsigned int index = s->index;
394
55.9M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
55.9M
    result <<= index & 7;
400
55.9M
    result >>= 8 - 1;
401
55.9M
#endif
402
55.9M
#if !UNCHECKED_BITSTREAM_READER
403
55.9M
    if (s->index < s->size_in_bits_plus8)
404
55.9M
#endif
405
55.9M
        index++;
406
55.9M
    s->index = index;
407
408
55.9M
    return result;
409
55.9M
}
cavsdec.c:get_bits1
Line
Count
Source
392
2.45M
{
393
2.45M
    unsigned int index = s->index;
394
2.45M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.45M
    result <<= index & 7;
400
2.45M
    result >>= 8 - 1;
401
2.45M
#endif
402
2.45M
#if !UNCHECKED_BITSTREAM_READER
403
2.45M
    if (s->index < s->size_in_bits_plus8)
404
2.42M
#endif
405
2.42M
        index++;
406
2.45M
    s->index = index;
407
408
2.45M
    return result;
409
2.45M
}
Unexecuted instantiation: cavs.c:get_bits1
Unexecuted instantiation: cavsdata.c:get_bits1
hcom.c:get_bits1
Line
Count
Source
392
22.8M
{
393
22.8M
    unsigned int index = s->index;
394
22.8M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
22.8M
    result <<= index & 7;
400
22.8M
    result >>= 8 - 1;
401
22.8M
#endif
402
22.8M
#if !UNCHECKED_BITSTREAM_READER
403
22.8M
    if (s->index < s->size_in_bits_plus8)
404
22.8M
#endif
405
22.8M
        index++;
406
22.8M
    s->index = index;
407
408
22.8M
    return result;
409
22.8M
}
vp3.c:get_bits1
Line
Count
Source
392
1.12M
{
393
1.12M
    unsigned int index = s->index;
394
1.12M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.12M
    result <<= index & 7;
400
1.12M
    result >>= 8 - 1;
401
1.12M
#endif
402
1.12M
#if !UNCHECKED_BITSTREAM_READER
403
1.12M
    if (s->index < s->size_in_bits_plus8)
404
933k
#endif
405
933k
        index++;
406
1.12M
    s->index = index;
407
408
1.12M
    return result;
409
1.12M
}
webp.c:get_bits1
Line
Count
Source
392
590M
{
393
590M
    unsigned int index = s->index;
394
590M
    uint8_t result     = s->buffer[index >> 3];
395
590M
#ifdef BITSTREAM_READER_LE
396
590M
    result >>= index & 7;
397
590M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
590M
#if !UNCHECKED_BITSTREAM_READER
403
590M
    if (s->index < s->size_in_bits_plus8)
404
6.64M
#endif
405
6.64M
        index++;
406
590M
    s->index = index;
407
408
590M
    return result;
409
590M
}
Unexecuted instantiation: eatgv.c:get_bits1
Unexecuted instantiation: eatgq.c:get_bits1
sga.c:get_bits1
Line
Count
Source
392
668k
{
393
668k
    unsigned int index = s->index;
394
668k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
668k
    result <<= index & 7;
400
668k
    result >>= 8 - 1;
401
668k
#endif
402
668k
#if !UNCHECKED_BITSTREAM_READER
403
668k
    if (s->index < s->size_in_bits_plus8)
404
668k
#endif
405
668k
        index++;
406
668k
    s->index = index;
407
408
668k
    return result;
409
668k
}
binkaudio.c:get_bits1
Line
Count
Source
392
60.3M
{
393
60.3M
    unsigned int index = s->index;
394
60.3M
    uint8_t result     = s->buffer[index >> 3];
395
60.3M
#ifdef BITSTREAM_READER_LE
396
60.3M
    result >>= index & 7;
397
60.3M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
60.3M
#if !UNCHECKED_BITSTREAM_READER
403
60.3M
    if (s->index < s->size_in_bits_plus8)
404
33.7M
#endif
405
33.7M
        index++;
406
60.3M
    s->index = index;
407
408
60.3M
    return result;
409
60.3M
}
mpeg12dec.c:get_bits1
Line
Count
Source
392
8.20M
{
393
8.20M
    unsigned int index = s->index;
394
8.20M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
8.20M
    result <<= index & 7;
400
8.20M
    result >>= 8 - 1;
401
8.20M
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
    if (s->index < s->size_in_bits_plus8)
404
#endif
405
8.20M
        index++;
406
8.20M
    s->index = index;
407
408
8.20M
    return result;
409
8.20M
}
Unexecuted instantiation: indeo2.c:get_bits1
Unexecuted instantiation: 4xm.c:get_bits1
wmalosslessdec.c:get_bits1
Line
Count
Source
392
48.0M
{
393
48.0M
    unsigned int index = s->index;
394
48.0M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
48.0M
    result <<= index & 7;
400
48.0M
    result >>= 8 - 1;
401
48.0M
#endif
402
48.0M
#if !UNCHECKED_BITSTREAM_READER
403
48.0M
    if (s->index < s->size_in_bits_plus8)
404
34.4M
#endif
405
34.4M
        index++;
406
48.0M
    s->index = index;
407
408
48.0M
    return result;
409
48.0M
}
ilbcdec.c:get_bits1
Line
Count
Source
392
8.20M
{
393
8.20M
    unsigned int index = s->index;
394
8.20M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
8.20M
    result <<= index & 7;
400
8.20M
    result >>= 8 - 1;
401
8.20M
#endif
402
8.20M
#if !UNCHECKED_BITSTREAM_READER
403
8.20M
    if (s->index < s->size_in_bits_plus8)
404
996k
#endif
405
996k
        index++;
406
8.20M
    s->index = index;
407
408
8.20M
    return result;
409
8.20M
}
hevcdec.c:get_bits1
Line
Count
Source
392
1.77M
{
393
1.77M
    unsigned int index = s->index;
394
1.77M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.77M
    result <<= index & 7;
400
1.77M
    result >>= 8 - 1;
401
1.77M
#endif
402
1.77M
#if !UNCHECKED_BITSTREAM_READER
403
1.77M
    if (s->index < s->size_in_bits_plus8)
404
1.74M
#endif
405
1.74M
        index++;
406
1.77M
    s->index = index;
407
408
1.77M
    return result;
409
1.77M
}
Unexecuted instantiation: mvs.c:get_bits1
Unexecuted instantiation: pred.c:get_bits1
Unexecuted instantiation: refs.c:get_bits1
Unexecuted instantiation: cabac.c:get_bits1
Unexecuted instantiation: dsp.c:get_bits1
Unexecuted instantiation: filter.c:get_bits1
tscc2.c:get_bits1
Line
Count
Source
392
51.1k
{
393
51.1k
    unsigned int index = s->index;
394
51.1k
    uint8_t result     = s->buffer[index >> 3];
395
51.1k
#ifdef BITSTREAM_READER_LE
396
51.1k
    result >>= index & 7;
397
51.1k
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
51.1k
#if !UNCHECKED_BITSTREAM_READER
403
51.1k
    if (s->index < s->size_in_bits_plus8)
404
11.6k
#endif
405
11.6k
        index++;
406
51.1k
    s->index = index;
407
408
51.1k
    return result;
409
51.1k
}
hqx.c:get_bits1
Line
Count
Source
392
608k
{
393
608k
    unsigned int index = s->index;
394
608k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
608k
    result <<= index & 7;
400
608k
    result >>= 8 - 1;
401
608k
#endif
402
608k
#if !UNCHECKED_BITSTREAM_READER
403
608k
    if (s->index < s->size_in_bits_plus8)
404
49.1k
#endif
405
49.1k
        index++;
406
608k
    s->index = index;
407
408
608k
    return result;
409
608k
}
mobiclip.c:get_bits1
Line
Count
Source
392
8.49M
{
393
8.49M
    unsigned int index = s->index;
394
8.49M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
8.49M
    result <<= index & 7;
400
8.49M
    result >>= 8 - 1;
401
8.49M
#endif
402
8.49M
#if !UNCHECKED_BITSTREAM_READER
403
8.49M
    if (s->index < s->size_in_bits_plus8)
404
8.48M
#endif
405
8.48M
        index++;
406
8.49M
    s->index = index;
407
408
8.49M
    return result;
409
8.49M
}
wmaprodec.c:get_bits1
Line
Count
Source
392
34.7M
{
393
34.7M
    unsigned int index = s->index;
394
34.7M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
34.7M
    result <<= index & 7;
400
34.7M
    result >>= 8 - 1;
401
34.7M
#endif
402
34.7M
#if !UNCHECKED_BITSTREAM_READER
403
34.7M
    if (s->index < s->size_in_bits_plus8)
404
18.8M
#endif
405
18.8M
        index++;
406
34.7M
    s->index = index;
407
408
34.7M
    return result;
409
34.7M
}
g729dec.c:get_bits1
Line
Count
Source
392
961k
{
393
961k
    unsigned int index = s->index;
394
961k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
961k
    result <<= index & 7;
400
961k
    result >>= 8 - 1;
401
961k
#endif
402
961k
#if !UNCHECKED_BITSTREAM_READER
403
961k
    if (s->index < s->size_in_bits_plus8)
404
961k
#endif
405
961k
        index++;
406
961k
    s->index = index;
407
408
961k
    return result;
409
961k
}
Unexecuted instantiation: sipr.c:get_bits1
Unexecuted instantiation: g722dec.c:get_bits1
Unexecuted instantiation: nellymoserdec.c:get_bits1
Unexecuted instantiation: dcaenc.c:get_bits1
Unexecuted instantiation: dcaadpcm.c:get_bits1
Unexecuted instantiation: dcadata.c:get_bits1
Unexecuted instantiation: interplayvideo.c:get_bits1
Unexecuted instantiation: dec.c:get_bits1
Unexecuted instantiation: dec_celt.c:get_bits1
Unexecuted instantiation: silk.c:get_bits1
Unexecuted instantiation: mjpegbdec.c:get_bits1
bink.c:get_bits1
Line
Count
Source
392
190M
{
393
190M
    unsigned int index = s->index;
394
190M
    uint8_t result     = s->buffer[index >> 3];
395
190M
#ifdef BITSTREAM_READER_LE
396
190M
    result >>= index & 7;
397
190M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
190M
#if !UNCHECKED_BITSTREAM_READER
403
190M
    if (s->index < s->size_in_bits_plus8)
404
82.8M
#endif
405
82.8M
        index++;
406
190M
    s->index = index;
407
408
190M
    return result;
409
190M
}
dvdsubdec.c:get_bits1
Line
Count
Source
392
30.3M
{
393
30.3M
    unsigned int index = s->index;
394
30.3M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
30.3M
    result <<= index & 7;
400
30.3M
    result >>= 8 - 1;
401
30.3M
#endif
402
30.3M
#if !UNCHECKED_BITSTREAM_READER
403
30.3M
    if (s->index < s->size_in_bits_plus8)
404
30.3M
#endif
405
30.3M
        index++;
406
30.3M
    s->index = index;
407
408
30.3M
    return result;
409
30.3M
}
Unexecuted instantiation: rtjpeg.c:get_bits1
truespeech.c:get_bits1
Line
Count
Source
392
2.86M
{
393
2.86M
    unsigned int index = s->index;
394
2.86M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.86M
    result <<= index & 7;
400
2.86M
    result >>= 8 - 1;
401
2.86M
#endif
402
2.86M
#if !UNCHECKED_BITSTREAM_READER
403
2.86M
    if (s->index < s->size_in_bits_plus8)
404
2.86M
#endif
405
2.86M
        index++;
406
2.86M
    s->index = index;
407
408
2.86M
    return result;
409
2.86M
}
metasound.c:get_bits1
Line
Count
Source
392
855k
{
393
855k
    unsigned int index = s->index;
394
855k
    uint8_t result     = s->buffer[index >> 3];
395
855k
#ifdef BITSTREAM_READER_LE
396
855k
    result >>= index & 7;
397
855k
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
855k
#if !UNCHECKED_BITSTREAM_READER
403
855k
    if (s->index < s->size_in_bits_plus8)
404
855k
#endif
405
855k
        index++;
406
855k
    s->index = index;
407
408
855k
    return result;
409
855k
}
escape124.c:get_bits1
Line
Count
Source
392
23.3M
{
393
23.3M
    unsigned int index = s->index;
394
23.3M
    uint8_t result     = s->buffer[index >> 3];
395
23.3M
#ifdef BITSTREAM_READER_LE
396
23.3M
    result >>= index & 7;
397
23.3M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
23.3M
#if !UNCHECKED_BITSTREAM_READER
403
23.3M
    if (s->index < s->size_in_bits_plus8)
404
23.3M
#endif
405
23.3M
        index++;
406
23.3M
    s->index = index;
407
408
23.3M
    return result;
409
23.3M
}
Unexecuted instantiation: cllc.c:get_bits1
dvdec.c:get_bits1
Line
Count
Source
392
28.1M
{
393
28.1M
    unsigned int index = s->index;
394
28.1M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
28.1M
    result <<= index & 7;
400
28.1M
    result >>= 8 - 1;
401
28.1M
#endif
402
28.1M
#if !UNCHECKED_BITSTREAM_READER
403
28.1M
    if (s->index < s->size_in_bits_plus8)
404
28.1M
#endif
405
28.1M
        index++;
406
28.1M
    s->index = index;
407
408
28.1M
    return result;
409
28.1M
}
tta.c:get_bits1
Line
Count
Source
392
37.3M
{
393
37.3M
    unsigned int index = s->index;
394
37.3M
    uint8_t result     = s->buffer[index >> 3];
395
37.3M
#ifdef BITSTREAM_READER_LE
396
37.3M
    result >>= index & 7;
397
37.3M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
37.3M
#if !UNCHECKED_BITSTREAM_READER
403
37.3M
    if (s->index < s->size_in_bits_plus8)
404
37.3M
#endif
405
37.3M
        index++;
406
37.3M
    s->index = index;
407
408
37.3M
    return result;
409
37.3M
}
Unexecuted instantiation: fraps.c:get_bits1
motionpixels.c:get_bits1
Line
Count
Source
392
16.8k
{
393
16.8k
    unsigned int index = s->index;
394
16.8k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
16.8k
    result <<= index & 7;
400
16.8k
    result >>= 8 - 1;
401
16.8k
#endif
402
16.8k
#if !UNCHECKED_BITSTREAM_READER
403
16.8k
    if (s->index < s->size_in_bits_plus8)
404
15.9k
#endif
405
15.9k
        index++;
406
16.8k
    s->index = index;
407
408
16.8k
    return result;
409
16.8k
}
vp9.c:get_bits1
Line
Count
Source
392
13.0M
{
393
13.0M
    unsigned int index = s->index;
394
13.0M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
13.0M
    result <<= index & 7;
400
13.0M
    result >>= 8 - 1;
401
13.0M
#endif
402
13.0M
#if !UNCHECKED_BITSTREAM_READER
403
13.0M
    if (s->index < s->size_in_bits_plus8)
404
13.0M
#endif
405
13.0M
        index++;
406
13.0M
    s->index = index;
407
408
13.0M
    return result;
409
13.0M
}
Unexecuted instantiation: vp9block.c:get_bits1
Unexecuted instantiation: vp9data.c:get_bits1
Unexecuted instantiation: vp9lpf.c:get_bits1
Unexecuted instantiation: vp9mvs.c:get_bits1
Unexecuted instantiation: vp9prob.c:get_bits1
Unexecuted instantiation: vp9recon.c:get_bits1
ffv1dec.c:get_bits1
Line
Count
Source
392
11.7M
{
393
11.7M
    unsigned int index = s->index;
394
11.7M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
11.7M
    result <<= index & 7;
400
11.7M
    result >>= 8 - 1;
401
11.7M
#endif
402
11.7M
#if !UNCHECKED_BITSTREAM_READER
403
11.7M
    if (s->index < s->size_in_bits_plus8)
404
8.69M
#endif
405
8.69M
        index++;
406
11.7M
    s->index = index;
407
408
11.7M
    return result;
409
11.7M
}
Unexecuted instantiation: intra_utils.c:get_bits1
Unexecuted instantiation: thread.c:get_bits1
Unexecuted instantiation: ctu.c:get_bits1
Unexecuted instantiation: inter.c:get_bits1
Unexecuted instantiation: intra.c:get_bits1
wmavoice.c:get_bits1
Line
Count
Source
392
4.40M
{
393
4.40M
    unsigned int index = s->index;
394
4.40M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
4.40M
    result <<= index & 7;
400
4.40M
    result >>= 8 - 1;
401
4.40M
#endif
402
4.40M
#if !UNCHECKED_BITSTREAM_READER
403
4.40M
    if (s->index < s->size_in_bits_plus8)
404
3.19M
#endif
405
3.19M
        index++;
406
4.40M
    s->index = index;
407
408
4.40M
    return result;
409
4.40M
}
Unexecuted instantiation: rawdec.c:get_bits1
svq1dec.c:get_bits1
Line
Count
Source
392
745k
{
393
745k
    unsigned int index = s->index;
394
745k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
745k
    result <<= index & 7;
400
745k
    result >>= 8 - 1;
401
745k
#endif
402
745k
#if !UNCHECKED_BITSTREAM_READER
403
745k
    if (s->index < s->size_in_bits_plus8)
404
737k
#endif
405
737k
        index++;
406
745k
    s->index = index;
407
408
745k
    return result;
409
745k
}
mpc7.c:get_bits1
Line
Count
Source
392
129k
{
393
129k
    unsigned int index = s->index;
394
129k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
129k
    result <<= index & 7;
400
129k
    result >>= 8 - 1;
401
129k
#endif
402
129k
#if !UNCHECKED_BITSTREAM_READER
403
129k
    if (s->index < s->size_in_bits_plus8)
404
63.2k
#endif
405
63.2k
        index++;
406
129k
    s->index = index;
407
408
129k
    return result;
409
129k
}
Unexecuted instantiation: truemotion2rt.c:get_bits1
Unexecuted instantiation: adxdec.c:get_bits1
rv40.c:get_bits1
Line
Count
Source
392
1.11M
{
393
1.11M
    unsigned int index = s->index;
394
1.11M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.11M
    result <<= index & 7;
400
1.11M
    result >>= 8 - 1;
401
1.11M
#endif
402
1.11M
#if !UNCHECKED_BITSTREAM_READER
403
1.11M
    if (s->index < s->size_in_bits_plus8)
404
1.09M
#endif
405
1.09M
        index++;
406
1.11M
    s->index = index;
407
408
1.11M
    return result;
409
1.11M
}
Unexecuted instantiation: xsubdec.c:get_bits1
Unexecuted instantiation: notchlc.c:get_bits1
aic.c:get_bits1
Line
Count
Source
392
58.6M
{
393
58.6M
    unsigned int index = s->index;
394
58.6M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
58.6M
    result <<= index & 7;
400
58.6M
    result >>= 8 - 1;
401
58.6M
#endif
402
58.6M
#if !UNCHECKED_BITSTREAM_READER
403
58.6M
    if (s->index < s->size_in_bits_plus8)
404
18.4M
#endif
405
18.4M
        index++;
406
58.6M
    s->index = index;
407
408
58.6M
    return result;
409
58.6M
}
Unexecuted instantiation: vqcdec.c:get_bits1
dolby_e.c:get_bits1
Line
Count
Source
392
154k
{
393
154k
    unsigned int index = s->index;
394
154k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
154k
    result <<= index & 7;
400
154k
    result >>= 8 - 1;
401
154k
#endif
402
154k
#if !UNCHECKED_BITSTREAM_READER
403
154k
    if (s->index < s->size_in_bits_plus8)
404
62.4k
#endif
405
62.4k
        index++;
406
154k
    s->index = index;
407
408
154k
    return result;
409
154k
}
proresdec.c:get_bits1
Line
Count
Source
392
920k
{
393
920k
    unsigned int index = s->index;
394
920k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
920k
    result <<= index & 7;
400
920k
    result >>= 8 - 1;
401
920k
#endif
402
920k
#if !UNCHECKED_BITSTREAM_READER
403
920k
    if (s->index < s->size_in_bits_plus8)
404
83.0k
#endif
405
83.0k
        index++;
406
920k
    s->index = index;
407
408
920k
    return result;
409
920k
}
evrcdec.c:get_bits1
Line
Count
Source
392
12.0k
{
393
12.0k
    unsigned int index = s->index;
394
12.0k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
12.0k
    result <<= index & 7;
400
12.0k
    result >>= 8 - 1;
401
12.0k
#endif
402
12.0k
#if !UNCHECKED_BITSTREAM_READER
403
12.0k
    if (s->index < s->size_in_bits_plus8)
404
12.0k
#endif
405
12.0k
        index++;
406
12.0k
    s->index = index;
407
408
12.0k
    return result;
409
12.0k
}
dnxhddec.c:get_bits1
Line
Count
Source
392
104k
{
393
104k
    unsigned int index = s->index;
394
104k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
104k
    result <<= index & 7;
400
104k
    result >>= 8 - 1;
401
104k
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
    if (s->index < s->size_in_bits_plus8)
404
#endif
405
104k
        index++;
406
104k
    s->index = index;
407
408
104k
    return result;
409
104k
}
Unexecuted instantiation: dcadec.c:get_bits1
dca_core.c:get_bits1
Line
Count
Source
392
7.01M
{
393
7.01M
    unsigned int index = s->index;
394
7.01M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
7.01M
    result <<= index & 7;
400
7.01M
    result >>= 8 - 1;
401
7.01M
#endif
402
7.01M
#if !UNCHECKED_BITSTREAM_READER
403
7.01M
    if (s->index < s->size_in_bits_plus8)
404
7.00M
#endif
405
7.00M
        index++;
406
7.01M
    s->index = index;
407
408
7.01M
    return result;
409
7.01M
}
dca_lbr.c:get_bits1
Line
Count
Source
392
7.09M
{
393
7.09M
    unsigned int index = s->index;
394
7.09M
    uint8_t result     = s->buffer[index >> 3];
395
7.09M
#ifdef BITSTREAM_READER_LE
396
7.09M
    result >>= index & 7;
397
7.09M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
7.09M
#if !UNCHECKED_BITSTREAM_READER
403
7.09M
    if (s->index < s->size_in_bits_plus8)
404
7.04M
#endif
405
7.04M
        index++;
406
7.09M
    s->index = index;
407
408
7.09M
    return result;
409
7.09M
}
dca_xll.c:get_bits1
Line
Count
Source
392
9.33M
{
393
9.33M
    unsigned int index = s->index;
394
9.33M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
9.33M
    result <<= index & 7;
400
9.33M
    result >>= 8 - 1;
401
9.33M
#endif
402
9.33M
#if !UNCHECKED_BITSTREAM_READER
403
9.33M
    if (s->index < s->size_in_bits_plus8)
404
9.32M
#endif
405
9.32M
        index++;
406
9.33M
    s->index = index;
407
408
9.33M
    return result;
409
9.33M
}
Unexecuted instantiation: mlpenc.c:get_bits1
mlpdec.c:get_bits1
Line
Count
Source
392
3.23M
{
393
3.23M
    unsigned int index = s->index;
394
3.23M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
3.23M
    result <<= index & 7;
400
3.23M
    result >>= 8 - 1;
401
3.23M
#endif
402
3.23M
#if !UNCHECKED_BITSTREAM_READER
403
3.23M
    if (s->index < s->size_in_bits_plus8)
404
3.14M
#endif
405
3.14M
        index++;
406
3.23M
    s->index = index;
407
408
3.23M
    return result;
409
3.23M
}
atrac3.c:get_bits1
Line
Count
Source
392
1.76M
{
393
1.76M
    unsigned int index = s->index;
394
1.76M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.76M
    result <<= index & 7;
400
1.76M
    result >>= 8 - 1;
401
1.76M
#endif
402
1.76M
#if !UNCHECKED_BITSTREAM_READER
403
1.76M
    if (s->index < s->size_in_bits_plus8)
404
179k
#endif
405
179k
        index++;
406
1.76M
    s->index = index;
407
408
1.76M
    return result;
409
1.76M
}
vorbisdec.c:get_bits1
Line
Count
Source
392
5.54M
{
393
5.54M
    unsigned int index = s->index;
394
5.54M
    uint8_t result     = s->buffer[index >> 3];
395
5.54M
#ifdef BITSTREAM_READER_LE
396
5.54M
    result >>= index & 7;
397
5.54M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
5.54M
#if !UNCHECKED_BITSTREAM_READER
403
5.54M
    if (s->index < s->size_in_bits_plus8)
404
1.69M
#endif
405
1.69M
        index++;
406
5.54M
    s->index = index;
407
408
5.54M
    return result;
409
5.54M
}
flashsv.c:get_bits1
Line
Count
Source
392
507k
{
393
507k
    unsigned int index = s->index;
394
507k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
507k
    result <<= index & 7;
400
507k
    result >>= 8 - 1;
401
507k
#endif
402
507k
#if !UNCHECKED_BITSTREAM_READER
403
507k
    if (s->index < s->size_in_bits_plus8)
404
507k
#endif
405
507k
        index++;
406
507k
    s->index = index;
407
408
507k
    return result;
409
507k
}
wavpack.c:get_bits1
Line
Count
Source
392
13.8M
{
393
13.8M
    unsigned int index = s->index;
394
13.8M
    uint8_t result     = s->buffer[index >> 3];
395
13.8M
#ifdef BITSTREAM_READER_LE
396
13.8M
    result >>= index & 7;
397
13.8M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
13.8M
#if !UNCHECKED_BITSTREAM_READER
403
13.8M
    if (s->index < s->size_in_bits_plus8)
404
12.0M
#endif
405
12.0M
        index++;
406
13.8M
    s->index = index;
407
408
13.8M
    return result;
409
13.8M
}
Unexecuted instantiation: speedhqdec.c:get_bits1
g723_1dec.c:get_bits1
Line
Count
Source
392
5.48M
{
393
5.48M
    unsigned int index = s->index;
394
5.48M
    uint8_t result     = s->buffer[index >> 3];
395
5.48M
#ifdef BITSTREAM_READER_LE
396
5.48M
    result >>= index & 7;
397
5.48M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
5.48M
#if !UNCHECKED_BITSTREAM_READER
403
5.48M
    if (s->index < s->size_in_bits_plus8)
404
5.47M
#endif
405
5.47M
        index++;
406
5.48M
    s->index = index;
407
408
5.48M
    return result;
409
5.48M
}
Unexecuted instantiation: g2meet.c:get_bits1
Unexecuted instantiation: shorten.c:get_bits1
indeo4.c:get_bits1
Line
Count
Source
392
4.38M
{
393
4.38M
    unsigned int index = s->index;
394
4.38M
    uint8_t result     = s->buffer[index >> 3];
395
4.38M
#ifdef BITSTREAM_READER_LE
396
4.38M
    result >>= index & 7;
397
4.38M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
4.38M
#if !UNCHECKED_BITSTREAM_READER
403
4.38M
    if (s->index < s->size_in_bits_plus8)
404
4.25M
#endif
405
4.25M
        index++;
406
4.38M
    s->index = index;
407
408
4.38M
    return result;
409
4.38M
}
Unexecuted instantiation: sp5xdec.c:get_bits1
Unexecuted instantiation: atrac1.c:get_bits1
Unexecuted instantiation: apv_decode.c:get_bits1
apv_entropy.c:get_bits1
Line
Count
Source
392
6.01M
{
393
6.01M
    unsigned int index = s->index;
394
6.01M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
6.01M
    result <<= index & 7;
400
6.01M
    result >>= 8 - 1;
401
6.01M
#endif
402
6.01M
#if !UNCHECKED_BITSTREAM_READER
403
6.01M
    if (s->index < s->size_in_bits_plus8)
404
56.8k
#endif
405
56.8k
        index++;
406
6.01M
    s->index = index;
407
408
6.01M
    return result;
409
6.01M
}
avs.c:get_bits1
Line
Count
Source
392
67.1M
{
393
67.1M
    unsigned int index = s->index;
394
67.1M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
67.1M
    result <<= index & 7;
400
67.1M
    result >>= 8 - 1;
401
67.1M
#endif
402
67.1M
#if !UNCHECKED_BITSTREAM_READER
403
67.1M
    if (s->index < s->size_in_bits_plus8)
404
67.1M
#endif
405
67.1M
        index++;
406
67.1M
    s->index = index;
407
408
67.1M
    return result;
409
67.1M
}
rv60dec.c:get_bits1
Line
Count
Source
392
231M
{
393
231M
    unsigned int index = s->index;
394
231M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
231M
    result <<= index & 7;
400
231M
    result >>= 8 - 1;
401
231M
#endif
402
231M
#if !UNCHECKED_BITSTREAM_READER
403
231M
    if (s->index < s->size_in_bits_plus8)
404
11.1M
#endif
405
11.1M
        index++;
406
231M
    s->index = index;
407
408
231M
    return result;
409
231M
}
alac.c:get_bits1
Line
Count
Source
392
32.5M
{
393
32.5M
    unsigned int index = s->index;
394
32.5M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
32.5M
    result <<= index & 7;
400
32.5M
    result >>= 8 - 1;
401
32.5M
#endif
402
32.5M
#if !UNCHECKED_BITSTREAM_READER
403
32.5M
    if (s->index < s->size_in_bits_plus8)
404
32.5M
#endif
405
32.5M
        index++;
406
32.5M
    s->index = index;
407
408
32.5M
    return result;
409
32.5M
}
Unexecuted instantiation: tiertexseqv.c:get_bits1
Unexecuted instantiation: ffv1enc.c:get_bits1
Unexecuted instantiation: hcadec.c:get_bits1
Unexecuted instantiation: pcx.c:get_bits1
Unexecuted instantiation: qcelpdec.c:get_bits1
flacdec.c:get_bits1
Line
Count
Source
392
3.24M
{
393
3.24M
    unsigned int index = s->index;
394
3.24M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
3.24M
    result <<= index & 7;
400
3.24M
    result >>= 8 - 1;
401
3.24M
#endif
402
3.24M
#if !UNCHECKED_BITSTREAM_READER
403
3.24M
    if (s->index < s->size_in_bits_plus8)
404
3.06M
#endif
405
3.06M
        index++;
406
3.24M
    s->index = index;
407
408
3.24M
    return result;
409
3.24M
}
ac3dec_fixed.c:get_bits1
Line
Count
Source
392
22.5M
{
393
22.5M
    unsigned int index = s->index;
394
22.5M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
22.5M
    result <<= index & 7;
400
22.5M
    result >>= 8 - 1;
401
22.5M
#endif
402
22.5M
#if !UNCHECKED_BITSTREAM_READER
403
22.5M
    if (s->index < s->size_in_bits_plus8)
404
17.5M
#endif
405
17.5M
        index++;
406
22.5M
    s->index = index;
407
408
22.5M
    return result;
409
22.5M
}
midivid.c:get_bits1
Line
Count
Source
392
8.18M
{
393
8.18M
    unsigned int index = s->index;
394
8.18M
    uint8_t result     = s->buffer[index >> 3];
395
8.18M
#ifdef BITSTREAM_READER_LE
396
8.18M
    result >>= index & 7;
397
8.18M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
8.18M
#if !UNCHECKED_BITSTREAM_READER
403
8.18M
    if (s->index < s->size_in_bits_plus8)
404
8.18M
#endif
405
8.18M
        index++;
406
8.18M
    s->index = index;
407
408
8.18M
    return result;
409
8.18M
}
mimic.c:get_bits1
Line
Count
Source
392
4.33M
{
393
4.33M
    unsigned int index = s->index;
394
4.33M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
4.33M
    result <<= index & 7;
400
4.33M
    result >>= 8 - 1;
401
4.33M
#endif
402
4.33M
#if !UNCHECKED_BITSTREAM_READER
403
4.33M
    if (s->index < s->size_in_bits_plus8)
404
130k
#endif
405
130k
        index++;
406
4.33M
    s->index = index;
407
408
4.33M
    return result;
409
4.33M
}
fic.c:get_bits1
Line
Count
Source
392
3.21M
{
393
3.21M
    unsigned int index = s->index;
394
3.21M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
3.21M
    result <<= index & 7;
400
3.21M
    result >>= 8 - 1;
401
3.21M
#endif
402
3.21M
#if !UNCHECKED_BITSTREAM_READER
403
3.21M
    if (s->index < s->size_in_bits_plus8)
404
3.21M
#endif
405
3.21M
        index++;
406
3.21M
    s->index = index;
407
408
3.21M
    return result;
409
3.21M
}
Unexecuted instantiation: qdmc.c:get_bits1
Unexecuted instantiation: ra288.c:get_bits1
interplayacm.c:get_bits1
Line
Count
Source
392
26.4M
{
393
26.4M
    unsigned int index = s->index;
394
26.4M
    uint8_t result     = s->buffer[index >> 3];
395
26.4M
#ifdef BITSTREAM_READER_LE
396
26.4M
    result >>= index & 7;
397
26.4M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
26.4M
#if !UNCHECKED_BITSTREAM_READER
403
26.4M
    if (s->index < s->size_in_bits_plus8)
404
23.4M
#endif
405
23.4M
        index++;
406
26.4M
    s->index = index;
407
408
26.4M
    return result;
409
26.4M
}
ylc.c:get_bits1
Line
Count
Source
392
255M
{
393
255M
    unsigned int index = s->index;
394
255M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
255M
    result <<= index & 7;
400
255M
    result >>= 8 - 1;
401
255M
#endif
402
255M
#if !UNCHECKED_BITSTREAM_READER
403
255M
    if (s->index < s->size_in_bits_plus8)
404
59.5M
#endif
405
59.5M
        index++;
406
255M
    s->index = index;
407
408
255M
    return result;
409
255M
}
Unexecuted instantiation: ftr.c:get_bits1
Unexecuted instantiation: agm.c:get_bits1
xan.c:get_bits1
Line
Count
Source
392
4.09M
{
393
4.09M
    unsigned int index = s->index;
394
4.09M
    uint8_t result     = s->buffer[index >> 3];
395
4.09M
#ifdef BITSTREAM_READER_LE
396
4.09M
    result >>= index & 7;
397
4.09M
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
4.09M
#if !UNCHECKED_BITSTREAM_READER
403
4.09M
    if (s->index < s->size_in_bits_plus8)
404
4.09M
#endif
405
4.09M
        index++;
406
4.09M
    s->index = index;
407
408
4.09M
    return result;
409
4.09M
}
svq3.c:get_bits1
Line
Count
Source
392
1.02M
{
393
1.02M
    unsigned int index = s->index;
394
1.02M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.02M
    result <<= index & 7;
400
1.02M
    result >>= 8 - 1;
401
1.02M
#endif
402
1.02M
#if !UNCHECKED_BITSTREAM_READER
403
1.02M
    if (s->index < s->size_in_bits_plus8)
404
1.01M
#endif
405
1.01M
        index++;
406
1.02M
    s->index = index;
407
408
1.02M
    return result;
409
1.02M
}
Unexecuted instantiation: cri.c:get_bits1
qdm2.c:get_bits1
Line
Count
Source
392
191k
{
393
191k
    unsigned int index = s->index;
394
191k
    uint8_t result     = s->buffer[index >> 3];
395
191k
#ifdef BITSTREAM_READER_LE
396
191k
    result >>= index & 7;
397
191k
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
191k
#if !UNCHECKED_BITSTREAM_READER
403
191k
    if (s->index < s->size_in_bits_plus8)
404
190k
#endif
405
190k
        index++;
406
191k
    s->index = index;
407
408
191k
    return result;
409
191k
}
Unexecuted instantiation: cljrdec.c:get_bits1
Unexecuted instantiation: g728dec.c:get_bits1
cook.c:get_bits1
Line
Count
Source
392
1.41M
{
393
1.41M
    unsigned int index = s->index;
394
1.41M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.41M
    result <<= index & 7;
400
1.41M
    result >>= 8 - 1;
401
1.41M
#endif
402
1.41M
#if !UNCHECKED_BITSTREAM_READER
403
1.41M
    if (s->index < s->size_in_bits_plus8)
404
1.41M
#endif
405
1.41M
        index++;
406
1.41M
    s->index = index;
407
408
1.41M
    return result;
409
1.41M
}
twinvqdec.c:get_bits1
Line
Count
Source
392
1.00M
{
393
1.00M
    unsigned int index = s->index;
394
1.00M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
1.00M
    result <<= index & 7;
400
1.00M
    result >>= 8 - 1;
401
1.00M
#endif
402
1.00M
#if !UNCHECKED_BITSTREAM_READER
403
1.00M
    if (s->index < s->size_in_bits_plus8)
404
674k
#endif
405
674k
        index++;
406
1.00M
    s->index = index;
407
408
1.00M
    return result;
409
1.00M
}
hq_hqa.c:get_bits1
Line
Count
Source
392
899k
{
393
899k
    unsigned int index = s->index;
394
899k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
899k
    result <<= index & 7;
400
899k
    result >>= 8 - 1;
401
899k
#endif
402
899k
#if !UNCHECKED_BITSTREAM_READER
403
899k
    if (s->index < s->size_in_bits_plus8)
404
37.5k
#endif
405
37.5k
        index++;
406
899k
    s->index = index;
407
408
899k
    return result;
409
899k
}
cdxl.c:get_bits1
Line
Count
Source
392
35.4M
{
393
35.4M
    unsigned int index = s->index;
394
35.4M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
35.4M
    result <<= index & 7;
400
35.4M
    result >>= 8 - 1;
401
35.4M
#endif
402
#if !UNCHECKED_BITSTREAM_READER
403
    if (s->index < s->size_in_bits_plus8)
404
#endif
405
35.4M
        index++;
406
35.4M
    s->index = index;
407
408
35.4M
    return result;
409
35.4M
}
vble.c:get_bits1
Line
Count
Source
392
63.1k
{
393
63.1k
    unsigned int index = s->index;
394
63.1k
    uint8_t result     = s->buffer[index >> 3];
395
63.1k
#ifdef BITSTREAM_READER_LE
396
63.1k
    result >>= index & 7;
397
63.1k
    result  &= 1;
398
#else
399
    result <<= index & 7;
400
    result >>= 8 - 1;
401
#endif
402
63.1k
#if !UNCHECKED_BITSTREAM_READER
403
63.1k
    if (s->index < s->size_in_bits_plus8)
404
21.4k
#endif
405
21.4k
        index++;
406
63.1k
    s->index = index;
407
408
63.1k
    return result;
409
63.1k
}
mv30.c:get_bits1
Line
Count
Source
392
179M
{
393
179M
    unsigned int index = s->index;
394
179M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
179M
    result <<= index & 7;
400
179M
    result >>= 8 - 1;
401
179M
#endif
402
179M
#if !UNCHECKED_BITSTREAM_READER
403
179M
    if (s->index < s->size_in_bits_plus8)
404
10.6M
#endif
405
10.6M
        index++;
406
179M
    s->index = index;
407
408
179M
    return result;
409
179M
}
apedec.c:get_bits1
Line
Count
Source
392
285M
{
393
285M
    unsigned int index = s->index;
394
285M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
285M
    result <<= index & 7;
400
285M
    result >>= 8 - 1;
401
285M
#endif
402
285M
#if !UNCHECKED_BITSTREAM_READER
403
285M
    if (s->index < s->size_in_bits_plus8)
404
285M
#endif
405
285M
        index++;
406
285M
    s->index = index;
407
408
285M
    return result;
409
285M
}
h261dec.c:get_bits1
Line
Count
Source
392
2.62M
{
393
2.62M
    unsigned int index = s->index;
394
2.62M
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
2.62M
    result <<= index & 7;
400
2.62M
    result >>= 8 - 1;
401
2.62M
#endif
402
2.62M
#if !UNCHECKED_BITSTREAM_READER
403
2.62M
    if (s->index < s->size_in_bits_plus8)
404
2.62M
#endif
405
2.62M
        index++;
406
2.62M
    s->index = index;
407
408
2.62M
    return result;
409
2.62M
}
dstdec.c:get_bits1
Line
Count
Source
392
404k
{
393
404k
    unsigned int index = s->index;
394
404k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
404k
    result <<= index & 7;
400
404k
    result >>= 8 - 1;
401
404k
#endif
402
404k
#if !UNCHECKED_BITSTREAM_READER
403
404k
    if (s->index < s->size_in_bits_plus8)
404
206k
#endif
405
206k
        index++;
406
404k
    s->index = index;
407
408
404k
    return result;
409
404k
}
Unexecuted instantiation: jpeglsenc.c:get_bits1
truemotion2.c:get_bits1
Line
Count
Source
392
34.6k
{
393
34.6k
    unsigned int index = s->index;
394
34.6k
    uint8_t result     = s->buffer[index >> 3];
395
#ifdef BITSTREAM_READER_LE
396
    result >>= index & 7;
397
    result  &= 1;
398
#else
399
34.6k
    result <<= index & 7;
400
34.6k
    result >>= 8 - 1;
401
34.6k
#endif
402
34.6k
#if !UNCHECKED_BITSTREAM_READER
403
34.6k
    if (s->index < s->size_in_bits_plus8)
404
30.2k
#endif
405
30.2k
        index++;
406
34.6k
    s->index = index;
407
408
34.6k
    return result;
409
34.6k
}
410
411
static inline unsigned int show_bits1(GetBitContext *s)
412
15.4M
{
413
15.4M
    return show_bits(s, 1);
414
15.4M
}
Unexecuted instantiation: mpegvideo_motion.c:show_bits1
Unexecuted instantiation: wmv2dec.c:show_bits1
Unexecuted instantiation: aac_adtstoasc.c:show_bits1
Unexecuted instantiation: dovi_rpu.c:show_bits1
Unexecuted instantiation: dovi_split.c:show_bits1
Unexecuted instantiation: dts2pts.c:show_bits1
Unexecuted instantiation: eac3_core.c:show_bits1
Unexecuted instantiation: evc_frame_merge.c:show_bits1
Unexecuted instantiation: extract_extradata.c:show_bits1
Unexecuted instantiation: h264_metadata.c:show_bits1
Unexecuted instantiation: h264_redundant_pps.c:show_bits1
Unexecuted instantiation: h265_metadata.c:show_bits1
Unexecuted instantiation: h266_metadata.c:show_bits1
Unexecuted instantiation: lcevc_merge.c:show_bits1
Unexecuted instantiation: lcevc_metadata.c:show_bits1
Unexecuted instantiation: remove_extradata.c:show_bits1
Unexecuted instantiation: truehd_core.c:show_bits1
Unexecuted instantiation: vp9_raw_reorder.c:show_bits1
Unexecuted instantiation: vp9_superframe.c:show_bits1
Unexecuted instantiation: vp9_superframe_split.c:show_bits1
Unexecuted instantiation: cbs.c:show_bits1
Unexecuted instantiation: cbs_apv.c:show_bits1
Unexecuted instantiation: cbs_av1.c:show_bits1
Unexecuted instantiation: cbs_h264.c:show_bits1
Unexecuted instantiation: cbs_h2645.c:show_bits1
Unexecuted instantiation: cbs_h265.c:show_bits1
Unexecuted instantiation: cbs_h266.c:show_bits1
Unexecuted instantiation: cbs_lcevc.c:show_bits1
Unexecuted instantiation: cbs_mpeg2.c:show_bits1
Unexecuted instantiation: cbs_sei.c:show_bits1
Unexecuted instantiation: cbs_vp8.c:show_bits1
Unexecuted instantiation: cbs_vp9.c:show_bits1
Unexecuted instantiation: dovi_rpudec.c:show_bits1
Unexecuted instantiation: evc_parse.c:show_bits1
Unexecuted instantiation: evc_ps.c:show_bits1
Unexecuted instantiation: h263dec.c:show_bits1
Unexecuted instantiation: h2645_parse.c:show_bits1
Unexecuted instantiation: h264_parse.c:show_bits1
h264_ps.c:show_bits1
Line
Count
Source
412
1.51M
{
413
1.51M
    return show_bits(s, 1);
414
1.51M
}
Unexecuted instantiation: h264data.c:show_bits1
Unexecuted instantiation: h265_profile_level.c:show_bits1
Unexecuted instantiation: ps.c:show_bits1
Unexecuted instantiation: intelh263dec.c:show_bits1
Unexecuted instantiation: intrax8.c:show_bits1
Unexecuted instantiation: ituh263dec.c:show_bits1
Unexecuted instantiation: mlp_parse.c:show_bits1
Unexecuted instantiation: mpeg4audio.c:show_bits1
Unexecuted instantiation: mpeg4videodec.c:show_bits1
Unexecuted instantiation: mpeg_er.c:show_bits1
Unexecuted instantiation: mpegvideo_dec.c:show_bits1
Unexecuted instantiation: msmpeg4dec.c:show_bits1
Unexecuted instantiation: rv10.c:show_bits1
Unexecuted instantiation: ac3_parser.c:show_bits1
Unexecuted instantiation: adts_header.c:show_bits1
Unexecuted instantiation: av1_parse.c:show_bits1
Unexecuted instantiation: flvdec.c:show_bits1
Unexecuted instantiation: h2645_vui.c:show_bits1
Unexecuted instantiation: vc1_parser.c:show_bits1
Unexecuted instantiation: vorbis_parser.c:show_bits1
Unexecuted instantiation: vp9_parser.c:show_bits1
Unexecuted instantiation: vvc_parser.c:show_bits1
Unexecuted instantiation: aac_ac3_parser.c:show_bits1
Unexecuted instantiation: av1_parser.c:show_bits1
Unexecuted instantiation: avs2_parser.c:show_bits1
Unexecuted instantiation: avs3_parser.c:show_bits1
Unexecuted instantiation: cavs_parser.c:show_bits1
Unexecuted instantiation: dca_parser.c:show_bits1
Unexecuted instantiation: dolby_e_parser.c:show_bits1
Unexecuted instantiation: evc_parser.c:show_bits1
Unexecuted instantiation: ffv1_parser.c:show_bits1
Unexecuted instantiation: flac_parser.c:show_bits1
Unexecuted instantiation: ftr_parser.c:show_bits1
Unexecuted instantiation: h264_parser.c:show_bits1
Unexecuted instantiation: h264_sei.c:show_bits1
Unexecuted instantiation: h264idct.c:show_bits1
Unexecuted instantiation: parser.c:show_bits1
Unexecuted instantiation: sei.c:show_bits1
Unexecuted instantiation: jpegxl_parser.c:show_bits1
Unexecuted instantiation: jpegxs_parser.c:show_bits1
Unexecuted instantiation: lcevc_parser.c:show_bits1
Unexecuted instantiation: mlp_parser.c:show_bits1
Unexecuted instantiation: mpeg4video_parser.c:show_bits1
Unexecuted instantiation: vc1.c:show_bits1
Unexecuted instantiation: vc1data.c:show_bits1
Unexecuted instantiation: dca.c:show_bits1
Unexecuted instantiation: dca_exss.c:show_bits1
Unexecuted instantiation: dolby_e_parse.c:show_bits1
Unexecuted instantiation: ffv1.c:show_bits1
Unexecuted instantiation: ffv1_parse.c:show_bits1
Unexecuted instantiation: flac.c:show_bits1
Unexecuted instantiation: h2645_sei.c:show_bits1
Unexecuted instantiation: parse.c:show_bits1
Unexecuted instantiation: jpegxl_parse.c:show_bits1
Unexecuted instantiation: aom_film_grain.c:show_bits1
Unexecuted instantiation: dynamic_hdr_vivid.c:show_bits1
Unexecuted instantiation: hdr_dynamic_metadata.c:show_bits1
Unexecuted instantiation: av1dec.c:show_bits1
Unexecuted instantiation: bit.c:show_bits1
Unexecuted instantiation: dtsdec.c:show_bits1
Unexecuted instantiation: dtshddec.c:show_bits1
Unexecuted instantiation: h264dec.c:show_bits1
Unexecuted instantiation: hls_sample_encryption.c:show_bits1
Unexecuted instantiation: isom.c:show_bits1
Unexecuted instantiation: matroskadec.c:show_bits1
Unexecuted instantiation: mlpdec.c:show_bits1
Unexecuted instantiation: mov.c:show_bits1
Unexecuted instantiation: mpc8.c:show_bits1
Unexecuted instantiation: mpegts.c:show_bits1
Unexecuted instantiation: oggparsetheora.c:show_bits1
Unexecuted instantiation: shortendec.c:show_bits1
Unexecuted instantiation: swfdec.c:show_bits1
Unexecuted instantiation: takdec.c:show_bits1
Unexecuted instantiation: iamf_parse.c:show_bits1
Unexecuted instantiation: dirac.c:show_bits1
Unexecuted instantiation: atrac9dec.c:show_bits1
Unexecuted instantiation: enc.c:show_bits1
Unexecuted instantiation: enc_psy.c:show_bits1
Unexecuted instantiation: pvq.c:show_bits1
Unexecuted instantiation: rc.c:show_bits1
Unexecuted instantiation: celt.c:show_bits1
Unexecuted instantiation: gsmdec.c:show_bits1
Unexecuted instantiation: msgsmdec.c:show_bits1
Unexecuted instantiation: imc.c:show_bits1
Unexecuted instantiation: adpcm.c:show_bits1
Unexecuted instantiation: wmaenc.c:show_bits1
Unexecuted instantiation: wma.c:show_bits1
Unexecuted instantiation: cfhd.c:show_bits1
Unexecuted instantiation: wavarc.c:show_bits1
Unexecuted instantiation: escape130.c:show_bits1
Unexecuted instantiation: asvdec.c:show_bits1
Unexecuted instantiation: diracdec.c:show_bits1
Unexecuted instantiation: dirac_arith.c:show_bits1
Unexecuted instantiation: wmadec.c:show_bits1
Unexecuted instantiation: aacenc.c:show_bits1
Unexecuted instantiation: imm4.c:show_bits1
Unexecuted instantiation: exr.c:show_bits1
Unexecuted instantiation: aacdec.c:show_bits1
Unexecuted instantiation: aacdec_fixed.c:show_bits1
Unexecuted instantiation: aacdec_float.c:show_bits1
Unexecuted instantiation: aacdec_tab.c:show_bits1
Unexecuted instantiation: aacdec_usac.c:show_bits1
Unexecuted instantiation: aacdec_usac_mps212.c:show_bits1
Unexecuted instantiation: aacps_common.c:show_bits1
Unexecuted instantiation: aacsbr.c:show_bits1
Unexecuted instantiation: aacsbr_fixed.c:show_bits1
Unexecuted instantiation: aacdec_ac.c:show_bits1
Unexecuted instantiation: aacdec_lpd.c:show_bits1
Unexecuted instantiation: aacps_fixed.c:show_bits1
Unexecuted instantiation: aacps_float.c:show_bits1
Unexecuted instantiation: mjpegdec.c:show_bits1
Unexecuted instantiation: mjpegdec_common.c:show_bits1
Unexecuted instantiation: jpeglsdec.c:show_bits1
Unexecuted instantiation: jvdec.c:show_bits1
Unexecuted instantiation: rdt.c:show_bits1
Unexecuted instantiation: rtpdec_h261.c:show_bits1
Unexecuted instantiation: rtpdec_h263_rfc2190.c:show_bits1
Unexecuted instantiation: rtpdec_latm.c:show_bits1
Unexecuted instantiation: rtpdec_mpeg4.c:show_bits1
Unexecuted instantiation: rtpdec_qt.c:show_bits1
Unexecuted instantiation: h264_cavlc.c:show_bits1
Unexecuted instantiation: h264_direct.c:show_bits1
Unexecuted instantiation: h264_mb.c:show_bits1
Unexecuted instantiation: h264_picture.c:show_bits1
Unexecuted instantiation: h264_refs.c:show_bits1
Unexecuted instantiation: h264_slice.c:show_bits1
Unexecuted instantiation: h264_cabac.c:show_bits1
Unexecuted instantiation: h264_loopfilter.c:show_bits1
Unexecuted instantiation: alsdec.c:show_bits1
Unexecuted instantiation: bgmc.c:show_bits1
Unexecuted instantiation: mlz.c:show_bits1
Unexecuted instantiation: bonk.c:show_bits1
Unexecuted instantiation: mxpegdec.c:show_bits1
Unexecuted instantiation: rv30.c:show_bits1
Unexecuted instantiation: rv34.c:show_bits1
Unexecuted instantiation: indeo3.c:show_bits1
Unexecuted instantiation: eamad.c:show_bits1
Unexecuted instantiation: mpeg12.c:show_bits1
Unexecuted instantiation: g726.c:show_bits1
Unexecuted instantiation: vc1dec.c:show_bits1
Unexecuted instantiation: vc1_block.c:show_bits1
Unexecuted instantiation: vc1_loopfilter.c:show_bits1
Unexecuted instantiation: vc1_mc.c:show_bits1
Unexecuted instantiation: vc1_pred.c:show_bits1
Unexecuted instantiation: mpegaudiodec_float.c:show_bits1
Unexecuted instantiation: huffyuvdec.c:show_bits1
speexdec.c:show_bits1
Line
Count
Source
412
1.19M
{
413
1.19M
    return show_bits(s, 1);
414
1.19M
}
Unexecuted instantiation: atrac3plusdec.c:show_bits1
Unexecuted instantiation: atrac3plusdsp.c:show_bits1
Unexecuted instantiation: atrac3plus.c:show_bits1
Unexecuted instantiation: mss4.c:show_bits1
Unexecuted instantiation: tiff.c:show_bits1
Unexecuted instantiation: faxcompr.c:show_bits1
Unexecuted instantiation: ac3dec_float.c:show_bits1
Unexecuted instantiation: on2avc.c:show_bits1
Unexecuted instantiation: smacker.c:show_bits1
Unexecuted instantiation: dvbsubdec.c:show_bits1
Unexecuted instantiation: mss1.c:show_bits1
Unexecuted instantiation: mss12.c:show_bits1
Unexecuted instantiation: mss2.c:show_bits1
Unexecuted instantiation: mdec.c:show_bits1
Unexecuted instantiation: osq.c:show_bits1
Unexecuted instantiation: vp6.c:show_bits1
Unexecuted instantiation: vp56.c:show_bits1
Unexecuted instantiation: vp56data.c:show_bits1
Unexecuted instantiation: loco.c:show_bits1
Unexecuted instantiation: vp5.c:show_bits1
Unexecuted instantiation: ra144dec.c:show_bits1
Unexecuted instantiation: indeo5.c:show_bits1
Unexecuted instantiation: ivi.c:show_bits1
Unexecuted instantiation: ivi_dsp.c:show_bits1
Unexecuted instantiation: apac.c:show_bits1
Unexecuted instantiation: clearvideo.c:show_bits1
Unexecuted instantiation: dxtory.c:show_bits1
Unexecuted instantiation: mpegaudiodec_fixed.c:show_bits1
Unexecuted instantiation: ralf.c:show_bits1
Unexecuted instantiation: pixlet.c:show_bits1
Unexecuted instantiation: wnv1.c:show_bits1
Unexecuted instantiation: qoadec.c:show_bits1
Unexecuted instantiation: vima.c:show_bits1
Unexecuted instantiation: leaddec.c:show_bits1
Unexecuted instantiation: eatqi.c:show_bits1
Unexecuted instantiation: lagarith.c:show_bits1
Unexecuted instantiation: lagarithrac.c:show_bits1
Unexecuted instantiation: dss_sp.c:show_bits1
siren.c:show_bits1
Line
Count
Source
412
12.7M
{
413
12.7M
    return show_bits(s, 1);
414
12.7M
}
Unexecuted instantiation: cavsdec.c:show_bits1
Unexecuted instantiation: cavs.c:show_bits1
Unexecuted instantiation: cavsdata.c:show_bits1
Unexecuted instantiation: hcom.c:show_bits1
Unexecuted instantiation: vp3.c:show_bits1
Unexecuted instantiation: webp.c:show_bits1
Unexecuted instantiation: eatgv.c:show_bits1
Unexecuted instantiation: eatgq.c:show_bits1
Unexecuted instantiation: sga.c:show_bits1
Unexecuted instantiation: binkaudio.c:show_bits1
Unexecuted instantiation: mpeg12dec.c:show_bits1
Unexecuted instantiation: indeo2.c:show_bits1
Unexecuted instantiation: 4xm.c:show_bits1
Unexecuted instantiation: wmalosslessdec.c:show_bits1
Unexecuted instantiation: ilbcdec.c:show_bits1
Unexecuted instantiation: hevcdec.c:show_bits1
Unexecuted instantiation: mvs.c:show_bits1
Unexecuted instantiation: pred.c:show_bits1
Unexecuted instantiation: refs.c:show_bits1
Unexecuted instantiation: cabac.c:show_bits1
Unexecuted instantiation: dsp.c:show_bits1
Unexecuted instantiation: filter.c:show_bits1
Unexecuted instantiation: tscc2.c:show_bits1
Unexecuted instantiation: hqx.c:show_bits1
Unexecuted instantiation: mobiclip.c:show_bits1
Unexecuted instantiation: wmaprodec.c:show_bits1
Unexecuted instantiation: g729dec.c:show_bits1
Unexecuted instantiation: sipr.c:show_bits1
Unexecuted instantiation: g722dec.c:show_bits1
Unexecuted instantiation: nellymoserdec.c:show_bits1
Unexecuted instantiation: dcaenc.c:show_bits1
Unexecuted instantiation: dcaadpcm.c:show_bits1
Unexecuted instantiation: dcadata.c:show_bits1
Unexecuted instantiation: interplayvideo.c:show_bits1
Unexecuted instantiation: dec.c:show_bits1
Unexecuted instantiation: dec_celt.c:show_bits1
Unexecuted instantiation: silk.c:show_bits1
Unexecuted instantiation: mjpegbdec.c:show_bits1
Unexecuted instantiation: bink.c:show_bits1
Unexecuted instantiation: dvdsubdec.c:show_bits1
Unexecuted instantiation: rtjpeg.c:show_bits1
Unexecuted instantiation: truespeech.c:show_bits1
Unexecuted instantiation: metasound.c:show_bits1
Unexecuted instantiation: escape124.c:show_bits1
Unexecuted instantiation: cllc.c:show_bits1
Unexecuted instantiation: dvdec.c:show_bits1
Unexecuted instantiation: tta.c:show_bits1
Unexecuted instantiation: fraps.c:show_bits1
Unexecuted instantiation: motionpixels.c:show_bits1
Unexecuted instantiation: vp9.c:show_bits1
Unexecuted instantiation: vp9block.c:show_bits1
Unexecuted instantiation: vp9data.c:show_bits1
Unexecuted instantiation: vp9lpf.c:show_bits1
Unexecuted instantiation: vp9mvs.c:show_bits1
Unexecuted instantiation: vp9prob.c:show_bits1
Unexecuted instantiation: vp9recon.c:show_bits1
Unexecuted instantiation: ffv1dec.c:show_bits1
Unexecuted instantiation: intra_utils.c:show_bits1
Unexecuted instantiation: thread.c:show_bits1
Unexecuted instantiation: ctu.c:show_bits1
Unexecuted instantiation: inter.c:show_bits1
Unexecuted instantiation: intra.c:show_bits1
Unexecuted instantiation: wmavoice.c:show_bits1
Unexecuted instantiation: rawdec.c:show_bits1
Unexecuted instantiation: svq1dec.c:show_bits1
Unexecuted instantiation: mpc7.c:show_bits1
Unexecuted instantiation: truemotion2rt.c:show_bits1
Unexecuted instantiation: adxdec.c:show_bits1
Unexecuted instantiation: rv40.c:show_bits1
Unexecuted instantiation: xsubdec.c:show_bits1
Unexecuted instantiation: notchlc.c:show_bits1
Unexecuted instantiation: aic.c:show_bits1
Unexecuted instantiation: vqcdec.c:show_bits1
Unexecuted instantiation: dolby_e.c:show_bits1
Unexecuted instantiation: proresdec.c:show_bits1
Unexecuted instantiation: evrcdec.c:show_bits1
Unexecuted instantiation: dnxhddec.c:show_bits1
Unexecuted instantiation: dcadec.c:show_bits1
Unexecuted instantiation: dca_core.c:show_bits1
Unexecuted instantiation: dca_lbr.c:show_bits1
Unexecuted instantiation: dca_xll.c:show_bits1
Unexecuted instantiation: mlpenc.c:show_bits1
Unexecuted instantiation: atrac3.c:show_bits1
Unexecuted instantiation: vorbisdec.c:show_bits1
Unexecuted instantiation: flashsv.c:show_bits1
Unexecuted instantiation: wavpack.c:show_bits1
Unexecuted instantiation: speedhqdec.c:show_bits1
Unexecuted instantiation: g723_1dec.c:show_bits1
Unexecuted instantiation: g2meet.c:show_bits1
Unexecuted instantiation: shorten.c:show_bits1
Unexecuted instantiation: indeo4.c:show_bits1
Unexecuted instantiation: sp5xdec.c:show_bits1
Unexecuted instantiation: atrac1.c:show_bits1
Unexecuted instantiation: apv_decode.c:show_bits1
Unexecuted instantiation: apv_entropy.c:show_bits1
Unexecuted instantiation: avs.c:show_bits1
Unexecuted instantiation: rv60dec.c:show_bits1
Unexecuted instantiation: alac.c:show_bits1
Unexecuted instantiation: tiertexseqv.c:show_bits1
Unexecuted instantiation: ffv1enc.c:show_bits1
Unexecuted instantiation: hcadec.c:show_bits1
Unexecuted instantiation: pcx.c:show_bits1
Unexecuted instantiation: qcelpdec.c:show_bits1
Unexecuted instantiation: flacdec.c:show_bits1
Unexecuted instantiation: ac3dec_fixed.c:show_bits1
Unexecuted instantiation: midivid.c:show_bits1
Unexecuted instantiation: mimic.c:show_bits1
Unexecuted instantiation: fic.c:show_bits1
Unexecuted instantiation: qdmc.c:show_bits1
Unexecuted instantiation: ra288.c:show_bits1
Unexecuted instantiation: interplayacm.c:show_bits1
Unexecuted instantiation: ylc.c:show_bits1
Unexecuted instantiation: ftr.c:show_bits1
Unexecuted instantiation: agm.c:show_bits1
Unexecuted instantiation: xan.c:show_bits1
Unexecuted instantiation: svq3.c:show_bits1
Unexecuted instantiation: cri.c:show_bits1
Unexecuted instantiation: qdm2.c:show_bits1
Unexecuted instantiation: cljrdec.c:show_bits1
Unexecuted instantiation: g728dec.c:show_bits1
Unexecuted instantiation: cook.c:show_bits1
Unexecuted instantiation: twinvqdec.c:show_bits1
Unexecuted instantiation: hq_hqa.c:show_bits1
Unexecuted instantiation: cdxl.c:show_bits1
Unexecuted instantiation: vble.c:show_bits1
Unexecuted instantiation: mv30.c:show_bits1
Unexecuted instantiation: apedec.c:show_bits1
Unexecuted instantiation: h261dec.c:show_bits1
Unexecuted instantiation: dstdec.c:show_bits1
Unexecuted instantiation: jpeglsenc.c:show_bits1
Unexecuted instantiation: truemotion2.c:show_bits1
415
416
static inline void skip_bits1(GetBitContext *s)
417
8.72G
{
418
8.72G
    skip_bits(s, 1);
419
8.72G
}
Unexecuted instantiation: mpegvideo_motion.c:skip_bits1
Unexecuted instantiation: wmv2dec.c:skip_bits1
Unexecuted instantiation: aac_adtstoasc.c:skip_bits1
Unexecuted instantiation: dovi_rpu.c:skip_bits1
Unexecuted instantiation: dovi_split.c:skip_bits1
Unexecuted instantiation: dts2pts.c:skip_bits1
Unexecuted instantiation: eac3_core.c:skip_bits1
evc_frame_merge.c:skip_bits1
Line
Count
Source
417
135k
{
418
135k
    skip_bits(s, 1);
419
135k
}
Unexecuted instantiation: extract_extradata.c:skip_bits1
Unexecuted instantiation: h264_metadata.c:skip_bits1
Unexecuted instantiation: h264_redundant_pps.c:skip_bits1
Unexecuted instantiation: h265_metadata.c:skip_bits1
Unexecuted instantiation: h266_metadata.c:skip_bits1
Unexecuted instantiation: lcevc_merge.c:skip_bits1
Unexecuted instantiation: lcevc_metadata.c:skip_bits1
Unexecuted instantiation: remove_extradata.c:skip_bits1
Unexecuted instantiation: truehd_core.c:skip_bits1
Unexecuted instantiation: vp9_raw_reorder.c:skip_bits1
Unexecuted instantiation: vp9_superframe.c:skip_bits1
Unexecuted instantiation: vp9_superframe_split.c:skip_bits1
Unexecuted instantiation: cbs.c:skip_bits1
Unexecuted instantiation: cbs_apv.c:skip_bits1
Unexecuted instantiation: cbs_av1.c:skip_bits1
Unexecuted instantiation: cbs_h264.c:skip_bits1
Unexecuted instantiation: cbs_h2645.c:skip_bits1
Unexecuted instantiation: cbs_h265.c:skip_bits1
Unexecuted instantiation: cbs_h266.c:skip_bits1
Unexecuted instantiation: cbs_lcevc.c:skip_bits1
Unexecuted instantiation: cbs_mpeg2.c:skip_bits1
Unexecuted instantiation: cbs_sei.c:skip_bits1
Unexecuted instantiation: cbs_vp8.c:skip_bits1
Unexecuted instantiation: cbs_vp9.c:skip_bits1
Unexecuted instantiation: dovi_rpudec.c:skip_bits1
Unexecuted instantiation: evc_parse.c:skip_bits1
Unexecuted instantiation: evc_ps.c:skip_bits1
Unexecuted instantiation: h263dec.c:skip_bits1
h2645_parse.c:skip_bits1
Line
Count
Source
417
24.2M
{
418
24.2M
    skip_bits(s, 1);
419
24.2M
}
Unexecuted instantiation: h264_parse.c:skip_bits1
Unexecuted instantiation: h264_ps.c:skip_bits1
Unexecuted instantiation: h264data.c:skip_bits1
Unexecuted instantiation: h265_profile_level.c:skip_bits1
ps.c:skip_bits1
Line
Count
Source
417
8.64G
{
418
8.64G
    skip_bits(s, 1);
419
8.64G
}
intelh263dec.c:skip_bits1
Line
Count
Source
417
145k
{
418
145k
    skip_bits(s, 1);
419
145k
}
Unexecuted instantiation: intrax8.c:skip_bits1
ituh263dec.c:skip_bits1
Line
Count
Source
417
1.56M
{
418
1.56M
    skip_bits(s, 1);
419
1.56M
}
Unexecuted instantiation: mlp_parse.c:skip_bits1
Unexecuted instantiation: mpeg4audio.c:skip_bits1
mpeg4videodec.c:skip_bits1
Line
Count
Source
417
962k
{
418
962k
    skip_bits(s, 1);
419
962k
}
Unexecuted instantiation: mpeg_er.c:skip_bits1
Unexecuted instantiation: mpegvideo_dec.c:skip_bits1
Unexecuted instantiation: msmpeg4dec.c:skip_bits1
Unexecuted instantiation: rv10.c:skip_bits1
ac3_parser.c:skip_bits1
Line
Count
Source
417
9.95M
{
418
9.95M
    skip_bits(s, 1);
419
9.95M
}
adts_header.c:skip_bits1
Line
Count
Source
417
23.1M
{
418
23.1M
    skip_bits(s, 1);
419
23.1M
}
av1_parse.c:skip_bits1
Line
Count
Source
417
1.25M
{
418
1.25M
    skip_bits(s, 1);
419
1.25M
}
flvdec.c:skip_bits1
Line
Count
Source
417
77.7k
{
418
77.7k
    skip_bits(s, 1);
419
77.7k
}
Unexecuted instantiation: h2645_vui.c:skip_bits1
Unexecuted instantiation: vc1_parser.c:skip_bits1
Unexecuted instantiation: vorbis_parser.c:skip_bits1
Unexecuted instantiation: vp9_parser.c:skip_bits1
Unexecuted instantiation: vvc_parser.c:skip_bits1
Unexecuted instantiation: aac_ac3_parser.c:skip_bits1
Unexecuted instantiation: av1_parser.c:skip_bits1
Unexecuted instantiation: avs2_parser.c:skip_bits1
Unexecuted instantiation: avs3_parser.c:skip_bits1
cavs_parser.c:skip_bits1
Line
Count
Source
417
58.3k
{
418
58.3k
    skip_bits(s, 1);
419
58.3k
}
Unexecuted instantiation: dca_parser.c:skip_bits1
Unexecuted instantiation: dolby_e_parser.c:skip_bits1
evc_parser.c:skip_bits1
Line
Count
Source
417
344k
{
418
344k
    skip_bits(s, 1);
419
344k
}
Unexecuted instantiation: ffv1_parser.c:skip_bits1
Unexecuted instantiation: flac_parser.c:skip_bits1
Unexecuted instantiation: ftr_parser.c:skip_bits1
Unexecuted instantiation: h264_parser.c:skip_bits1
Unexecuted instantiation: h264_sei.c:skip_bits1
Unexecuted instantiation: h264idct.c:skip_bits1
parser.c:skip_bits1
Line
Count
Source
417
562k
{
418
562k
    skip_bits(s, 1);
419
562k
}
Unexecuted instantiation: sei.c:skip_bits1
jpegxl_parser.c:skip_bits1
Line
Count
Source
417
3.76M
{
418
3.76M
    skip_bits(s, 1);
419
3.76M
}
Unexecuted instantiation: jpegxs_parser.c:skip_bits1
lcevc_parser.c:skip_bits1
Line
Count
Source
417
4
{
418
4
    skip_bits(s, 1);
419
4
}
Unexecuted instantiation: mlp_parser.c:skip_bits1
Unexecuted instantiation: mpeg4video_parser.c:skip_bits1
vc1.c:skip_bits1
Line
Count
Source
417
172k
{
418
172k
    skip_bits(s, 1);
419
172k
}
Unexecuted instantiation: vc1data.c:skip_bits1
Unexecuted instantiation: dca.c:skip_bits1
dca_exss.c:skip_bits1
Line
Count
Source
417
85.1k
{
418
85.1k
    skip_bits(s, 1);
419
85.1k
}
dolby_e_parse.c:skip_bits1
Line
Count
Source
417
812k
{
418
812k
    skip_bits(s, 1);
419
812k
}
Unexecuted instantiation: ffv1.c:skip_bits1
Unexecuted instantiation: ffv1_parse.c:skip_bits1
Unexecuted instantiation: flac.c:skip_bits1
h2645_sei.c:skip_bits1
Line
Count
Source
417
229k
{
418
229k
    skip_bits(s, 1);
419
229k
}
Unexecuted instantiation: parse.c:skip_bits1
Unexecuted instantiation: jpegxl_parse.c:skip_bits1
Unexecuted instantiation: aom_film_grain.c:skip_bits1
Unexecuted instantiation: dynamic_hdr_vivid.c:skip_bits1
Unexecuted instantiation: hdr_dynamic_metadata.c:skip_bits1
av1dec.c:skip_bits1
Line
Count
Source
417
3.17M
{
418
3.17M
    skip_bits(s, 1);
419
3.17M
}
Unexecuted instantiation: bit.c:skip_bits1
Unexecuted instantiation: dtsdec.c:skip_bits1
Unexecuted instantiation: dtshddec.c:skip_bits1
Unexecuted instantiation: h264dec.c:skip_bits1
Unexecuted instantiation: hls_sample_encryption.c:skip_bits1
Unexecuted instantiation: isom.c:skip_bits1
Unexecuted instantiation: matroskadec.c:skip_bits1
Unexecuted instantiation: mov.c:skip_bits1
Unexecuted instantiation: mpc8.c:skip_bits1
Unexecuted instantiation: mpegts.c:skip_bits1
Unexecuted instantiation: oggparsetheora.c:skip_bits1
Unexecuted instantiation: shortendec.c:skip_bits1
Unexecuted instantiation: swfdec.c:skip_bits1
Unexecuted instantiation: takdec.c:skip_bits1
Unexecuted instantiation: iamf_parse.c:skip_bits1
Unexecuted instantiation: dirac.c:skip_bits1
atrac9dec.c:skip_bits1
Line
Count
Source
417
2.60M
{
418
2.60M
    skip_bits(s, 1);
419
2.60M
}
Unexecuted instantiation: enc.c:skip_bits1
Unexecuted instantiation: enc_psy.c:skip_bits1
Unexecuted instantiation: pvq.c:skip_bits1
Unexecuted instantiation: rc.c:skip_bits1
Unexecuted instantiation: celt.c:skip_bits1
Unexecuted instantiation: gsmdec.c:skip_bits1
Unexecuted instantiation: msgsmdec.c:skip_bits1
Unexecuted instantiation: imc.c:skip_bits1
Unexecuted instantiation: adpcm.c:skip_bits1
Unexecuted instantiation: wmaenc.c:skip_bits1
Unexecuted instantiation: wma.c:skip_bits1
Unexecuted instantiation: cfhd.c:skip_bits1
Unexecuted instantiation: wavarc.c:skip_bits1
Unexecuted instantiation: escape130.c:skip_bits1
Unexecuted instantiation: asvdec.c:skip_bits1
Unexecuted instantiation: diracdec.c:skip_bits1
Unexecuted instantiation: dirac_arith.c:skip_bits1
Unexecuted instantiation: wmadec.c:skip_bits1
Unexecuted instantiation: aacenc.c:skip_bits1
imm4.c:skip_bits1
Line
Count
Source
417
34.5k
{
418
34.5k
    skip_bits(s, 1);
419
34.5k
}
Unexecuted instantiation: exr.c:skip_bits1
aacdec.c:skip_bits1
Line
Count
Source
417
305k
{
418
305k
    skip_bits(s, 1);
419
305k
}
Unexecuted instantiation: aacdec_fixed.c:skip_bits1
Unexecuted instantiation: aacdec_float.c:skip_bits1
Unexecuted instantiation: aacdec_tab.c:skip_bits1
Unexecuted instantiation: aacdec_usac.c:skip_bits1
Unexecuted instantiation: aacdec_usac_mps212.c:skip_bits1
aacps_common.c:skip_bits1
Line
Count
Source
417
601k
{
418
601k
    skip_bits(s, 1);
419
601k
}
Unexecuted instantiation: aacsbr.c:skip_bits1
Unexecuted instantiation: aacsbr_fixed.c:skip_bits1
Unexecuted instantiation: aacdec_ac.c:skip_bits1
Unexecuted instantiation: aacdec_lpd.c:skip_bits1
Unexecuted instantiation: aacps_fixed.c:skip_bits1
Unexecuted instantiation: aacps_float.c:skip_bits1
Unexecuted instantiation: mjpegdec.c:skip_bits1
Unexecuted instantiation: mjpegdec_common.c:skip_bits1
Unexecuted instantiation: jpeglsdec.c:skip_bits1
Unexecuted instantiation: jvdec.c:skip_bits1
Unexecuted instantiation: rdt.c:skip_bits1
Unexecuted instantiation: rtpdec_h261.c:skip_bits1
Unexecuted instantiation: rtpdec_h263_rfc2190.c:skip_bits1
Unexecuted instantiation: rtpdec_latm.c:skip_bits1
Unexecuted instantiation: rtpdec_mpeg4.c:skip_bits1
Unexecuted instantiation: rtpdec_qt.c:skip_bits1
Unexecuted instantiation: h264_cavlc.c:skip_bits1
Unexecuted instantiation: h264_direct.c:skip_bits1
Unexecuted instantiation: h264_mb.c:skip_bits1
Unexecuted instantiation: h264_picture.c:skip_bits1
h264_refs.c:skip_bits1
Line
Count
Source
417
1.11M
{
418
1.11M
    skip_bits(s, 1);
419
1.11M
}
Unexecuted instantiation: h264_slice.c:skip_bits1
Unexecuted instantiation: h264_cabac.c:skip_bits1
Unexecuted instantiation: h264_loopfilter.c:skip_bits1
alsdec.c:skip_bits1
Line
Count
Source
417
2.10k
{
418
2.10k
    skip_bits(s, 1);
419
2.10k
}
Unexecuted instantiation: bgmc.c:skip_bits1
Unexecuted instantiation: mlz.c:skip_bits1
Unexecuted instantiation: bonk.c:skip_bits1
Unexecuted instantiation: mxpegdec.c:skip_bits1
rv30.c:skip_bits1
Line
Count
Source
417
510k
{
418
510k
    skip_bits(s, 1);
419
510k
}
Unexecuted instantiation: rv34.c:skip_bits1
Unexecuted instantiation: indeo3.c:skip_bits1
Unexecuted instantiation: eamad.c:skip_bits1
Unexecuted instantiation: mpeg12.c:skip_bits1
Unexecuted instantiation: g726.c:skip_bits1
Unexecuted instantiation: vc1dec.c:skip_bits1
Unexecuted instantiation: vc1_block.c:skip_bits1
Unexecuted instantiation: vc1_loopfilter.c:skip_bits1
Unexecuted instantiation: vc1_mc.c:skip_bits1
Unexecuted instantiation: vc1_pred.c:skip_bits1
Unexecuted instantiation: mpegaudiodec_float.c:skip_bits1
Unexecuted instantiation: huffyuvdec.c:skip_bits1
Unexecuted instantiation: speexdec.c:skip_bits1
Unexecuted instantiation: atrac3plusdec.c:skip_bits1
Unexecuted instantiation: atrac3plusdsp.c:skip_bits1
Unexecuted instantiation: atrac3plus.c:skip_bits1
Unexecuted instantiation: mss4.c:skip_bits1
Unexecuted instantiation: tiff.c:skip_bits1
Unexecuted instantiation: faxcompr.c:skip_bits1
Unexecuted instantiation: ac3dec_float.c:skip_bits1
Unexecuted instantiation: on2avc.c:skip_bits1
smacker.c:skip_bits1
Line
Count
Source
417
352k
{
418
352k
    skip_bits(s, 1);
419
352k
}
Unexecuted instantiation: dvbsubdec.c:skip_bits1
Unexecuted instantiation: mss1.c:skip_bits1
Unexecuted instantiation: mss12.c:skip_bits1
Unexecuted instantiation: mss2.c:skip_bits1
Unexecuted instantiation: mdec.c:skip_bits1
osq.c:skip_bits1
Line
Count
Source
417
30.5k
{
418
30.5k
    skip_bits(s, 1);
419
30.5k
}
Unexecuted instantiation: vp6.c:skip_bits1
Unexecuted instantiation: vp56.c:skip_bits1
Unexecuted instantiation: vp56data.c:skip_bits1
Unexecuted instantiation: loco.c:skip_bits1
Unexecuted instantiation: vp5.c:skip_bits1
Unexecuted instantiation: ra144dec.c:skip_bits1
Unexecuted instantiation: indeo5.c:skip_bits1
Unexecuted instantiation: ivi.c:skip_bits1
Unexecuted instantiation: ivi_dsp.c:skip_bits1
Unexecuted instantiation: apac.c:skip_bits1
Unexecuted instantiation: clearvideo.c:skip_bits1
Unexecuted instantiation: dxtory.c:skip_bits1
Unexecuted instantiation: mpegaudiodec_fixed.c:skip_bits1
Unexecuted instantiation: ralf.c:skip_bits1
Unexecuted instantiation: pixlet.c:skip_bits1
Unexecuted instantiation: wnv1.c:skip_bits1
Unexecuted instantiation: qoadec.c:skip_bits1
Unexecuted instantiation: vima.c:skip_bits1
Unexecuted instantiation: leaddec.c:skip_bits1
Unexecuted instantiation: eatqi.c:skip_bits1
Unexecuted instantiation: lagarith.c:skip_bits1
Unexecuted instantiation: lagarithrac.c:skip_bits1
Unexecuted instantiation: dss_sp.c:skip_bits1
Unexecuted instantiation: siren.c:skip_bits1
cavsdec.c:skip_bits1
Line
Count
Source
417
133k
{
418
133k
    skip_bits(s, 1);
419
133k
}
Unexecuted instantiation: cavs.c:skip_bits1
Unexecuted instantiation: cavsdata.c:skip_bits1
Unexecuted instantiation: hcom.c:skip_bits1
Unexecuted instantiation: vp3.c:skip_bits1
Unexecuted instantiation: webp.c:skip_bits1
Unexecuted instantiation: eatgv.c:skip_bits1
Unexecuted instantiation: eatgq.c:skip_bits1
Unexecuted instantiation: sga.c:skip_bits1
Unexecuted instantiation: binkaudio.c:skip_bits1
mpeg12dec.c:skip_bits1
Line
Count
Source
417
19.9k
{
418
19.9k
    skip_bits(s, 1);
419
19.9k
}
Unexecuted instantiation: indeo2.c:skip_bits1
Unexecuted instantiation: 4xm.c:skip_bits1
Unexecuted instantiation: wmalosslessdec.c:skip_bits1
Unexecuted instantiation: ilbcdec.c:skip_bits1
Unexecuted instantiation: hevcdec.c:skip_bits1
Unexecuted instantiation: mvs.c:skip_bits1
Unexecuted instantiation: pred.c:skip_bits1
Unexecuted instantiation: refs.c:skip_bits1
Unexecuted instantiation: cabac.c:skip_bits1
Unexecuted instantiation: dsp.c:skip_bits1
Unexecuted instantiation: filter.c:skip_bits1
Unexecuted instantiation: tscc2.c:skip_bits1
Unexecuted instantiation: hqx.c:skip_bits1
Unexecuted instantiation: mobiclip.c:skip_bits1
Unexecuted instantiation: wmaprodec.c:skip_bits1
Unexecuted instantiation: g729dec.c:skip_bits1
Unexecuted instantiation: sipr.c:skip_bits1
Unexecuted instantiation: g722dec.c:skip_bits1
Unexecuted instantiation: nellymoserdec.c:skip_bits1
Unexecuted instantiation: dcaenc.c:skip_bits1
Unexecuted instantiation: dcaadpcm.c:skip_bits1
Unexecuted instantiation: dcadata.c:skip_bits1
Unexecuted instantiation: interplayvideo.c:skip_bits1
Unexecuted instantiation: dec.c:skip_bits1
Unexecuted instantiation: dec_celt.c:skip_bits1
Unexecuted instantiation: silk.c:skip_bits1
Unexecuted instantiation: mjpegbdec.c:skip_bits1
Unexecuted instantiation: bink.c:skip_bits1
Unexecuted instantiation: dvdsubdec.c:skip_bits1
Unexecuted instantiation: rtjpeg.c:skip_bits1
Unexecuted instantiation: truespeech.c:skip_bits1
Unexecuted instantiation: metasound.c:skip_bits1
Unexecuted instantiation: escape124.c:skip_bits1
Unexecuted instantiation: cllc.c:skip_bits1
Unexecuted instantiation: dvdec.c:skip_bits1
Unexecuted instantiation: tta.c:skip_bits1
Unexecuted instantiation: fraps.c:skip_bits1
Unexecuted instantiation: motionpixels.c:skip_bits1
Unexecuted instantiation: vp9.c:skip_bits1
Unexecuted instantiation: vp9block.c:skip_bits1
Unexecuted instantiation: vp9data.c:skip_bits1
Unexecuted instantiation: vp9lpf.c:skip_bits1
Unexecuted instantiation: vp9mvs.c:skip_bits1
Unexecuted instantiation: vp9prob.c:skip_bits1
Unexecuted instantiation: vp9recon.c:skip_bits1
Unexecuted instantiation: ffv1dec.c:skip_bits1
Unexecuted instantiation: intra_utils.c:skip_bits1
Unexecuted instantiation: thread.c:skip_bits1
Unexecuted instantiation: ctu.c:skip_bits1
Unexecuted instantiation: inter.c:skip_bits1
Unexecuted instantiation: intra.c:skip_bits1
Unexecuted instantiation: wmavoice.c:skip_bits1
Unexecuted instantiation: rawdec.c:skip_bits1
svq1dec.c:skip_bits1
Line
Count
Source
417
122k
{
418
122k
    skip_bits(s, 1);
419
122k
}
Unexecuted instantiation: mpc7.c:skip_bits1
Unexecuted instantiation: truemotion2rt.c:skip_bits1
Unexecuted instantiation: adxdec.c:skip_bits1
rv40.c:skip_bits1
Line
Count
Source
417
158k
{
418
158k
    skip_bits(s, 1);
419
158k
}
Unexecuted instantiation: xsubdec.c:skip_bits1
Unexecuted instantiation: notchlc.c:skip_bits1
Unexecuted instantiation: aic.c:skip_bits1
Unexecuted instantiation: vqcdec.c:skip_bits1
Unexecuted instantiation: dolby_e.c:skip_bits1
Unexecuted instantiation: proresdec.c:skip_bits1
Unexecuted instantiation: evrcdec.c:skip_bits1
Unexecuted instantiation: dnxhddec.c:skip_bits1
Unexecuted instantiation: dcadec.c:skip_bits1
Unexecuted instantiation: dca_core.c:skip_bits1
Unexecuted instantiation: dca_lbr.c:skip_bits1
Unexecuted instantiation: dca_xll.c:skip_bits1
Unexecuted instantiation: mlpenc.c:skip_bits1
mlpdec.c:skip_bits1
Line
Count
Source
417
202k
{
418
202k
    skip_bits(s, 1);
419
202k
}
Unexecuted instantiation: atrac3.c:skip_bits1
Unexecuted instantiation: vorbisdec.c:skip_bits1
Unexecuted instantiation: flashsv.c:skip_bits1
Unexecuted instantiation: wavpack.c:skip_bits1
Unexecuted instantiation: speedhqdec.c:skip_bits1
g723_1dec.c:skip_bits1
Line
Count
Source
417
805k
{
418
805k
    skip_bits(s, 1);
419
805k
}
Unexecuted instantiation: g2meet.c:skip_bits1
Unexecuted instantiation: shorten.c:skip_bits1
Unexecuted instantiation: indeo4.c:skip_bits1
Unexecuted instantiation: sp5xdec.c:skip_bits1
Unexecuted instantiation: atrac1.c:skip_bits1
Unexecuted instantiation: apv_decode.c:skip_bits1
Unexecuted instantiation: apv_entropy.c:skip_bits1
Unexecuted instantiation: avs.c:skip_bits1
rv60dec.c:skip_bits1
Line
Count
Source
417
243k
{
418
243k
    skip_bits(s, 1);
419
243k
}
Unexecuted instantiation: alac.c:skip_bits1
Unexecuted instantiation: tiertexseqv.c:skip_bits1
Unexecuted instantiation: ffv1enc.c:skip_bits1
Unexecuted instantiation: hcadec.c:skip_bits1
Unexecuted instantiation: pcx.c:skip_bits1
Unexecuted instantiation: qcelpdec.c:skip_bits1
Unexecuted instantiation: flacdec.c:skip_bits1
Unexecuted instantiation: ac3dec_fixed.c:skip_bits1
Unexecuted instantiation: midivid.c:skip_bits1
Unexecuted instantiation: mimic.c:skip_bits1
Unexecuted instantiation: fic.c:skip_bits1
Unexecuted instantiation: qdmc.c:skip_bits1
Unexecuted instantiation: ra288.c:skip_bits1
Unexecuted instantiation: interplayacm.c:skip_bits1
Unexecuted instantiation: ylc.c:skip_bits1
Unexecuted instantiation: ftr.c:skip_bits1
Unexecuted instantiation: agm.c:skip_bits1
Unexecuted instantiation: xan.c:skip_bits1
svq3.c:skip_bits1
Line
Count
Source
417
392k
{
418
392k
    skip_bits(s, 1);
419
392k
}
Unexecuted instantiation: cri.c:skip_bits1
Unexecuted instantiation: qdm2.c:skip_bits1
Unexecuted instantiation: cljrdec.c:skip_bits1
Unexecuted instantiation: g728dec.c:skip_bits1
Unexecuted instantiation: cook.c:skip_bits1
Unexecuted instantiation: twinvqdec.c:skip_bits1
Unexecuted instantiation: hq_hqa.c:skip_bits1
Unexecuted instantiation: cdxl.c:skip_bits1
Unexecuted instantiation: vble.c:skip_bits1
Unexecuted instantiation: mv30.c:skip_bits1
Unexecuted instantiation: apedec.c:skip_bits1
h261dec.c:skip_bits1
Line
Count
Source
417
1.96M
{
418
1.96M
    skip_bits(s, 1);
419
1.96M
}
dstdec.c:skip_bits1
Line
Count
Source
417
7.69k
{
418
7.69k
    skip_bits(s, 1);
419
7.69k
}
Unexecuted instantiation: jpeglsenc.c:skip_bits1
Unexecuted instantiation: truemotion2.c:skip_bits1
420
421
/**
422
 * Read 0-32 bits.
423
 */
424
static inline unsigned int get_bits_long(GetBitContext *s, int n)
425
5.29G
{
426
5.29G
    av_assert2(n>=0 && n<=32);
427
5.29G
    if (!n) {
428
1.86G
        return 0;
429
3.42G
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
3.42G
               && n <= MIN_CACHE_BITS) {
431
2.68G
        return get_bits(s, n);
432
2.68G
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
744M
#endif
450
744M
    }
451
5.29G
}
Unexecuted instantiation: mpegvideo_motion.c:get_bits_long
Unexecuted instantiation: wmv2dec.c:get_bits_long
Unexecuted instantiation: aac_adtstoasc.c:get_bits_long
Unexecuted instantiation: dovi_rpu.c:get_bits_long
Unexecuted instantiation: dovi_split.c:get_bits_long
Unexecuted instantiation: dts2pts.c:get_bits_long
Unexecuted instantiation: eac3_core.c:get_bits_long
Unexecuted instantiation: evc_frame_merge.c:get_bits_long
Unexecuted instantiation: extract_extradata.c:get_bits_long
Unexecuted instantiation: h264_metadata.c:get_bits_long
Unexecuted instantiation: h264_redundant_pps.c:get_bits_long
Unexecuted instantiation: h265_metadata.c:get_bits_long
Unexecuted instantiation: h266_metadata.c:get_bits_long
Unexecuted instantiation: lcevc_merge.c:get_bits_long
Unexecuted instantiation: lcevc_metadata.c:get_bits_long
Unexecuted instantiation: remove_extradata.c:get_bits_long
truehd_core.c:get_bits_long
Line
Count
Source
425
6.76k
{
426
6.76k
    av_assert2(n>=0 && n<=32);
427
6.76k
    if (!n) {
428
0
        return 0;
429
6.76k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
6.76k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
6.76k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
6.76k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
6.76k
        return ret | get_bits(s, n - 16);
448
6.76k
#endif
449
6.76k
#endif
450
6.76k
    }
451
6.76k
}
Unexecuted instantiation: vp9_raw_reorder.c:get_bits_long
Unexecuted instantiation: vp9_superframe.c:get_bits_long
Unexecuted instantiation: vp9_superframe_split.c:get_bits_long
cbs.c:get_bits_long
Line
Count
Source
425
1.80G
{
426
1.80G
    av_assert2(n>=0 && n<=32);
427
1.80G
    if (!n) {
428
0
        return 0;
429
1.80G
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
1.80G
               && n <= MIN_CACHE_BITS) {
431
1.80G
        return get_bits(s, n);
432
1.80G
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
3.40M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
3.40M
        return ret | get_bits(s, n - 16);
448
3.40M
#endif
449
3.40M
#endif
450
3.40M
    }
451
1.80G
}
Unexecuted instantiation: cbs_apv.c:get_bits_long
cbs_av1.c:get_bits_long
Line
Count
Source
425
174k
{
426
174k
    av_assert2(n>=0 && n<=32);
427
174k
    if (!n) {
428
88.7k
        return 0;
429
88.7k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
85.9k
               && n <= MIN_CACHE_BITS) {
431
75.1k
        return get_bits(s, n);
432
75.1k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
10.8k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
10.8k
        return ret | get_bits(s, n - 16);
448
10.8k
#endif
449
10.8k
#endif
450
10.8k
    }
451
174k
}
Unexecuted instantiation: cbs_h264.c:get_bits_long
cbs_h2645.c:get_bits_long
Line
Count
Source
425
311M
{
426
311M
    av_assert2(n>=0 && n<=32);
427
311M
    if (!n) {
428
0
        return 0;
429
311M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
311M
               && n <= MIN_CACHE_BITS) {
431
159M
        return get_bits(s, n);
432
159M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
151M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
151M
        return ret | get_bits(s, n - 16);
448
151M
#endif
449
151M
#endif
450
151M
    }
451
311M
}
Unexecuted instantiation: cbs_h265.c:get_bits_long
Unexecuted instantiation: cbs_h266.c:get_bits_long
Unexecuted instantiation: cbs_lcevc.c:get_bits_long
Unexecuted instantiation: cbs_mpeg2.c:get_bits_long
Unexecuted instantiation: cbs_sei.c:get_bits_long
Unexecuted instantiation: cbs_vp8.c:get_bits_long
Unexecuted instantiation: cbs_vp9.c:get_bits_long
dovi_rpudec.c:get_bits_long
Line
Count
Source
425
127k
{
426
127k
    av_assert2(n>=0 && n<=32);
427
127k
    if (!n) {
428
0
        return 0;
429
127k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
127k
               && n <= MIN_CACHE_BITS) {
431
45.1k
        return get_bits(s, n);
432
82.5k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
82.5k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
82.5k
        return ret | get_bits(s, n - 16);
448
82.5k
#endif
449
82.5k
#endif
450
82.5k
    }
451
127k
}
evc_parse.c:get_bits_long
Line
Count
Source
425
700k
{
426
700k
    av_assert2(n>=0 && n<=32);
427
700k
    if (!n) {
428
0
        return 0;
429
700k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
700k
               && n <= MIN_CACHE_BITS) {
431
302k
        return get_bits(s, n);
432
398k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
398k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
398k
        return ret | get_bits(s, n - 16);
448
398k
#endif
449
398k
#endif
450
398k
    }
451
700k
}
evc_ps.c:get_bits_long
Line
Count
Source
425
5.08M
{
426
5.08M
    av_assert2(n>=0 && n<=32);
427
5.08M
    if (!n) {
428
0
        return 0;
429
5.08M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
5.08M
               && n <= MIN_CACHE_BITS) {
431
2.29M
        return get_bits(s, n);
432
2.78M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
2.78M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
2.78M
        return ret | get_bits(s, n - 16);
448
2.78M
#endif
449
2.78M
#endif
450
2.78M
    }
451
5.08M
}
Unexecuted instantiation: h263dec.c:get_bits_long
Unexecuted instantiation: h2645_parse.c:get_bits_long
Unexecuted instantiation: h264_parse.c:get_bits_long
h264_ps.c:get_bits_long
Line
Count
Source
425
25.6M
{
426
25.6M
    av_assert2(n>=0 && n<=32);
427
25.6M
    if (!n) {
428
0
        return 0;
429
25.6M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
25.6M
               && n <= MIN_CACHE_BITS) {
431
11.7M
        return get_bits(s, n);
432
13.8M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
13.8M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
13.8M
        return ret | get_bits(s, n - 16);
448
13.8M
#endif
449
13.8M
#endif
450
13.8M
    }
451
25.6M
}
Unexecuted instantiation: h264data.c:get_bits_long
Unexecuted instantiation: h265_profile_level.c:get_bits_long
ps.c:get_bits_long
Line
Count
Source
425
567M
{
426
567M
    av_assert2(n>=0 && n<=32);
427
567M
    if (!n) {
428
0
        return 0;
429
567M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
567M
               && n <= MIN_CACHE_BITS) {
431
265M
        return get_bits(s, n);
432
302M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
302M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
302M
        return ret | get_bits(s, n - 16);
448
302M
#endif
449
302M
#endif
450
302M
    }
451
567M
}
Unexecuted instantiation: intelh263dec.c:get_bits_long
Unexecuted instantiation: intrax8.c:get_bits_long
ituh263dec.c:get_bits_long
Line
Count
Source
425
3.22M
{
426
3.22M
    av_assert2(n>=0 && n<=32);
427
3.22M
    if (!n) {
428
0
        return 0;
429
3.22M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
3.22M
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
3.22M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
3.22M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
3.22M
        return ret | get_bits(s, n - 16);
448
3.22M
#endif
449
3.22M
#endif
450
3.22M
    }
451
3.22M
}
Unexecuted instantiation: mlp_parse.c:get_bits_long
mpeg4audio.c:get_bits_long
Line
Count
Source
425
9.21k
{
426
9.21k
    av_assert2(n>=0 && n<=32);
427
9.21k
    if (!n) {
428
0
        return 0;
429
9.21k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
9.21k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
9.21k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
9.21k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
9.21k
        return ret | get_bits(s, n - 16);
448
9.21k
#endif
449
9.21k
#endif
450
9.21k
    }
451
9.21k
}
mpeg4videodec.c:get_bits_long
Line
Count
Source
425
229k
{
426
229k
    av_assert2(n>=0 && n<=32);
427
229k
    if (!n) {
428
0
        return 0;
429
229k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
229k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
229k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
229k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
229k
        return ret | get_bits(s, n - 16);
448
229k
#endif
449
229k
#endif
450
229k
    }
451
229k
}
Unexecuted instantiation: mpeg_er.c:get_bits_long
Unexecuted instantiation: mpegvideo_dec.c:get_bits_long
msmpeg4dec.c:get_bits_long
Line
Count
Source
425
130k
{
426
130k
    av_assert2(n>=0 && n<=32);
427
130k
    if (!n) {
428
0
        return 0;
429
130k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
130k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
130k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
130k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
130k
        return ret | get_bits(s, n - 16);
448
130k
#endif
449
130k
#endif
450
130k
    }
451
130k
}
Unexecuted instantiation: rv10.c:get_bits_long
ac3_parser.c:get_bits_long
Line
Count
Source
425
19.2M
{
426
19.2M
    av_assert2(n>=0 && n<=32);
427
19.2M
    if (!n) {
428
0
        return 0;
429
19.2M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
19.2M
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
19.2M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
19.2M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
19.2M
        return ret | get_bits(s, n - 16);
448
19.2M
#endif
449
19.2M
#endif
450
19.2M
    }
451
19.2M
}
Unexecuted instantiation: adts_header.c:get_bits_long
Unexecuted instantiation: av1_parse.c:get_bits_long
Unexecuted instantiation: flvdec.c:get_bits_long
Unexecuted instantiation: h2645_vui.c:get_bits_long
Unexecuted instantiation: vc1_parser.c:get_bits_long
Unexecuted instantiation: vorbis_parser.c:get_bits_long
Unexecuted instantiation: vp9_parser.c:get_bits_long
Unexecuted instantiation: vvc_parser.c:get_bits_long
Unexecuted instantiation: aac_ac3_parser.c:get_bits_long
Unexecuted instantiation: av1_parser.c:get_bits_long
Unexecuted instantiation: avs2_parser.c:get_bits_long
Unexecuted instantiation: avs3_parser.c:get_bits_long
Unexecuted instantiation: cavs_parser.c:get_bits_long
dca_parser.c:get_bits_long
Line
Count
Source
425
126k
{
426
126k
    av_assert2(n>=0 && n<=32);
427
126k
    if (!n) {
428
0
        return 0;
429
126k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
126k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
126k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
126k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
126k
        return ret | get_bits(s, n - 16);
448
126k
#endif
449
126k
#endif
450
126k
    }
451
126k
}
Unexecuted instantiation: dolby_e_parser.c:get_bits_long
Unexecuted instantiation: evc_parser.c:get_bits_long
Unexecuted instantiation: ffv1_parser.c:get_bits_long
Unexecuted instantiation: flac_parser.c:get_bits_long
Unexecuted instantiation: ftr_parser.c:get_bits_long
h264_parser.c:get_bits_long
Line
Count
Source
425
44.0M
{
426
44.0M
    av_assert2(n>=0 && n<=32);
427
44.0M
    if (!n) {
428
0
        return 0;
429
44.0M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
44.0M
               && n <= MIN_CACHE_BITS) {
431
19.1M
        return get_bits(s, n);
432
24.9M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
24.9M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
24.9M
        return ret | get_bits(s, n - 16);
448
24.9M
#endif
449
24.9M
#endif
450
24.9M
    }
451
44.0M
}
h264_sei.c:get_bits_long
Line
Count
Source
425
2.04M
{
426
2.04M
    av_assert2(n>=0 && n<=32);
427
2.04M
    if (!n) {
428
0
        return 0;
429
2.04M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
2.04M
               && n <= MIN_CACHE_BITS) {
431
1.17M
        return get_bits(s, n);
432
1.17M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
868k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
868k
        return ret | get_bits(s, n - 16);
448
868k
#endif
449
868k
#endif
450
868k
    }
451
2.04M
}
Unexecuted instantiation: h264idct.c:get_bits_long
Unexecuted instantiation: parser.c:get_bits_long
sei.c:get_bits_long
Line
Count
Source
425
3.06M
{
426
3.06M
    av_assert2(n>=0 && n<=32);
427
3.06M
    if (!n) {
428
687k
        return 0;
429
2.37M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
2.37M
               && n <= MIN_CACHE_BITS) {
431
1.39M
        return get_bits(s, n);
432
1.39M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
982k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
982k
        return ret | get_bits(s, n - 16);
448
982k
#endif
449
982k
#endif
450
982k
    }
451
3.06M
}
jpegxl_parser.c:get_bits_long
Line
Count
Source
425
127M
{
426
127M
    av_assert2(n>=0 && n<=32);
427
127M
    if (!n) {
428
28.2k
        return 0;
429
127M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
127M
               && n <= MIN_CACHE_BITS) {
431
95.8M
        return get_bits(s, n);
432
95.8M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
31.5M
#ifdef BITSTREAM_READER_LE
443
31.5M
        unsigned ret = get_bits(s, 16);
444
31.5M
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
31.5M
#endif
450
31.5M
    }
451
127M
}
Unexecuted instantiation: jpegxs_parser.c:get_bits_long
Unexecuted instantiation: lcevc_parser.c:get_bits_long
Unexecuted instantiation: mlp_parser.c:get_bits_long
Unexecuted instantiation: mpeg4video_parser.c:get_bits_long
vc1.c:get_bits_long
Line
Count
Source
425
596k
{
426
596k
    av_assert2(n>=0 && n<=32);
427
596k
    if (!n) {
428
0
        return 0;
429
596k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
596k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
596k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
596k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
596k
        return ret | get_bits(s, n - 16);
448
596k
#endif
449
596k
#endif
450
596k
    }
451
596k
}
Unexecuted instantiation: vc1data.c:get_bits_long
dca.c:get_bits_long
Line
Count
Source
425
498k
{
426
498k
    av_assert2(n>=0 && n<=32);
427
498k
    if (!n) {
428
0
        return 0;
429
498k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
498k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
498k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
498k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
498k
        return ret | get_bits(s, n - 16);
448
498k
#endif
449
498k
#endif
450
498k
    }
451
498k
}
dca_exss.c:get_bits_long
Line
Count
Source
425
5.44M
{
426
5.44M
    av_assert2(n>=0 && n<=32);
427
5.44M
    if (!n) {
428
0
        return 0;
429
5.44M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
5.44M
               && n <= MIN_CACHE_BITS) {
431
4.99M
        return get_bits(s, n);
432
4.99M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
447k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
447k
        return ret | get_bits(s, n - 16);
448
447k
#endif
449
447k
#endif
450
447k
    }
451
5.44M
}
Unexecuted instantiation: dolby_e_parse.c:get_bits_long
Unexecuted instantiation: ffv1.c:get_bits_long
Unexecuted instantiation: ffv1_parse.c:get_bits_long
flac.c:get_bits_long
Line
Count
Source
425
340
{
426
340
    av_assert2(n>=0 && n<=32);
427
340
    if (!n) {
428
0
        return 0;
429
340
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
340
               && n <= MIN_CACHE_BITS) {
431
170
        return get_bits(s, n);
432
170
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
170
        unsigned ret = get_bits(s, 16) << (n - 16);
447
170
        return ret | get_bits(s, n - 16);
448
170
#endif
449
170
#endif
450
170
    }
451
340
}
h2645_sei.c:get_bits_long
Line
Count
Source
425
116M
{
426
116M
    av_assert2(n>=0 && n<=32);
427
116M
    if (!n) {
428
0
        return 0;
429
116M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
116M
               && n <= MIN_CACHE_BITS) {
431
54.7M
        return get_bits(s, n);
432
62.2M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
62.2M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
62.2M
        return ret | get_bits(s, n - 16);
448
62.2M
#endif
449
62.2M
#endif
450
62.2M
    }
451
116M
}
Unexecuted instantiation: parse.c:get_bits_long
jpegxl_parse.c:get_bits_long
Line
Count
Source
425
4.26M
{
426
4.26M
    av_assert2(n>=0 && n<=32);
427
4.26M
    if (!n) {
428
0
        return 0;
429
4.26M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
4.26M
               && n <= MIN_CACHE_BITS) {
431
4.23M
        return get_bits(s, n);
432
4.23M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
23.8k
#ifdef BITSTREAM_READER_LE
443
23.8k
        unsigned ret = get_bits(s, 16);
444
23.8k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
23.8k
#endif
450
23.8k
    }
451
4.26M
}
Unexecuted instantiation: aom_film_grain.c:get_bits_long
Unexecuted instantiation: dynamic_hdr_vivid.c:get_bits_long
hdr_dynamic_metadata.c:get_bits_long
Line
Count
Source
425
241k
{
426
241k
    av_assert2(n>=0 && n<=32);
427
241k
    if (!n) {
428
0
        return 0;
429
241k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
241k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
241k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
241k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
241k
        return ret | get_bits(s, n - 16);
448
241k
#endif
449
241k
#endif
450
241k
    }
451
241k
}
Unexecuted instantiation: av1dec.c:get_bits_long
Unexecuted instantiation: bit.c:get_bits_long
Unexecuted instantiation: dtsdec.c:get_bits_long
Unexecuted instantiation: dtshddec.c:get_bits_long
h264dec.c:get_bits_long
Line
Count
Source
425
3.46M
{
426
3.46M
    av_assert2(n>=0 && n<=32);
427
3.46M
    if (!n) {
428
0
        return 0;
429
3.46M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
3.46M
               && n <= MIN_CACHE_BITS) {
431
1.70M
        return get_bits(s, n);
432
1.76M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
1.76M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
1.76M
        return ret | get_bits(s, n - 16);
448
1.76M
#endif
449
1.76M
#endif
450
1.76M
    }
451
3.46M
}
Unexecuted instantiation: hls_sample_encryption.c:get_bits_long
Unexecuted instantiation: isom.c:get_bits_long
Unexecuted instantiation: matroskadec.c:get_bits_long
Unexecuted instantiation: mlpdec.c:get_bits_long
mov.c:get_bits_long
Line
Count
Source
425
2.38M
{
426
2.38M
    av_assert2(n>=0 && n<=32);
427
2.38M
    if (!n) {
428
0
        return 0;
429
2.38M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
2.38M
               && n <= MIN_CACHE_BITS) {
431
1.07M
        return get_bits(s, n);
432
1.31M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
1.31M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
1.31M
        return ret | get_bits(s, n - 16);
448
1.31M
#endif
449
1.31M
#endif
450
1.31M
    }
451
2.38M
}
Unexecuted instantiation: mpc8.c:get_bits_long
Unexecuted instantiation: mpegts.c:get_bits_long
oggparsetheora.c:get_bits_long
Line
Count
Source
425
43.3k
{
426
43.3k
    av_assert2(n>=0 && n<=32);
427
43.3k
    if (!n) {
428
0
        return 0;
429
43.3k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
43.3k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
43.3k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
43.3k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
43.3k
        return ret | get_bits(s, n - 16);
448
43.3k
#endif
449
43.3k
#endif
450
43.3k
    }
451
43.3k
}
Unexecuted instantiation: shortendec.c:get_bits_long
swfdec.c:get_bits_long
Line
Count
Source
425
10.9k
{
426
10.9k
    av_assert2(n>=0 && n<=32);
427
10.9k
    if (!n) {
428
0
        return 0;
429
10.9k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
10.9k
               && n <= MIN_CACHE_BITS) {
431
7.72k
        return get_bits(s, n);
432
7.72k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
3.23k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
3.23k
        return ret | get_bits(s, n - 16);
448
3.23k
#endif
449
3.23k
#endif
450
3.23k
    }
451
10.9k
}
takdec.c:get_bits_long
Line
Count
Source
425
1.15k
{
426
1.15k
    av_assert2(n>=0 && n<=32);
427
1.15k
    if (!n) {
428
0
        return 0;
429
1.15k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
1.15k
               && n <= MIN_CACHE_BITS) {
431
575
        return get_bits(s, n);
432
575
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
575
#ifdef BITSTREAM_READER_LE
443
575
        unsigned ret = get_bits(s, 16);
444
575
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
575
#endif
450
575
    }
451
1.15k
}
iamf_parse.c:get_bits_long
Line
Count
Source
425
3.01k
{
426
3.01k
    av_assert2(n>=0 && n<=32);
427
3.01k
    if (!n) {
428
0
        return 0;
429
3.01k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
3.01k
               && n <= MIN_CACHE_BITS) {
431
2.51k
        return get_bits(s, n);
432
2.51k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
497
        unsigned ret = get_bits(s, 16) << (n - 16);
447
497
        return ret | get_bits(s, n - 16);
448
497
#endif
449
497
#endif
450
497
    }
451
3.01k
}
Unexecuted instantiation: dirac.c:get_bits_long
Unexecuted instantiation: atrac9dec.c:get_bits_long
Unexecuted instantiation: enc.c:get_bits_long
Unexecuted instantiation: enc_psy.c:get_bits_long
Unexecuted instantiation: pvq.c:get_bits_long
Unexecuted instantiation: rc.c:get_bits_long
Unexecuted instantiation: celt.c:get_bits_long
Unexecuted instantiation: gsmdec.c:get_bits_long
Unexecuted instantiation: msgsmdec.c:get_bits_long
Unexecuted instantiation: imc.c:get_bits_long
Unexecuted instantiation: adpcm.c:get_bits_long
Unexecuted instantiation: wmaenc.c:get_bits_long
wma.c:get_bits_long
Line
Count
Source
425
47.2k
{
426
47.2k
    av_assert2(n>=0 && n<=32);
427
47.2k
    if (!n) {
428
0
        return 0;
429
47.2k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
47.2k
               && n <= MIN_CACHE_BITS) {
431
40.3k
        return get_bits(s, n);
432
40.3k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
6.86k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
6.86k
        return ret | get_bits(s, n - 16);
448
6.86k
#endif
449
6.86k
#endif
450
6.86k
    }
451
47.2k
}
Unexecuted instantiation: cfhd.c:get_bits_long
wavarc.c:get_bits_long
Line
Count
Source
425
9.48M
{
426
9.48M
    av_assert2(n>=0 && n<=32);
427
9.48M
    if (!n) {
428
0
        return 0;
429
9.48M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
9.48M
               && n <= MIN_CACHE_BITS) {
431
9.46M
        return get_bits(s, n);
432
9.46M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
22.5k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
22.5k
        return ret | get_bits(s, n - 16);
448
22.5k
#endif
449
22.5k
#endif
450
22.5k
    }
451
9.48M
}
Unexecuted instantiation: escape130.c:get_bits_long
Unexecuted instantiation: asvdec.c:get_bits_long
diracdec.c:get_bits_long
Line
Count
Source
425
2.11M
{
426
2.11M
    av_assert2(n>=0 && n<=32);
427
2.11M
    if (!n) {
428
0
        return 0;
429
2.11M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
2.11M
               && n <= MIN_CACHE_BITS) {
431
2.04M
        return get_bits(s, n);
432
2.04M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
64.2k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
64.2k
        return ret | get_bits(s, n - 16);
448
64.2k
#endif
449
64.2k
#endif
450
64.2k
    }
451
2.11M
}
Unexecuted instantiation: dirac_arith.c:get_bits_long
Unexecuted instantiation: wmadec.c:get_bits_long
Unexecuted instantiation: aacenc.c:get_bits_long
imm4.c:get_bits_long
Line
Count
Source
425
115k
{
426
115k
    av_assert2(n>=0 && n<=32);
427
115k
    if (!n) {
428
0
        return 0;
429
115k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
115k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
115k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
115k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
115k
        return ret | get_bits(s, n - 16);
448
115k
#endif
449
115k
#endif
450
115k
    }
451
115k
}
Unexecuted instantiation: exr.c:get_bits_long
aacdec.c:get_bits_long
Line
Count
Source
425
45.7k
{
426
45.7k
    av_assert2(n>=0 && n<=32);
427
45.7k
    if (!n) {
428
0
        return 0;
429
45.7k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
45.7k
               && n <= MIN_CACHE_BITS) {
431
38.5k
        return get_bits(s, n);
432
38.5k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
7.19k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
7.19k
        return ret | get_bits(s, n - 16);
448
7.19k
#endif
449
7.19k
#endif
450
7.19k
    }
451
45.7k
}
Unexecuted instantiation: aacdec_fixed.c:get_bits_long
Unexecuted instantiation: aacdec_float.c:get_bits_long
Unexecuted instantiation: aacdec_tab.c:get_bits_long
aacdec_usac.c:get_bits_long
Line
Count
Source
425
206
{
426
206
    av_assert2(n>=0 && n<=32);
427
206
    if (!n) {
428
0
        return 0;
429
206
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
206
               && n <= MIN_CACHE_BITS) {
431
206
        return get_bits(s, n);
432
206
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
0
        unsigned ret = get_bits(s, 16) << (n - 16);
447
0
        return ret | get_bits(s, n - 16);
448
0
#endif
449
0
#endif
450
0
    }
451
206
}
Unexecuted instantiation: aacdec_usac_mps212.c:get_bits_long
Unexecuted instantiation: aacps_common.c:get_bits_long
Unexecuted instantiation: aacsbr.c:get_bits_long
Unexecuted instantiation: aacsbr_fixed.c:get_bits_long
Unexecuted instantiation: aacdec_ac.c:get_bits_long
Unexecuted instantiation: aacdec_lpd.c:get_bits_long
Unexecuted instantiation: aacps_fixed.c:get_bits_long
Unexecuted instantiation: aacps_float.c:get_bits_long
Unexecuted instantiation: mjpegdec.c:get_bits_long
Unexecuted instantiation: mjpegdec_common.c:get_bits_long
Unexecuted instantiation: jpeglsdec.c:get_bits_long
Unexecuted instantiation: jvdec.c:get_bits_long
Unexecuted instantiation: rdt.c:get_bits_long
Unexecuted instantiation: rtpdec_h261.c:get_bits_long
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bits_long
Unexecuted instantiation: rtpdec_latm.c:get_bits_long
Unexecuted instantiation: rtpdec_mpeg4.c:get_bits_long
Unexecuted instantiation: rtpdec_qt.c:get_bits_long
h264_cavlc.c:get_bits_long
Line
Count
Source
425
4.17M
{
426
4.17M
    av_assert2(n>=0 && n<=32);
427
4.17M
    if (!n) {
428
0
        return 0;
429
4.17M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
4.17M
               && n <= MIN_CACHE_BITS) {
431
2.07M
        return get_bits(s, n);
432
2.10M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
2.10M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
2.10M
        return ret | get_bits(s, n - 16);
448
2.10M
#endif
449
2.10M
#endif
450
2.10M
    }
451
4.17M
}
Unexecuted instantiation: h264_direct.c:get_bits_long
Unexecuted instantiation: h264_mb.c:get_bits_long
Unexecuted instantiation: h264_picture.c:get_bits_long
h264_refs.c:get_bits_long
Line
Count
Source
425
1.99M
{
426
1.99M
    av_assert2(n>=0 && n<=32);
427
1.99M
    if (!n) {
428
0
        return 0;
429
1.99M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
1.99M
               && n <= MIN_CACHE_BITS) {
431
989k
        return get_bits(s, n);
432
1.00M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
1.00M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
1.00M
        return ret | get_bits(s, n - 16);
448
1.00M
#endif
449
1.00M
#endif
450
1.00M
    }
451
1.99M
}
h264_slice.c:get_bits_long
Line
Count
Source
425
11.8M
{
426
11.8M
    av_assert2(n>=0 && n<=32);
427
11.8M
    if (!n) {
428
0
        return 0;
429
11.8M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
11.8M
               && n <= MIN_CACHE_BITS) {
431
5.73M
        return get_bits(s, n);
432
6.08M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
6.08M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
6.08M
        return ret | get_bits(s, n - 16);
448
6.08M
#endif
449
6.08M
#endif
450
6.08M
    }
451
11.8M
}
Unexecuted instantiation: h264_cabac.c:get_bits_long
Unexecuted instantiation: h264_loopfilter.c:get_bits_long
alsdec.c:get_bits_long
Line
Count
Source
425
77.0M
{
426
77.0M
    av_assert2(n>=0 && n<=32);
427
77.0M
    if (!n) {
428
613
        return 0;
429
77.0M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
77.0M
               && n <= MIN_CACHE_BITS) {
431
38.9M
        return get_bits(s, n);
432
38.9M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
38.0M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
38.0M
        return ret | get_bits(s, n - 16);
448
38.0M
#endif
449
38.0M
#endif
450
38.0M
    }
451
77.0M
}
Unexecuted instantiation: bgmc.c:get_bits_long
Unexecuted instantiation: mlz.c:get_bits_long
Unexecuted instantiation: bonk.c:get_bits_long
Unexecuted instantiation: mxpegdec.c:get_bits_long
Unexecuted instantiation: rv30.c:get_bits_long
Unexecuted instantiation: rv34.c:get_bits_long
Unexecuted instantiation: indeo3.c:get_bits_long
Unexecuted instantiation: eamad.c:get_bits_long
Unexecuted instantiation: mpeg12.c:get_bits_long
Unexecuted instantiation: g726.c:get_bits_long
vc1dec.c:get_bits_long
Line
Count
Source
425
1.31M
{
426
1.31M
    av_assert2(n>=0 && n<=32);
427
1.31M
    if (!n) {
428
0
        return 0;
429
1.31M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
1.31M
               && n <= MIN_CACHE_BITS) {
431
870
        return get_bits(s, n);
432
1.31M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
1.31M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
1.31M
        return ret | get_bits(s, n - 16);
448
1.31M
#endif
449
1.31M
#endif
450
1.31M
    }
451
1.31M
}
Unexecuted instantiation: vc1_block.c:get_bits_long
Unexecuted instantiation: vc1_loopfilter.c:get_bits_long
Unexecuted instantiation: vc1_mc.c:get_bits_long
Unexecuted instantiation: vc1_pred.c:get_bits_long
Unexecuted instantiation: mpegaudiodec_float.c:get_bits_long
Unexecuted instantiation: huffyuvdec.c:get_bits_long
Unexecuted instantiation: speexdec.c:get_bits_long
Unexecuted instantiation: atrac3plusdec.c:get_bits_long
Unexecuted instantiation: atrac3plusdsp.c:get_bits_long
Unexecuted instantiation: atrac3plus.c:get_bits_long
Unexecuted instantiation: mss4.c:get_bits_long
Unexecuted instantiation: tiff.c:get_bits_long
Unexecuted instantiation: faxcompr.c:get_bits_long
Unexecuted instantiation: ac3dec_float.c:get_bits_long
on2avc.c:get_bits_long
Line
Count
Source
425
41.3k
{
426
41.3k
    av_assert2(n>=0 && n<=32);
427
41.3k
    if (!n) {
428
0
        return 0;
429
41.3k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
41.3k
               && n <= MIN_CACHE_BITS) {
431
13.9k
        return get_bits(s, n);
432
27.4k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
27.4k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
27.4k
        return ret | get_bits(s, n - 16);
448
27.4k
#endif
449
27.4k
#endif
450
27.4k
    }
451
41.3k
}
Unexecuted instantiation: smacker.c:get_bits_long
Unexecuted instantiation: dvbsubdec.c:get_bits_long
Unexecuted instantiation: mss1.c:get_bits_long
Unexecuted instantiation: mss12.c:get_bits_long
Unexecuted instantiation: mss2.c:get_bits_long
Unexecuted instantiation: mdec.c:get_bits_long
osq.c:get_bits_long
Line
Count
Source
425
3.77M
{
426
3.77M
    av_assert2(n>=0 && n<=32);
427
3.77M
    if (!n) {
428
22.9k
        return 0;
429
3.75M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
3.75M
               && n <= MIN_CACHE_BITS) {
431
3.15M
        return get_bits(s, n);
432
3.15M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
600k
#ifdef BITSTREAM_READER_LE
443
600k
        unsigned ret = get_bits(s, 16);
444
600k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
600k
#endif
450
600k
    }
451
3.77M
}
Unexecuted instantiation: vp6.c:get_bits_long
Unexecuted instantiation: vp56.c:get_bits_long
Unexecuted instantiation: vp56data.c:get_bits_long
Unexecuted instantiation: loco.c:get_bits_long
Unexecuted instantiation: vp5.c:get_bits_long
Unexecuted instantiation: ra144dec.c:get_bits_long
indeo5.c:get_bits_long
Line
Count
Source
425
2.06k
{
426
2.06k
    av_assert2(n>=0 && n<=32);
427
2.06k
    if (!n) {
428
0
        return 0;
429
2.06k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
2.06k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
2.06k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
2.06k
#ifdef BITSTREAM_READER_LE
443
2.06k
        unsigned ret = get_bits(s, 16);
444
2.06k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
2.06k
#endif
450
2.06k
    }
451
2.06k
}
Unexecuted instantiation: ivi.c:get_bits_long
Unexecuted instantiation: ivi_dsp.c:get_bits_long
apac.c:get_bits_long
Line
Count
Source
425
1.73G
{
426
1.73G
    av_assert2(n>=0 && n<=32);
427
1.73G
    if (!n) {
428
1.72G
        return 0;
429
1.72G
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
6.75M
               && n <= MIN_CACHE_BITS) {
431
6.75M
        return get_bits(s, n);
432
6.75M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
0
        unsigned ret = get_bits(s, 16) << (n - 16);
447
0
        return ret | get_bits(s, n - 16);
448
0
#endif
449
0
#endif
450
0
    }
451
1.73G
}
Unexecuted instantiation: clearvideo.c:get_bits_long
Unexecuted instantiation: dxtory.c:get_bits_long
Unexecuted instantiation: mpegaudiodec_fixed.c:get_bits_long
Unexecuted instantiation: ralf.c:get_bits_long
Unexecuted instantiation: pixlet.c:get_bits_long
Unexecuted instantiation: wnv1.c:get_bits_long
Unexecuted instantiation: qoadec.c:get_bits_long
vima.c:get_bits_long
Line
Count
Source
425
220k
{
426
220k
    av_assert2(n>=0 && n<=32);
427
220k
    if (!n) {
428
0
        return 0;
429
220k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
220k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
220k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
220k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
220k
        return ret | get_bits(s, n - 16);
448
220k
#endif
449
220k
#endif
450
220k
    }
451
220k
}
Unexecuted instantiation: leaddec.c:get_bits_long
Unexecuted instantiation: eatqi.c:get_bits_long
lagarith.c:get_bits_long
Line
Count
Source
425
64.9k
{
426
64.9k
    av_assert2(n>=0 && n<=32);
427
64.9k
    if (!n) {
428
0
        return 0;
429
64.9k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
64.9k
               && n <= MIN_CACHE_BITS) {
431
60.4k
        return get_bits(s, n);
432
60.4k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
4.50k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
4.50k
        return ret | get_bits(s, n - 16);
448
4.50k
#endif
449
4.50k
#endif
450
4.50k
    }
451
64.9k
}
Unexecuted instantiation: lagarithrac.c:get_bits_long
dss_sp.c:get_bits_long
Line
Count
Source
425
1.31M
{
426
1.31M
    av_assert2(n>=0 && n<=32);
427
1.31M
    if (!n) {
428
0
        return 0;
429
1.31M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
1.31M
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
1.31M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
1.31M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
1.31M
        return ret | get_bits(s, n - 16);
448
1.31M
#endif
449
1.31M
#endif
450
1.31M
    }
451
1.31M
}
Unexecuted instantiation: siren.c:get_bits_long
cavsdec.c:get_bits_long
Line
Count
Source
425
944k
{
426
944k
    av_assert2(n>=0 && n<=32);
427
944k
    if (!n) {
428
0
        return 0;
429
944k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
944k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
944k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
944k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
944k
        return ret | get_bits(s, n - 16);
448
944k
#endif
449
944k
#endif
450
944k
    }
451
944k
}
Unexecuted instantiation: cavs.c:get_bits_long
Unexecuted instantiation: cavsdata.c:get_bits_long
Unexecuted instantiation: hcom.c:get_bits_long
vp3.c:get_bits_long
Line
Count
Source
425
27.1k
{
426
27.1k
    av_assert2(n>=0 && n<=32);
427
27.1k
    if (!n) {
428
0
        return 0;
429
27.1k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
27.1k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
27.1k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
27.1k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
27.1k
        return ret | get_bits(s, n - 16);
448
27.1k
#endif
449
27.1k
#endif
450
27.1k
    }
451
27.1k
}
Unexecuted instantiation: webp.c:get_bits_long
mpc8.c:get_bits_long
Line
Count
Source
425
416k
{
426
416k
    av_assert2(n>=0 && n<=32);
427
416k
    if (!n) {
428
0
        return 0;
429
416k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
416k
               && n <= MIN_CACHE_BITS) {
431
414k
        return get_bits(s, n);
432
414k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
1.63k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
1.63k
        return ret | get_bits(s, n - 16);
448
1.63k
#endif
449
1.63k
#endif
450
1.63k
    }
451
416k
}
Unexecuted instantiation: eatgv.c:get_bits_long
Unexecuted instantiation: eatgq.c:get_bits_long
Unexecuted instantiation: sga.c:get_bits_long
binkaudio.c:get_bits_long
Line
Count
Source
425
905k
{
426
905k
    av_assert2(n>=0 && n<=32);
427
905k
    if (!n) {
428
0
        return 0;
429
905k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
905k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
905k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
905k
#ifdef BITSTREAM_READER_LE
443
905k
        unsigned ret = get_bits(s, 16);
444
905k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
905k
#endif
450
905k
    }
451
905k
}
mpeg12dec.c:get_bits_long
Line
Count
Source
425
242k
{
426
242k
    av_assert2(n>=0 && n<=32);
427
242k
    if (!n) {
428
0
        return 0;
429
242k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
242k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
242k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
242k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
242k
        return ret | get_bits(s, n - 16);
448
242k
#endif
449
242k
#endif
450
242k
    }
451
242k
}
Unexecuted instantiation: indeo2.c:get_bits_long
Unexecuted instantiation: 4xm.c:get_bits_long
wmalosslessdec.c:get_bits_long
Line
Count
Source
425
52.5M
{
426
52.5M
    av_assert2(n>=0 && n<=32);
427
52.5M
    if (!n) {
428
0
        return 0;
429
52.5M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
52.5M
               && n <= MIN_CACHE_BITS) {
431
52.2M
        return get_bits(s, n);
432
52.2M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
322k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
322k
        return ret | get_bits(s, n - 16);
448
322k
#endif
449
322k
#endif
450
322k
    }
451
52.5M
}
Unexecuted instantiation: ilbcdec.c:get_bits_long
hevcdec.c:get_bits_long
Line
Count
Source
425
1.95M
{
426
1.95M
    av_assert2(n>=0 && n<=32);
427
1.95M
    if (!n) {
428
0
        return 0;
429
1.95M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
1.95M
               && n <= MIN_CACHE_BITS) {
431
1.08M
        return get_bits(s, n);
432
1.08M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
871k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
871k
        return ret | get_bits(s, n - 16);
448
871k
#endif
449
871k
#endif
450
871k
    }
451
1.95M
}
Unexecuted instantiation: mvs.c:get_bits_long
Unexecuted instantiation: pred.c:get_bits_long
Unexecuted instantiation: refs.c:get_bits_long
Unexecuted instantiation: cabac.c:get_bits_long
Unexecuted instantiation: dsp.c:get_bits_long
Unexecuted instantiation: filter.c:get_bits_long
Unexecuted instantiation: tscc2.c:get_bits_long
Unexecuted instantiation: hqx.c:get_bits_long
Unexecuted instantiation: mobiclip.c:get_bits_long
Unexecuted instantiation: wmaprodec.c:get_bits_long
Unexecuted instantiation: g729dec.c:get_bits_long
Unexecuted instantiation: sipr.c:get_bits_long
Unexecuted instantiation: g722dec.c:get_bits_long
Unexecuted instantiation: nellymoserdec.c:get_bits_long
Unexecuted instantiation: dcaenc.c:get_bits_long
Unexecuted instantiation: dcaadpcm.c:get_bits_long
Unexecuted instantiation: dcadata.c:get_bits_long
Unexecuted instantiation: interplayvideo.c:get_bits_long
Unexecuted instantiation: dec.c:get_bits_long
Unexecuted instantiation: dec_celt.c:get_bits_long
Unexecuted instantiation: silk.c:get_bits_long
mjpegbdec.c:get_bits_long
Line
Count
Source
425
3.92M
{
426
3.92M
    av_assert2(n>=0 && n<=32);
427
3.92M
    if (!n) {
428
0
        return 0;
429
3.92M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
3.92M
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
3.92M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
3.92M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
3.92M
        return ret | get_bits(s, n - 16);
448
3.92M
#endif
449
3.92M
#endif
450
3.92M
    }
451
3.92M
}
Unexecuted instantiation: bink.c:get_bits_long
Unexecuted instantiation: dvdsubdec.c:get_bits_long
Unexecuted instantiation: rtjpeg.c:get_bits_long
truespeech.c:get_bits_long
Line
Count
Source
425
2.29M
{
426
2.29M
    av_assert2(n>=0 && n<=32);
427
2.29M
    if (!n) {
428
0
        return 0;
429
2.29M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
2.29M
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
2.29M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
2.29M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
2.29M
        return ret | get_bits(s, n - 16);
448
2.29M
#endif
449
2.29M
#endif
450
2.29M
    }
451
2.29M
}
Unexecuted instantiation: metasound.c:get_bits_long
escape124.c:get_bits_long
Line
Count
Source
425
175k
{
426
175k
    av_assert2(n>=0 && n<=32);
427
175k
    if (!n) {
428
0
        return 0;
429
175k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
175k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
175k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
175k
#ifdef BITSTREAM_READER_LE
443
175k
        unsigned ret = get_bits(s, 16);
444
175k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
175k
#endif
450
175k
    }
451
175k
}
Unexecuted instantiation: cllc.c:get_bits_long
Unexecuted instantiation: dvdec.c:get_bits_long
tta.c:get_bits_long
Line
Count
Source
425
2.15k
{
426
2.15k
    av_assert2(n>=0 && n<=32);
427
2.15k
    if (!n) {
428
0
        return 0;
429
2.15k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
2.15k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
2.15k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
2.15k
#ifdef BITSTREAM_READER_LE
443
2.15k
        unsigned ret = get_bits(s, 16);
444
2.15k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
2.15k
#endif
450
2.15k
    }
451
2.15k
}
Unexecuted instantiation: fraps.c:get_bits_long
motionpixels.c:get_bits_long
Line
Count
Source
425
72.8M
{
426
72.8M
    av_assert2(n>=0 && n<=32);
427
72.8M
    if (!n) {
428
0
        return 0;
429
72.8M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
72.8M
               && n <= MIN_CACHE_BITS) {
431
72.8M
        return get_bits(s, n);
432
72.8M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
0
        unsigned ret = get_bits(s, 16) << (n - 16);
447
0
        return ret | get_bits(s, n - 16);
448
0
#endif
449
0
#endif
450
0
    }
451
72.8M
}
Unexecuted instantiation: vp9.c:get_bits_long
Unexecuted instantiation: vp9block.c:get_bits_long
Unexecuted instantiation: vp9data.c:get_bits_long
Unexecuted instantiation: vp9lpf.c:get_bits_long
Unexecuted instantiation: vp9mvs.c:get_bits_long
Unexecuted instantiation: vp9prob.c:get_bits_long
Unexecuted instantiation: vp9recon.c:get_bits_long
Unexecuted instantiation: ffv1dec.c:get_bits_long
Unexecuted instantiation: intra_utils.c:get_bits_long
Unexecuted instantiation: thread.c:get_bits_long
Unexecuted instantiation: ctu.c:get_bits_long
Unexecuted instantiation: inter.c:get_bits_long
Unexecuted instantiation: intra.c:get_bits_long
Unexecuted instantiation: wmavoice.c:get_bits_long
Unexecuted instantiation: rawdec.c:get_bits_long
Unexecuted instantiation: svq1dec.c:get_bits_long
Unexecuted instantiation: mpc7.c:get_bits_long
Unexecuted instantiation: truemotion2rt.c:get_bits_long
Unexecuted instantiation: adxdec.c:get_bits_long
Unexecuted instantiation: rv40.c:get_bits_long
Unexecuted instantiation: xsubdec.c:get_bits_long
Unexecuted instantiation: notchlc.c:get_bits_long
Unexecuted instantiation: aic.c:get_bits_long
Unexecuted instantiation: vqcdec.c:get_bits_long
Unexecuted instantiation: dolby_e.c:get_bits_long
Unexecuted instantiation: proresdec.c:get_bits_long
Unexecuted instantiation: evrcdec.c:get_bits_long
Unexecuted instantiation: dnxhddec.c:get_bits_long
Unexecuted instantiation: dcadec.c:get_bits_long
dca_core.c:get_bits_long
Line
Count
Source
425
66.2k
{
426
66.2k
    av_assert2(n>=0 && n<=32);
427
66.2k
    if (!n) {
428
0
        return 0;
429
66.2k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
66.2k
               && n <= MIN_CACHE_BITS) {
431
13.6k
        return get_bits(s, n);
432
52.6k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
52.6k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
52.6k
        return ret | get_bits(s, n - 16);
448
52.6k
#endif
449
52.6k
#endif
450
52.6k
    }
451
66.2k
}
Unexecuted instantiation: dca_lbr.c:get_bits_long
dca_xll.c:get_bits_long
Line
Count
Source
425
7.20M
{
426
7.20M
    av_assert2(n>=0 && n<=32);
427
7.20M
    if (!n) {
428
712k
        return 0;
429
6.49M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
6.49M
               && n <= MIN_CACHE_BITS) {
431
5.53M
        return get_bits(s, n);
432
5.53M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
961k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
961k
        return ret | get_bits(s, n - 16);
448
961k
#endif
449
961k
#endif
450
961k
    }
451
7.20M
}
Unexecuted instantiation: mlpenc.c:get_bits_long
mlpdec.c:get_bits_long
Line
Count
Source
425
1.28M
{
426
1.28M
    av_assert2(n>=0 && n<=32);
427
1.28M
    if (!n) {
428
0
        return 0;
429
1.28M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
1.28M
               && n <= MIN_CACHE_BITS) {
431
371k
        return get_bits(s, n);
432
910k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
910k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
910k
        return ret | get_bits(s, n - 16);
448
910k
#endif
449
910k
#endif
450
910k
    }
451
1.28M
}
Unexecuted instantiation: atrac3.c:get_bits_long
vorbisdec.c:get_bits_long
Line
Count
Source
425
219k
{
426
219k
    av_assert2(n>=0 && n<=32);
427
219k
    if (!n) {
428
0
        return 0;
429
219k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
219k
               && n <= MIN_CACHE_BITS) {
431
10.7k
        return get_bits(s, n);
432
208k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
208k
#ifdef BITSTREAM_READER_LE
443
208k
        unsigned ret = get_bits(s, 16);
444
208k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
208k
#endif
450
208k
    }
451
219k
}
Unexecuted instantiation: flashsv.c:get_bits_long
wavpack.c:get_bits_long
Line
Count
Source
425
1.55M
{
426
1.55M
    av_assert2(n>=0 && n<=32);
427
1.55M
    if (!n) {
428
10.2k
        return 0;
429
1.54M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
1.54M
               && n <= MIN_CACHE_BITS) {
431
922k
        return get_bits(s, n);
432
922k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
621k
#ifdef BITSTREAM_READER_LE
443
621k
        unsigned ret = get_bits(s, 16);
444
621k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
621k
#endif
450
621k
    }
451
1.55M
}
Unexecuted instantiation: speedhqdec.c:get_bits_long
Unexecuted instantiation: g723_1dec.c:get_bits_long
Unexecuted instantiation: g2meet.c:get_bits_long
shorten.c:get_bits_long
Line
Count
Source
425
42.8k
{
426
42.8k
    av_assert2(n>=0 && n<=32);
427
42.8k
    if (!n) {
428
0
        return 0;
429
42.8k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
42.8k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
42.8k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
42.8k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
42.8k
        return ret | get_bits(s, n - 16);
448
42.8k
#endif
449
42.8k
#endif
450
42.8k
    }
451
42.8k
}
Unexecuted instantiation: indeo4.c:get_bits_long
Unexecuted instantiation: sp5xdec.c:get_bits_long
Unexecuted instantiation: atrac1.c:get_bits_long
Unexecuted instantiation: apv_decode.c:get_bits_long
Unexecuted instantiation: apv_entropy.c:get_bits_long
Unexecuted instantiation: avs.c:get_bits_long
rv60dec.c:get_bits_long
Line
Count
Source
425
107k
{
426
107k
    av_assert2(n>=0 && n<=32);
427
107k
    if (!n) {
428
0
        return 0;
429
107k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
107k
               && n <= MIN_CACHE_BITS) {
431
87.3k
        return get_bits(s, n);
432
87.3k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
20.6k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
20.6k
        return ret | get_bits(s, n - 16);
448
20.6k
#endif
449
20.6k
#endif
450
20.6k
    }
451
107k
}
alac.c:get_bits_long
Line
Count
Source
425
721k
{
426
721k
    av_assert2(n>=0 && n<=32);
427
721k
    if (!n) {
428
0
        return 0;
429
721k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
721k
               && n <= MIN_CACHE_BITS) {
431
446k
        return get_bits(s, n);
432
446k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
275k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
275k
        return ret | get_bits(s, n - 16);
448
275k
#endif
449
275k
#endif
450
275k
    }
451
721k
}
Unexecuted instantiation: tiertexseqv.c:get_bits_long
Unexecuted instantiation: ffv1enc.c:get_bits_long
Unexecuted instantiation: hcadec.c:get_bits_long
Unexecuted instantiation: pcx.c:get_bits_long
Unexecuted instantiation: qcelpdec.c:get_bits_long
flacdec.c:get_bits_long
Line
Count
Source
425
102M
{
426
102M
    av_assert2(n>=0 && n<=32);
427
102M
    if (!n) {
428
0
        return 0;
429
102M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
102M
               && n <= MIN_CACHE_BITS) {
431
48.3M
        return get_bits(s, n);
432
54.6M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
54.6M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
54.6M
        return ret | get_bits(s, n - 16);
448
54.6M
#endif
449
54.6M
#endif
450
54.6M
    }
451
102M
}
Unexecuted instantiation: ac3dec_fixed.c:get_bits_long
Unexecuted instantiation: midivid.c:get_bits_long
Unexecuted instantiation: mimic.c:get_bits_long
Unexecuted instantiation: fic.c:get_bits_long
qdmc.c:get_bits_long
Line
Count
Source
425
28.9k
{
426
28.9k
    av_assert2(n>=0 && n<=32);
427
28.9k
    if (!n) {
428
0
        return 0;
429
28.9k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
28.9k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
28.9k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
28.9k
#ifdef BITSTREAM_READER_LE
443
28.9k
        unsigned ret = get_bits(s, 16);
444
28.9k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
28.9k
#endif
450
28.9k
    }
451
28.9k
}
Unexecuted instantiation: ra288.c:get_bits_long
Unexecuted instantiation: interplayacm.c:get_bits_long
ylc.c:get_bits_long
Line
Count
Source
425
147M
{
426
147M
    av_assert2(n>=0 && n<=32);
427
147M
    if (!n) {
428
142M
        return 0;
429
142M
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
4.52M
               && n <= MIN_CACHE_BITS) {
431
1.78M
        return get_bits(s, n);
432
2.73M
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
2.73M
        unsigned ret = get_bits(s, 16) << (n - 16);
447
2.73M
        return ret | get_bits(s, n - 16);
448
2.73M
#endif
449
2.73M
#endif
450
2.73M
    }
451
147M
}
Unexecuted instantiation: ftr.c:get_bits_long
agm.c:get_bits_long
Line
Count
Source
425
28.1k
{
426
28.1k
    av_assert2(n>=0 && n<=32);
427
28.1k
    if (!n) {
428
0
        return 0;
429
28.1k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
28.1k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
28.1k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
28.1k
#ifdef BITSTREAM_READER_LE
443
28.1k
        unsigned ret = get_bits(s, 16);
444
28.1k
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
        unsigned ret = get_bits(s, 16) << (n - 16);
447
        return ret | get_bits(s, n - 16);
448
#endif
449
28.1k
#endif
450
28.1k
    }
451
28.1k
}
Unexecuted instantiation: xan.c:get_bits_long
Unexecuted instantiation: svq3.c:get_bits_long
Unexecuted instantiation: cri.c:get_bits_long
Unexecuted instantiation: qdm2.c:get_bits_long
Unexecuted instantiation: cljrdec.c:get_bits_long
Unexecuted instantiation: g728dec.c:get_bits_long
Unexecuted instantiation: cook.c:get_bits_long
Unexecuted instantiation: twinvqdec.c:get_bits_long
Unexecuted instantiation: hq_hqa.c:get_bits_long
Unexecuted instantiation: cdxl.c:get_bits_long
Unexecuted instantiation: vble.c:get_bits_long
Unexecuted instantiation: mv30.c:get_bits_long
apedec.c:get_bits_long
Line
Count
Source
425
26.4k
{
426
26.4k
    av_assert2(n>=0 && n<=32);
427
26.4k
    if (!n) {
428
0
        return 0;
429
26.4k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
26.4k
               && n <= MIN_CACHE_BITS) {
431
0
        return get_bits(s, n);
432
26.4k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
26.4k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
26.4k
        return ret | get_bits(s, n - 16);
448
26.4k
#endif
449
26.4k
#endif
450
26.4k
    }
451
26.4k
}
Unexecuted instantiation: h261dec.c:get_bits_long
Unexecuted instantiation: dstdec.c:get_bits_long
Unexecuted instantiation: jpeglsenc.c:get_bits_long
truemotion2.c:get_bits_long
Line
Count
Source
425
72.6k
{
426
72.6k
    av_assert2(n>=0 && n<=32);
427
72.6k
    if (!n) {
428
0
        return 0;
429
72.6k
    } else if ((!HAVE_FAST_64BIT || av_builtin_constant_p(n <= MIN_CACHE_BITS))
430
72.6k
               && n <= MIN_CACHE_BITS) {
431
63.7k
        return get_bits(s, n);
432
63.7k
    } else {
433
#if HAVE_FAST_64BIT
434
        unsigned tmp;
435
        OPEN_READER(re, s);
436
        UPDATE_CACHE_32(re, s);
437
        tmp = SHOW_UBITS(re, s, n);
438
        LAST_SKIP_BITS(re, s, n);
439
        CLOSE_READER(re, s);
440
        return tmp;
441
#else
442
#ifdef BITSTREAM_READER_LE
443
        unsigned ret = get_bits(s, 16);
444
        return ret | (get_bits(s, n - 16) << 16);
445
#else
446
8.88k
        unsigned ret = get_bits(s, 16) << (n - 16);
447
8.88k
        return ret | get_bits(s, n - 16);
448
8.88k
#endif
449
8.88k
#endif
450
8.88k
    }
451
72.6k
}
452
453
/**
454
 * Read 0-64 bits.
455
 */
456
static inline uint64_t get_bits64(GetBitContext *s, int n)
457
25.3M
{
458
25.3M
    if (n <= 32) {
459
2.23M
        return get_bits_long(s, n);
460
23.0M
    } else {
461
#ifdef BITSTREAM_READER_LE
462
        uint64_t ret = get_bits_long(s, 32);
463
        return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
464
#else
465
        uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
466
        return ret | get_bits_long(s, 32);
467
#endif
468
23.0M
    }
469
25.3M
}
Unexecuted instantiation: mpegvideo_motion.c:get_bits64
Unexecuted instantiation: wmv2dec.c:get_bits64
Unexecuted instantiation: aac_adtstoasc.c:get_bits64
Unexecuted instantiation: dovi_rpu.c:get_bits64
Unexecuted instantiation: dovi_split.c:get_bits64
Unexecuted instantiation: dts2pts.c:get_bits64
Unexecuted instantiation: eac3_core.c:get_bits64
Unexecuted instantiation: evc_frame_merge.c:get_bits64
Unexecuted instantiation: extract_extradata.c:get_bits64
Unexecuted instantiation: h264_metadata.c:get_bits64
Unexecuted instantiation: h264_redundant_pps.c:get_bits64
Unexecuted instantiation: h265_metadata.c:get_bits64
Unexecuted instantiation: h266_metadata.c:get_bits64
Unexecuted instantiation: lcevc_merge.c:get_bits64
Unexecuted instantiation: lcevc_metadata.c:get_bits64
Unexecuted instantiation: remove_extradata.c:get_bits64
Unexecuted instantiation: truehd_core.c:get_bits64
Unexecuted instantiation: vp9_raw_reorder.c:get_bits64
Unexecuted instantiation: vp9_superframe.c:get_bits64
Unexecuted instantiation: vp9_superframe_split.c:get_bits64
Unexecuted instantiation: cbs.c:get_bits64
Unexecuted instantiation: cbs_apv.c:get_bits64
Unexecuted instantiation: cbs_av1.c:get_bits64
Unexecuted instantiation: cbs_h264.c:get_bits64
Unexecuted instantiation: cbs_h2645.c:get_bits64
Unexecuted instantiation: cbs_h265.c:get_bits64
Unexecuted instantiation: cbs_h266.c:get_bits64
Unexecuted instantiation: cbs_lcevc.c:get_bits64
Unexecuted instantiation: cbs_mpeg2.c:get_bits64
Unexecuted instantiation: cbs_sei.c:get_bits64
Unexecuted instantiation: cbs_vp8.c:get_bits64
Unexecuted instantiation: cbs_vp9.c:get_bits64
Unexecuted instantiation: dovi_rpudec.c:get_bits64
Unexecuted instantiation: evc_parse.c:get_bits64
Unexecuted instantiation: evc_ps.c:get_bits64
Unexecuted instantiation: h263dec.c:get_bits64
Unexecuted instantiation: h2645_parse.c:get_bits64
Unexecuted instantiation: h264_parse.c:get_bits64
Unexecuted instantiation: h264_ps.c:get_bits64
Unexecuted instantiation: h264data.c:get_bits64
Unexecuted instantiation: h265_profile_level.c:get_bits64
ps.c:get_bits64
Line
Count
Source
457
1.18M
{
458
1.18M
    if (n <= 32) {
459
1.03M
        return get_bits_long(s, n);
460
1.03M
    } else {
461
#ifdef BITSTREAM_READER_LE
462
        uint64_t ret = get_bits_long(s, 32);
463
        return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
464
#else
465
147k
        uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
466
147k
        return ret | get_bits_long(s, 32);
467
147k
#endif
468
147k
    }
469
1.18M
}
Unexecuted instantiation: intelh263dec.c:get_bits64
Unexecuted instantiation: intrax8.c:get_bits64
Unexecuted instantiation: ituh263dec.c:get_bits64
Unexecuted instantiation: mlp_parse.c:get_bits64
Unexecuted instantiation: mpeg4audio.c:get_bits64
Unexecuted instantiation: mpeg4videodec.c:get_bits64
Unexecuted instantiation: mpeg_er.c:get_bits64
Unexecuted instantiation: mpegvideo_dec.c:get_bits64
Unexecuted instantiation: msmpeg4dec.c:get_bits64
Unexecuted instantiation: rv10.c:get_bits64
Unexecuted instantiation: ac3_parser.c:get_bits64
Unexecuted instantiation: adts_header.c:get_bits64
Unexecuted instantiation: av1_parse.c:get_bits64
Unexecuted instantiation: flvdec.c:get_bits64
Unexecuted instantiation: h2645_vui.c:get_bits64
Unexecuted instantiation: vc1_parser.c:get_bits64
Unexecuted instantiation: vorbis_parser.c:get_bits64
Unexecuted instantiation: vp9_parser.c:get_bits64
Unexecuted instantiation: vvc_parser.c:get_bits64
Unexecuted instantiation: aac_ac3_parser.c:get_bits64
Unexecuted instantiation: av1_parser.c:get_bits64
Unexecuted instantiation: avs2_parser.c:get_bits64
Unexecuted instantiation: avs3_parser.c:get_bits64
Unexecuted instantiation: cavs_parser.c:get_bits64
Unexecuted instantiation: dca_parser.c:get_bits64
Unexecuted instantiation: dolby_e_parser.c:get_bits64
Unexecuted instantiation: evc_parser.c:get_bits64
Unexecuted instantiation: ffv1_parser.c:get_bits64
Unexecuted instantiation: flac_parser.c:get_bits64
Unexecuted instantiation: ftr_parser.c:get_bits64
Unexecuted instantiation: h264_parser.c:get_bits64
Unexecuted instantiation: h264_sei.c:get_bits64
Unexecuted instantiation: h264idct.c:get_bits64
Unexecuted instantiation: parser.c:get_bits64
sei.c:get_bits64
Line
Count
Source
457
1.24M
{
458
1.24M
    if (n <= 32) {
459
1.18M
        return get_bits_long(s, n);
460
1.18M
    } else {
461
#ifdef BITSTREAM_READER_LE
462
        uint64_t ret = get_bits_long(s, 32);
463
        return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
464
#else
465
63.6k
        uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
466
63.6k
        return ret | get_bits_long(s, 32);
467
63.6k
#endif
468
63.6k
    }
469
1.24M
}
Unexecuted instantiation: jpegxl_parser.c:get_bits64
Unexecuted instantiation: jpegxs_parser.c:get_bits64
Unexecuted instantiation: lcevc_parser.c:get_bits64
Unexecuted instantiation: mlp_parser.c:get_bits64
Unexecuted instantiation: mpeg4video_parser.c:get_bits64
Unexecuted instantiation: vc1.c:get_bits64
Unexecuted instantiation: vc1data.c:get_bits64
Unexecuted instantiation: dca.c:get_bits64
Unexecuted instantiation: dca_exss.c:get_bits64
Unexecuted instantiation: dolby_e_parse.c:get_bits64
Unexecuted instantiation: ffv1.c:get_bits64
Unexecuted instantiation: ffv1_parse.c:get_bits64
flac.c:get_bits64
Line
Count
Source
457
170
{
458
170
    if (n <= 32) {
459
0
        return get_bits_long(s, n);
460
170
    } else {
461
#ifdef BITSTREAM_READER_LE
462
        uint64_t ret = get_bits_long(s, 32);
463
        return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
464
#else
465
170
        uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
466
170
        return ret | get_bits_long(s, 32);
467
170
#endif
468
170
    }
469
170
}
Unexecuted instantiation: h2645_sei.c:get_bits64
Unexecuted instantiation: parse.c:get_bits64
Unexecuted instantiation: jpegxl_parse.c:get_bits64
Unexecuted instantiation: aom_film_grain.c:get_bits64
Unexecuted instantiation: dynamic_hdr_vivid.c:get_bits64
Unexecuted instantiation: hdr_dynamic_metadata.c:get_bits64
Unexecuted instantiation: av1dec.c:get_bits64
Unexecuted instantiation: bit.c:get_bits64
Unexecuted instantiation: dtsdec.c:get_bits64
Unexecuted instantiation: dtshddec.c:get_bits64
Unexecuted instantiation: h264dec.c:get_bits64
Unexecuted instantiation: hls_sample_encryption.c:get_bits64
Unexecuted instantiation: isom.c:get_bits64
Unexecuted instantiation: matroskadec.c:get_bits64
Unexecuted instantiation: mlpdec.c:get_bits64
Unexecuted instantiation: mov.c:get_bits64
Unexecuted instantiation: mpc8.c:get_bits64
Unexecuted instantiation: mpegts.c:get_bits64
Unexecuted instantiation: oggparsetheora.c:get_bits64
Unexecuted instantiation: shortendec.c:get_bits64
Unexecuted instantiation: swfdec.c:get_bits64
takdec.c:get_bits64
Line
Count
Source
457
575
{
458
575
    if (n <= 32) {
459
0
        return get_bits_long(s, n);
460
575
    } else {
461
575
#ifdef BITSTREAM_READER_LE
462
575
        uint64_t ret = get_bits_long(s, 32);
463
575
        return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
464
#else
465
        uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
466
        return ret | get_bits_long(s, 32);
467
#endif
468
575
    }
469
575
}
iamf_parse.c:get_bits64
Line
Count
Source
457
16
{
458
16
    if (n <= 32) {
459
0
        return get_bits_long(s, n);
460
16
    } else {
461
#ifdef BITSTREAM_READER_LE
462
        uint64_t ret = get_bits_long(s, 32);
463
        return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
464
#else
465
16
        uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
466
16
        return ret | get_bits_long(s, 32);
467
16
#endif
468
16
    }
469
16
}
Unexecuted instantiation: dirac.c:get_bits64
Unexecuted instantiation: atrac9dec.c:get_bits64
Unexecuted instantiation: enc.c:get_bits64
Unexecuted instantiation: enc_psy.c:get_bits64
Unexecuted instantiation: pvq.c:get_bits64
Unexecuted instantiation: rc.c:get_bits64
Unexecuted instantiation: celt.c:get_bits64
Unexecuted instantiation: gsmdec.c:get_bits64
Unexecuted instantiation: msgsmdec.c:get_bits64
Unexecuted instantiation: imc.c:get_bits64
Unexecuted instantiation: adpcm.c:get_bits64
Unexecuted instantiation: wmaenc.c:get_bits64
Unexecuted instantiation: wma.c:get_bits64
Unexecuted instantiation: cfhd.c:get_bits64
Unexecuted instantiation: wavarc.c:get_bits64
Unexecuted instantiation: escape130.c:get_bits64
Unexecuted instantiation: asvdec.c:get_bits64
Unexecuted instantiation: diracdec.c:get_bits64
Unexecuted instantiation: dirac_arith.c:get_bits64
Unexecuted instantiation: wmadec.c:get_bits64
Unexecuted instantiation: aacenc.c:get_bits64
Unexecuted instantiation: imm4.c:get_bits64
Unexecuted instantiation: exr.c:get_bits64
Unexecuted instantiation: aacdec.c:get_bits64
Unexecuted instantiation: aacdec_fixed.c:get_bits64
Unexecuted instantiation: aacdec_float.c:get_bits64
Unexecuted instantiation: aacdec_tab.c:get_bits64
Unexecuted instantiation: aacdec_usac.c:get_bits64
Unexecuted instantiation: aacdec_usac_mps212.c:get_bits64
Unexecuted instantiation: aacps_common.c:get_bits64
Unexecuted instantiation: aacsbr.c:get_bits64
Unexecuted instantiation: aacsbr_fixed.c:get_bits64
Unexecuted instantiation: aacdec_ac.c:get_bits64
Unexecuted instantiation: aacdec_lpd.c:get_bits64
Unexecuted instantiation: aacps_fixed.c:get_bits64
Unexecuted instantiation: aacps_float.c:get_bits64
Unexecuted instantiation: mjpegdec.c:get_bits64
Unexecuted instantiation: mjpegdec_common.c:get_bits64
Unexecuted instantiation: jpeglsdec.c:get_bits64
Unexecuted instantiation: jvdec.c:get_bits64
Unexecuted instantiation: rdt.c:get_bits64
Unexecuted instantiation: rtpdec_h261.c:get_bits64
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bits64
Unexecuted instantiation: rtpdec_latm.c:get_bits64
Unexecuted instantiation: rtpdec_mpeg4.c:get_bits64
Unexecuted instantiation: rtpdec_qt.c:get_bits64
Unexecuted instantiation: h264_cavlc.c:get_bits64
Unexecuted instantiation: h264_direct.c:get_bits64
Unexecuted instantiation: h264_mb.c:get_bits64
Unexecuted instantiation: h264_picture.c:get_bits64
Unexecuted instantiation: h264_refs.c:get_bits64
Unexecuted instantiation: h264_slice.c:get_bits64
Unexecuted instantiation: h264_cabac.c:get_bits64
Unexecuted instantiation: h264_loopfilter.c:get_bits64
Unexecuted instantiation: alsdec.c:get_bits64
Unexecuted instantiation: bgmc.c:get_bits64
Unexecuted instantiation: mlz.c:get_bits64
Unexecuted instantiation: bonk.c:get_bits64
Unexecuted instantiation: mxpegdec.c:get_bits64
Unexecuted instantiation: rv30.c:get_bits64
Unexecuted instantiation: rv34.c:get_bits64
Unexecuted instantiation: indeo3.c:get_bits64
Unexecuted instantiation: eamad.c:get_bits64
Unexecuted instantiation: mpeg12.c:get_bits64
Unexecuted instantiation: g726.c:get_bits64
Unexecuted instantiation: vc1dec.c:get_bits64
Unexecuted instantiation: vc1_block.c:get_bits64
Unexecuted instantiation: vc1_loopfilter.c:get_bits64
Unexecuted instantiation: vc1_mc.c:get_bits64
Unexecuted instantiation: vc1_pred.c:get_bits64
Unexecuted instantiation: mpegaudiodec_float.c:get_bits64
Unexecuted instantiation: huffyuvdec.c:get_bits64
Unexecuted instantiation: speexdec.c:get_bits64
Unexecuted instantiation: atrac3plusdec.c:get_bits64
Unexecuted instantiation: atrac3plusdsp.c:get_bits64
Unexecuted instantiation: atrac3plus.c:get_bits64
Unexecuted instantiation: mss4.c:get_bits64
Unexecuted instantiation: tiff.c:get_bits64
Unexecuted instantiation: faxcompr.c:get_bits64
Unexecuted instantiation: ac3dec_float.c:get_bits64
Unexecuted instantiation: on2avc.c:get_bits64
Unexecuted instantiation: smacker.c:get_bits64
Unexecuted instantiation: dvbsubdec.c:get_bits64
Unexecuted instantiation: mss1.c:get_bits64
Unexecuted instantiation: mss12.c:get_bits64
Unexecuted instantiation: mss2.c:get_bits64
Unexecuted instantiation: mdec.c:get_bits64
Unexecuted instantiation: osq.c:get_bits64
Unexecuted instantiation: vp6.c:get_bits64
Unexecuted instantiation: vp56.c:get_bits64
Unexecuted instantiation: vp56data.c:get_bits64
Unexecuted instantiation: loco.c:get_bits64
Unexecuted instantiation: vp5.c:get_bits64
Unexecuted instantiation: ra144dec.c:get_bits64
Unexecuted instantiation: indeo5.c:get_bits64
Unexecuted instantiation: ivi.c:get_bits64
Unexecuted instantiation: ivi_dsp.c:get_bits64
Unexecuted instantiation: apac.c:get_bits64
Unexecuted instantiation: clearvideo.c:get_bits64
Unexecuted instantiation: dxtory.c:get_bits64
Unexecuted instantiation: mpegaudiodec_fixed.c:get_bits64
Unexecuted instantiation: ralf.c:get_bits64
Unexecuted instantiation: pixlet.c:get_bits64
Unexecuted instantiation: wnv1.c:get_bits64
Unexecuted instantiation: qoadec.c:get_bits64
Unexecuted instantiation: vima.c:get_bits64
Unexecuted instantiation: leaddec.c:get_bits64
Unexecuted instantiation: eatqi.c:get_bits64
Unexecuted instantiation: lagarith.c:get_bits64
Unexecuted instantiation: lagarithrac.c:get_bits64
Unexecuted instantiation: dss_sp.c:get_bits64
Unexecuted instantiation: siren.c:get_bits64
Unexecuted instantiation: cavsdec.c:get_bits64
Unexecuted instantiation: cavs.c:get_bits64
Unexecuted instantiation: cavsdata.c:get_bits64
Unexecuted instantiation: hcom.c:get_bits64
Unexecuted instantiation: vp3.c:get_bits64
Unexecuted instantiation: webp.c:get_bits64
Unexecuted instantiation: eatgv.c:get_bits64
Unexecuted instantiation: eatgq.c:get_bits64
Unexecuted instantiation: sga.c:get_bits64
Unexecuted instantiation: binkaudio.c:get_bits64
Unexecuted instantiation: mpeg12dec.c:get_bits64
Unexecuted instantiation: indeo2.c:get_bits64
Unexecuted instantiation: 4xm.c:get_bits64
Unexecuted instantiation: wmalosslessdec.c:get_bits64
Unexecuted instantiation: ilbcdec.c:get_bits64
Unexecuted instantiation: hevcdec.c:get_bits64
Unexecuted instantiation: mvs.c:get_bits64
Unexecuted instantiation: pred.c:get_bits64
Unexecuted instantiation: refs.c:get_bits64
Unexecuted instantiation: cabac.c:get_bits64
Unexecuted instantiation: dsp.c:get_bits64
Unexecuted instantiation: filter.c:get_bits64
Unexecuted instantiation: tscc2.c:get_bits64
Unexecuted instantiation: hqx.c:get_bits64
Unexecuted instantiation: mobiclip.c:get_bits64
Unexecuted instantiation: wmaprodec.c:get_bits64
Unexecuted instantiation: g729dec.c:get_bits64
Unexecuted instantiation: sipr.c:get_bits64
Unexecuted instantiation: g722dec.c:get_bits64
Unexecuted instantiation: nellymoserdec.c:get_bits64
Unexecuted instantiation: dcaenc.c:get_bits64
Unexecuted instantiation: dcaadpcm.c:get_bits64
Unexecuted instantiation: dcadata.c:get_bits64
Unexecuted instantiation: interplayvideo.c:get_bits64
Unexecuted instantiation: dec.c:get_bits64
Unexecuted instantiation: dec_celt.c:get_bits64
Unexecuted instantiation: silk.c:get_bits64
Unexecuted instantiation: mjpegbdec.c:get_bits64
Unexecuted instantiation: bink.c:get_bits64
Unexecuted instantiation: dvdsubdec.c:get_bits64
Unexecuted instantiation: rtjpeg.c:get_bits64
Unexecuted instantiation: truespeech.c:get_bits64
Unexecuted instantiation: metasound.c:get_bits64
Unexecuted instantiation: escape124.c:get_bits64
Unexecuted instantiation: cllc.c:get_bits64
Unexecuted instantiation: dvdec.c:get_bits64
Unexecuted instantiation: tta.c:get_bits64
Unexecuted instantiation: fraps.c:get_bits64
Unexecuted instantiation: motionpixels.c:get_bits64
Unexecuted instantiation: vp9.c:get_bits64
Unexecuted instantiation: vp9block.c:get_bits64
Unexecuted instantiation: vp9data.c:get_bits64
Unexecuted instantiation: vp9lpf.c:get_bits64
Unexecuted instantiation: vp9mvs.c:get_bits64
Unexecuted instantiation: vp9prob.c:get_bits64
Unexecuted instantiation: vp9recon.c:get_bits64
Unexecuted instantiation: ffv1dec.c:get_bits64
Unexecuted instantiation: intra_utils.c:get_bits64
Unexecuted instantiation: thread.c:get_bits64
Unexecuted instantiation: ctu.c:get_bits64
Unexecuted instantiation: inter.c:get_bits64
Unexecuted instantiation: intra.c:get_bits64
Unexecuted instantiation: wmavoice.c:get_bits64
Unexecuted instantiation: rawdec.c:get_bits64
Unexecuted instantiation: svq1dec.c:get_bits64
Unexecuted instantiation: mpc7.c:get_bits64
Unexecuted instantiation: truemotion2rt.c:get_bits64
Unexecuted instantiation: adxdec.c:get_bits64
Unexecuted instantiation: rv40.c:get_bits64
Unexecuted instantiation: xsubdec.c:get_bits64
Unexecuted instantiation: notchlc.c:get_bits64
Unexecuted instantiation: aic.c:get_bits64
Unexecuted instantiation: vqcdec.c:get_bits64
Unexecuted instantiation: dolby_e.c:get_bits64
Unexecuted instantiation: proresdec.c:get_bits64
Unexecuted instantiation: evrcdec.c:get_bits64
Unexecuted instantiation: dnxhddec.c:get_bits64
Unexecuted instantiation: dcadec.c:get_bits64
Unexecuted instantiation: dca_core.c:get_bits64
Unexecuted instantiation: dca_lbr.c:get_bits64
Unexecuted instantiation: dca_xll.c:get_bits64
Unexecuted instantiation: mlpenc.c:get_bits64
Unexecuted instantiation: atrac3.c:get_bits64
vorbisdec.c:get_bits64
Line
Count
Source
457
35.4k
{
458
35.4k
    if (n <= 32) {
459
12.1k
        return get_bits_long(s, n);
460
23.3k
    } else {
461
23.3k
#ifdef BITSTREAM_READER_LE
462
23.3k
        uint64_t ret = get_bits_long(s, 32);
463
23.3k
        return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
464
#else
465
        uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
466
        return ret | get_bits_long(s, 32);
467
#endif
468
23.3k
    }
469
35.4k
}
Unexecuted instantiation: flashsv.c:get_bits64
Unexecuted instantiation: wavpack.c:get_bits64
Unexecuted instantiation: speedhqdec.c:get_bits64
Unexecuted instantiation: g723_1dec.c:get_bits64
Unexecuted instantiation: g2meet.c:get_bits64
Unexecuted instantiation: shorten.c:get_bits64
Unexecuted instantiation: indeo4.c:get_bits64
Unexecuted instantiation: sp5xdec.c:get_bits64
Unexecuted instantiation: atrac1.c:get_bits64
Unexecuted instantiation: apv_decode.c:get_bits64
Unexecuted instantiation: apv_entropy.c:get_bits64
Unexecuted instantiation: avs.c:get_bits64
Unexecuted instantiation: rv60dec.c:get_bits64
Unexecuted instantiation: alac.c:get_bits64
Unexecuted instantiation: tiertexseqv.c:get_bits64
Unexecuted instantiation: ffv1enc.c:get_bits64
Unexecuted instantiation: hcadec.c:get_bits64
Unexecuted instantiation: pcx.c:get_bits64
Unexecuted instantiation: qcelpdec.c:get_bits64
flacdec.c:get_bits64
Line
Count
Source
457
22.8M
{
458
22.8M
    if (n <= 32) {
459
0
        return get_bits_long(s, n);
460
22.8M
    } else {
461
#ifdef BITSTREAM_READER_LE
462
        uint64_t ret = get_bits_long(s, 32);
463
        return ret | (uint64_t) get_bits_long(s, n - 32) << 32;
464
#else
465
22.8M
        uint64_t ret = (uint64_t) get_bits_long(s, n - 32) << 32;
466
22.8M
        return ret | get_bits_long(s, 32);
467
22.8M
#endif
468
22.8M
    }
469
22.8M
}
Unexecuted instantiation: ac3dec_fixed.c:get_bits64
Unexecuted instantiation: midivid.c:get_bits64
Unexecuted instantiation: mimic.c:get_bits64
Unexecuted instantiation: fic.c:get_bits64
Unexecuted instantiation: qdmc.c:get_bits64
Unexecuted instantiation: ra288.c:get_bits64
Unexecuted instantiation: interplayacm.c:get_bits64
Unexecuted instantiation: ylc.c:get_bits64
Unexecuted instantiation: ftr.c:get_bits64
Unexecuted instantiation: agm.c:get_bits64
Unexecuted instantiation: xan.c:get_bits64
Unexecuted instantiation: svq3.c:get_bits64
Unexecuted instantiation: cri.c:get_bits64
Unexecuted instantiation: qdm2.c:get_bits64
Unexecuted instantiation: cljrdec.c:get_bits64
Unexecuted instantiation: g728dec.c:get_bits64
Unexecuted instantiation: cook.c:get_bits64
Unexecuted instantiation: twinvqdec.c:get_bits64
Unexecuted instantiation: hq_hqa.c:get_bits64
Unexecuted instantiation: cdxl.c:get_bits64
Unexecuted instantiation: vble.c:get_bits64
Unexecuted instantiation: mv30.c:get_bits64
Unexecuted instantiation: apedec.c:get_bits64
Unexecuted instantiation: h261dec.c:get_bits64
Unexecuted instantiation: dstdec.c:get_bits64
Unexecuted instantiation: jpeglsenc.c:get_bits64
Unexecuted instantiation: truemotion2.c:get_bits64
470
471
/**
472
 * Read 0-32 bits as a signed integer.
473
 */
474
static inline int get_sbits_long(GetBitContext *s, int n)
475
115M
{
476
    // sign_extend(x, 0) is undefined
477
115M
    if (!n)
478
1.46M
        return 0;
479
480
114M
    return sign_extend(get_bits_long(s, n), n);
481
115M
}
Unexecuted instantiation: mpegvideo_motion.c:get_sbits_long
Unexecuted instantiation: wmv2dec.c:get_sbits_long
Unexecuted instantiation: aac_adtstoasc.c:get_sbits_long
Unexecuted instantiation: dovi_rpu.c:get_sbits_long
Unexecuted instantiation: dovi_split.c:get_sbits_long
Unexecuted instantiation: dts2pts.c:get_sbits_long
Unexecuted instantiation: eac3_core.c:get_sbits_long
Unexecuted instantiation: evc_frame_merge.c:get_sbits_long
Unexecuted instantiation: extract_extradata.c:get_sbits_long
Unexecuted instantiation: h264_metadata.c:get_sbits_long
Unexecuted instantiation: h264_redundant_pps.c:get_sbits_long
Unexecuted instantiation: h265_metadata.c:get_sbits_long
Unexecuted instantiation: h266_metadata.c:get_sbits_long
Unexecuted instantiation: lcevc_merge.c:get_sbits_long
Unexecuted instantiation: lcevc_metadata.c:get_sbits_long
Unexecuted instantiation: remove_extradata.c:get_sbits_long
Unexecuted instantiation: truehd_core.c:get_sbits_long
Unexecuted instantiation: vp9_raw_reorder.c:get_sbits_long
Unexecuted instantiation: vp9_superframe.c:get_sbits_long
Unexecuted instantiation: vp9_superframe_split.c:get_sbits_long
cbs.c:get_sbits_long
Line
Count
Source
475
5.48M
{
476
    // sign_extend(x, 0) is undefined
477
5.48M
    if (!n)
478
0
        return 0;
479
480
5.48M
    return sign_extend(get_bits_long(s, n), n);
481
5.48M
}
Unexecuted instantiation: cbs_apv.c:get_sbits_long
Unexecuted instantiation: cbs_av1.c:get_sbits_long
Unexecuted instantiation: cbs_h264.c:get_sbits_long
Unexecuted instantiation: cbs_h2645.c:get_sbits_long
Unexecuted instantiation: cbs_h265.c:get_sbits_long
Unexecuted instantiation: cbs_h266.c:get_sbits_long
Unexecuted instantiation: cbs_lcevc.c:get_sbits_long
Unexecuted instantiation: cbs_mpeg2.c:get_sbits_long
Unexecuted instantiation: cbs_sei.c:get_sbits_long
Unexecuted instantiation: cbs_vp8.c:get_sbits_long
Unexecuted instantiation: cbs_vp9.c:get_sbits_long
Unexecuted instantiation: dovi_rpudec.c:get_sbits_long
Unexecuted instantiation: evc_parse.c:get_sbits_long
Unexecuted instantiation: evc_ps.c:get_sbits_long
Unexecuted instantiation: h263dec.c:get_sbits_long
Unexecuted instantiation: h2645_parse.c:get_sbits_long
Unexecuted instantiation: h264_parse.c:get_sbits_long
Unexecuted instantiation: h264_ps.c:get_sbits_long
Unexecuted instantiation: h264data.c:get_sbits_long
Unexecuted instantiation: h265_profile_level.c:get_sbits_long
Unexecuted instantiation: ps.c:get_sbits_long
Unexecuted instantiation: intelh263dec.c:get_sbits_long
Unexecuted instantiation: intrax8.c:get_sbits_long
Unexecuted instantiation: ituh263dec.c:get_sbits_long
Unexecuted instantiation: mlp_parse.c:get_sbits_long
Unexecuted instantiation: mpeg4audio.c:get_sbits_long
Unexecuted instantiation: mpeg4videodec.c:get_sbits_long
Unexecuted instantiation: mpeg_er.c:get_sbits_long
Unexecuted instantiation: mpegvideo_dec.c:get_sbits_long
Unexecuted instantiation: msmpeg4dec.c:get_sbits_long
Unexecuted instantiation: rv10.c:get_sbits_long
Unexecuted instantiation: ac3_parser.c:get_sbits_long
Unexecuted instantiation: adts_header.c:get_sbits_long
Unexecuted instantiation: av1_parse.c:get_sbits_long
Unexecuted instantiation: flvdec.c:get_sbits_long
Unexecuted instantiation: h2645_vui.c:get_sbits_long
Unexecuted instantiation: vc1_parser.c:get_sbits_long
Unexecuted instantiation: vorbis_parser.c:get_sbits_long
Unexecuted instantiation: vp9_parser.c:get_sbits_long
Unexecuted instantiation: vvc_parser.c:get_sbits_long
Unexecuted instantiation: aac_ac3_parser.c:get_sbits_long
Unexecuted instantiation: av1_parser.c:get_sbits_long
Unexecuted instantiation: avs2_parser.c:get_sbits_long
Unexecuted instantiation: avs3_parser.c:get_sbits_long
Unexecuted instantiation: cavs_parser.c:get_sbits_long
Unexecuted instantiation: dca_parser.c:get_sbits_long
Unexecuted instantiation: dolby_e_parser.c:get_sbits_long
Unexecuted instantiation: evc_parser.c:get_sbits_long
Unexecuted instantiation: ffv1_parser.c:get_sbits_long
Unexecuted instantiation: flac_parser.c:get_sbits_long
Unexecuted instantiation: ftr_parser.c:get_sbits_long
Unexecuted instantiation: h264_parser.c:get_sbits_long
Unexecuted instantiation: h264_sei.c:get_sbits_long
Unexecuted instantiation: h264idct.c:get_sbits_long
Unexecuted instantiation: parser.c:get_sbits_long
Unexecuted instantiation: sei.c:get_sbits_long
Unexecuted instantiation: jpegxl_parser.c:get_sbits_long
Unexecuted instantiation: jpegxs_parser.c:get_sbits_long
Unexecuted instantiation: lcevc_parser.c:get_sbits_long
Unexecuted instantiation: mlp_parser.c:get_sbits_long
Unexecuted instantiation: mpeg4video_parser.c:get_sbits_long
Unexecuted instantiation: vc1.c:get_sbits_long
Unexecuted instantiation: vc1data.c:get_sbits_long
Unexecuted instantiation: dca.c:get_sbits_long
Unexecuted instantiation: dca_exss.c:get_sbits_long
Unexecuted instantiation: dolby_e_parse.c:get_sbits_long
Unexecuted instantiation: ffv1.c:get_sbits_long
Unexecuted instantiation: ffv1_parse.c:get_sbits_long
Unexecuted instantiation: flac.c:get_sbits_long
Unexecuted instantiation: h2645_sei.c:get_sbits_long
Unexecuted instantiation: parse.c:get_sbits_long
Unexecuted instantiation: jpegxl_parse.c:get_sbits_long
Unexecuted instantiation: aom_film_grain.c:get_sbits_long
Unexecuted instantiation: dynamic_hdr_vivid.c:get_sbits_long
Unexecuted instantiation: hdr_dynamic_metadata.c:get_sbits_long
Unexecuted instantiation: av1dec.c:get_sbits_long
Unexecuted instantiation: bit.c:get_sbits_long
Unexecuted instantiation: dtsdec.c:get_sbits_long
Unexecuted instantiation: dtshddec.c:get_sbits_long
Unexecuted instantiation: h264dec.c:get_sbits_long
Unexecuted instantiation: hls_sample_encryption.c:get_sbits_long
Unexecuted instantiation: isom.c:get_sbits_long
Unexecuted instantiation: matroskadec.c:get_sbits_long
Unexecuted instantiation: mlpdec.c:get_sbits_long
Unexecuted instantiation: mov.c:get_sbits_long
Unexecuted instantiation: mpc8.c:get_sbits_long
Unexecuted instantiation: mpegts.c:get_sbits_long
Unexecuted instantiation: oggparsetheora.c:get_sbits_long
Unexecuted instantiation: shortendec.c:get_sbits_long
Unexecuted instantiation: swfdec.c:get_sbits_long
Unexecuted instantiation: takdec.c:get_sbits_long
Unexecuted instantiation: iamf_parse.c:get_sbits_long
Unexecuted instantiation: dirac.c:get_sbits_long
Unexecuted instantiation: atrac9dec.c:get_sbits_long
Unexecuted instantiation: enc.c:get_sbits_long
Unexecuted instantiation: enc_psy.c:get_sbits_long
Unexecuted instantiation: pvq.c:get_sbits_long
Unexecuted instantiation: rc.c:get_sbits_long
Unexecuted instantiation: celt.c:get_sbits_long
Unexecuted instantiation: gsmdec.c:get_sbits_long
Unexecuted instantiation: msgsmdec.c:get_sbits_long
Unexecuted instantiation: imc.c:get_sbits_long
Unexecuted instantiation: adpcm.c:get_sbits_long
Unexecuted instantiation: wmaenc.c:get_sbits_long
Unexecuted instantiation: wma.c:get_sbits_long
Unexecuted instantiation: cfhd.c:get_sbits_long
Unexecuted instantiation: wavarc.c:get_sbits_long
Unexecuted instantiation: escape130.c:get_sbits_long
Unexecuted instantiation: asvdec.c:get_sbits_long
Unexecuted instantiation: diracdec.c:get_sbits_long
Unexecuted instantiation: dirac_arith.c:get_sbits_long
Unexecuted instantiation: wmadec.c:get_sbits_long
Unexecuted instantiation: aacenc.c:get_sbits_long
Unexecuted instantiation: imm4.c:get_sbits_long
Unexecuted instantiation: exr.c:get_sbits_long
Unexecuted instantiation: aacdec.c:get_sbits_long
Unexecuted instantiation: aacdec_fixed.c:get_sbits_long
Unexecuted instantiation: aacdec_float.c:get_sbits_long
Unexecuted instantiation: aacdec_tab.c:get_sbits_long
Unexecuted instantiation: aacdec_usac.c:get_sbits_long
Unexecuted instantiation: aacdec_usac_mps212.c:get_sbits_long
Unexecuted instantiation: aacps_common.c:get_sbits_long
Unexecuted instantiation: aacsbr.c:get_sbits_long
Unexecuted instantiation: aacsbr_fixed.c:get_sbits_long
Unexecuted instantiation: aacdec_ac.c:get_sbits_long
Unexecuted instantiation: aacdec_lpd.c:get_sbits_long
Unexecuted instantiation: aacps_fixed.c:get_sbits_long
Unexecuted instantiation: aacps_float.c:get_sbits_long
Unexecuted instantiation: mjpegdec.c:get_sbits_long
Unexecuted instantiation: mjpegdec_common.c:get_sbits_long
Unexecuted instantiation: jpeglsdec.c:get_sbits_long
Unexecuted instantiation: jvdec.c:get_sbits_long
Unexecuted instantiation: rdt.c:get_sbits_long
Unexecuted instantiation: rtpdec_h261.c:get_sbits_long
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_sbits_long
Unexecuted instantiation: rtpdec_latm.c:get_sbits_long
Unexecuted instantiation: rtpdec_mpeg4.c:get_sbits_long
Unexecuted instantiation: rtpdec_qt.c:get_sbits_long
Unexecuted instantiation: h264_cavlc.c:get_sbits_long
Unexecuted instantiation: h264_direct.c:get_sbits_long
Unexecuted instantiation: h264_mb.c:get_sbits_long
Unexecuted instantiation: h264_picture.c:get_sbits_long
Unexecuted instantiation: h264_refs.c:get_sbits_long
Unexecuted instantiation: h264_slice.c:get_sbits_long
Unexecuted instantiation: h264_cabac.c:get_sbits_long
Unexecuted instantiation: h264_loopfilter.c:get_sbits_long
alsdec.c:get_sbits_long
Line
Count
Source
475
96.2k
{
476
    // sign_extend(x, 0) is undefined
477
96.2k
    if (!n)
478
0
        return 0;
479
480
96.2k
    return sign_extend(get_bits_long(s, n), n);
481
96.2k
}
Unexecuted instantiation: bgmc.c:get_sbits_long
Unexecuted instantiation: mlz.c:get_sbits_long
Unexecuted instantiation: bonk.c:get_sbits_long
Unexecuted instantiation: mxpegdec.c:get_sbits_long
Unexecuted instantiation: rv30.c:get_sbits_long
Unexecuted instantiation: rv34.c:get_sbits_long
Unexecuted instantiation: indeo3.c:get_sbits_long
Unexecuted instantiation: eamad.c:get_sbits_long
Unexecuted instantiation: mpeg12.c:get_sbits_long
Unexecuted instantiation: g726.c:get_sbits_long
Unexecuted instantiation: vc1dec.c:get_sbits_long
Unexecuted instantiation: vc1_block.c:get_sbits_long
Unexecuted instantiation: vc1_loopfilter.c:get_sbits_long
Unexecuted instantiation: vc1_mc.c:get_sbits_long
Unexecuted instantiation: vc1_pred.c:get_sbits_long
Unexecuted instantiation: mpegaudiodec_float.c:get_sbits_long
Unexecuted instantiation: huffyuvdec.c:get_sbits_long
Unexecuted instantiation: speexdec.c:get_sbits_long
Unexecuted instantiation: atrac3plusdec.c:get_sbits_long
Unexecuted instantiation: atrac3plusdsp.c:get_sbits_long
Unexecuted instantiation: atrac3plus.c:get_sbits_long
Unexecuted instantiation: mss4.c:get_sbits_long
Unexecuted instantiation: tiff.c:get_sbits_long
Unexecuted instantiation: faxcompr.c:get_sbits_long
Unexecuted instantiation: ac3dec_float.c:get_sbits_long
Unexecuted instantiation: on2avc.c:get_sbits_long
Unexecuted instantiation: smacker.c:get_sbits_long
Unexecuted instantiation: dvbsubdec.c:get_sbits_long
Unexecuted instantiation: mss1.c:get_sbits_long
Unexecuted instantiation: mss12.c:get_sbits_long
Unexecuted instantiation: mss2.c:get_sbits_long
Unexecuted instantiation: mdec.c:get_sbits_long
osq.c:get_sbits_long
Line
Count
Source
475
1.49M
{
476
    // sign_extend(x, 0) is undefined
477
1.49M
    if (!n)
478
0
        return 0;
479
480
1.49M
    return sign_extend(get_bits_long(s, n), n);
481
1.49M
}
Unexecuted instantiation: vp6.c:get_sbits_long
Unexecuted instantiation: vp56.c:get_sbits_long
Unexecuted instantiation: vp56data.c:get_sbits_long
Unexecuted instantiation: loco.c:get_sbits_long
Unexecuted instantiation: vp5.c:get_sbits_long
Unexecuted instantiation: ra144dec.c:get_sbits_long
Unexecuted instantiation: indeo5.c:get_sbits_long
Unexecuted instantiation: ivi.c:get_sbits_long
Unexecuted instantiation: ivi_dsp.c:get_sbits_long
Unexecuted instantiation: apac.c:get_sbits_long
Unexecuted instantiation: clearvideo.c:get_sbits_long
Unexecuted instantiation: dxtory.c:get_sbits_long
Unexecuted instantiation: mpegaudiodec_fixed.c:get_sbits_long
Unexecuted instantiation: ralf.c:get_sbits_long
Unexecuted instantiation: pixlet.c:get_sbits_long
Unexecuted instantiation: wnv1.c:get_sbits_long
Unexecuted instantiation: qoadec.c:get_sbits_long
Unexecuted instantiation: vima.c:get_sbits_long
Unexecuted instantiation: leaddec.c:get_sbits_long
Unexecuted instantiation: eatqi.c:get_sbits_long
Unexecuted instantiation: lagarith.c:get_sbits_long
Unexecuted instantiation: lagarithrac.c:get_sbits_long
Unexecuted instantiation: dss_sp.c:get_sbits_long
Unexecuted instantiation: siren.c:get_sbits_long
Unexecuted instantiation: cavsdec.c:get_sbits_long
Unexecuted instantiation: cavs.c:get_sbits_long
Unexecuted instantiation: cavsdata.c:get_sbits_long
Unexecuted instantiation: hcom.c:get_sbits_long
Unexecuted instantiation: vp3.c:get_sbits_long
Unexecuted instantiation: webp.c:get_sbits_long
Unexecuted instantiation: eatgv.c:get_sbits_long
Unexecuted instantiation: eatgq.c:get_sbits_long
Unexecuted instantiation: sga.c:get_sbits_long
Unexecuted instantiation: binkaudio.c:get_sbits_long
Unexecuted instantiation: mpeg12dec.c:get_sbits_long
Unexecuted instantiation: indeo2.c:get_sbits_long
Unexecuted instantiation: 4xm.c:get_sbits_long
wmalosslessdec.c:get_sbits_long
Line
Count
Source
475
49.8M
{
476
    // sign_extend(x, 0) is undefined
477
49.8M
    if (!n)
478
0
        return 0;
479
480
49.8M
    return sign_extend(get_bits_long(s, n), n);
481
49.8M
}
Unexecuted instantiation: ilbcdec.c:get_sbits_long
Unexecuted instantiation: hevcdec.c:get_sbits_long
Unexecuted instantiation: mvs.c:get_sbits_long
Unexecuted instantiation: pred.c:get_sbits_long
Unexecuted instantiation: refs.c:get_sbits_long
Unexecuted instantiation: cabac.c:get_sbits_long
Unexecuted instantiation: dsp.c:get_sbits_long
Unexecuted instantiation: filter.c:get_sbits_long
Unexecuted instantiation: tscc2.c:get_sbits_long
Unexecuted instantiation: hqx.c:get_sbits_long
Unexecuted instantiation: mobiclip.c:get_sbits_long
Unexecuted instantiation: wmaprodec.c:get_sbits_long
Unexecuted instantiation: g729dec.c:get_sbits_long
Unexecuted instantiation: sipr.c:get_sbits_long
Unexecuted instantiation: g722dec.c:get_sbits_long
Unexecuted instantiation: nellymoserdec.c:get_sbits_long
Unexecuted instantiation: dcaenc.c:get_sbits_long
Unexecuted instantiation: dcaadpcm.c:get_sbits_long
Unexecuted instantiation: dcadata.c:get_sbits_long
Unexecuted instantiation: interplayvideo.c:get_sbits_long
Unexecuted instantiation: dec.c:get_sbits_long
Unexecuted instantiation: dec_celt.c:get_sbits_long
Unexecuted instantiation: silk.c:get_sbits_long
Unexecuted instantiation: mjpegbdec.c:get_sbits_long
Unexecuted instantiation: bink.c:get_sbits_long
Unexecuted instantiation: dvdsubdec.c:get_sbits_long
Unexecuted instantiation: rtjpeg.c:get_sbits_long
Unexecuted instantiation: truespeech.c:get_sbits_long
Unexecuted instantiation: metasound.c:get_sbits_long
Unexecuted instantiation: escape124.c:get_sbits_long
Unexecuted instantiation: cllc.c:get_sbits_long
Unexecuted instantiation: dvdec.c:get_sbits_long
Unexecuted instantiation: tta.c:get_sbits_long
Unexecuted instantiation: fraps.c:get_sbits_long
Unexecuted instantiation: motionpixels.c:get_sbits_long
Unexecuted instantiation: vp9.c:get_sbits_long
Unexecuted instantiation: vp9block.c:get_sbits_long
Unexecuted instantiation: vp9data.c:get_sbits_long
Unexecuted instantiation: vp9lpf.c:get_sbits_long
Unexecuted instantiation: vp9mvs.c:get_sbits_long
Unexecuted instantiation: vp9prob.c:get_sbits_long
Unexecuted instantiation: vp9recon.c:get_sbits_long
Unexecuted instantiation: ffv1dec.c:get_sbits_long
Unexecuted instantiation: intra_utils.c:get_sbits_long
Unexecuted instantiation: thread.c:get_sbits_long
Unexecuted instantiation: ctu.c:get_sbits_long
Unexecuted instantiation: inter.c:get_sbits_long
Unexecuted instantiation: intra.c:get_sbits_long
Unexecuted instantiation: wmavoice.c:get_sbits_long
Unexecuted instantiation: rawdec.c:get_sbits_long
Unexecuted instantiation: svq1dec.c:get_sbits_long
Unexecuted instantiation: mpc7.c:get_sbits_long
Unexecuted instantiation: truemotion2rt.c:get_sbits_long
Unexecuted instantiation: adxdec.c:get_sbits_long
Unexecuted instantiation: rv40.c:get_sbits_long
Unexecuted instantiation: xsubdec.c:get_sbits_long
Unexecuted instantiation: notchlc.c:get_sbits_long
Unexecuted instantiation: aic.c:get_sbits_long
Unexecuted instantiation: vqcdec.c:get_sbits_long
Unexecuted instantiation: dolby_e.c:get_sbits_long
Unexecuted instantiation: proresdec.c:get_sbits_long
Unexecuted instantiation: evrcdec.c:get_sbits_long
Unexecuted instantiation: dnxhddec.c:get_sbits_long
Unexecuted instantiation: dcadec.c:get_sbits_long
Unexecuted instantiation: dca_core.c:get_sbits_long
Unexecuted instantiation: dca_lbr.c:get_sbits_long
dca_xll.c:get_sbits_long
Line
Count
Source
475
68.7k
{
476
    // sign_extend(x, 0) is undefined
477
68.7k
    if (!n)
478
0
        return 0;
479
480
68.7k
    return sign_extend(get_bits_long(s, n), n);
481
68.7k
}
Unexecuted instantiation: mlpenc.c:get_sbits_long
Unexecuted instantiation: atrac3.c:get_sbits_long
Unexecuted instantiation: vorbisdec.c:get_sbits_long
Unexecuted instantiation: flashsv.c:get_sbits_long
Unexecuted instantiation: wavpack.c:get_sbits_long
Unexecuted instantiation: speedhqdec.c:get_sbits_long
Unexecuted instantiation: g723_1dec.c:get_sbits_long
Unexecuted instantiation: g2meet.c:get_sbits_long
Unexecuted instantiation: shorten.c:get_sbits_long
Unexecuted instantiation: indeo4.c:get_sbits_long
Unexecuted instantiation: sp5xdec.c:get_sbits_long
Unexecuted instantiation: atrac1.c:get_sbits_long
Unexecuted instantiation: apv_decode.c:get_sbits_long
Unexecuted instantiation: apv_entropy.c:get_sbits_long
Unexecuted instantiation: avs.c:get_sbits_long
Unexecuted instantiation: rv60dec.c:get_sbits_long
alac.c:get_sbits_long
Line
Count
Source
475
279k
{
476
    // sign_extend(x, 0) is undefined
477
279k
    if (!n)
478
0
        return 0;
479
480
279k
    return sign_extend(get_bits_long(s, n), n);
481
279k
}
Unexecuted instantiation: tiertexseqv.c:get_sbits_long
Unexecuted instantiation: ffv1enc.c:get_sbits_long
Unexecuted instantiation: hcadec.c:get_sbits_long
Unexecuted instantiation: pcx.c:get_sbits_long
Unexecuted instantiation: qcelpdec.c:get_sbits_long
flacdec.c:get_sbits_long
Line
Count
Source
475
58.4M
{
476
    // sign_extend(x, 0) is undefined
477
58.4M
    if (!n)
478
1.46M
        return 0;
479
480
57.0M
    return sign_extend(get_bits_long(s, n), n);
481
58.4M
}
Unexecuted instantiation: ac3dec_fixed.c:get_sbits_long
Unexecuted instantiation: midivid.c:get_sbits_long
Unexecuted instantiation: mimic.c:get_sbits_long
Unexecuted instantiation: fic.c:get_sbits_long
Unexecuted instantiation: qdmc.c:get_sbits_long
Unexecuted instantiation: ra288.c:get_sbits_long
Unexecuted instantiation: interplayacm.c:get_sbits_long
Unexecuted instantiation: ylc.c:get_sbits_long
Unexecuted instantiation: ftr.c:get_sbits_long
Unexecuted instantiation: agm.c:get_sbits_long
Unexecuted instantiation: xan.c:get_sbits_long
Unexecuted instantiation: svq3.c:get_sbits_long
Unexecuted instantiation: cri.c:get_sbits_long
Unexecuted instantiation: qdm2.c:get_sbits_long
Unexecuted instantiation: cljrdec.c:get_sbits_long
Unexecuted instantiation: g728dec.c:get_sbits_long
Unexecuted instantiation: cook.c:get_sbits_long
Unexecuted instantiation: twinvqdec.c:get_sbits_long
Unexecuted instantiation: hq_hqa.c:get_sbits_long
Unexecuted instantiation: cdxl.c:get_sbits_long
Unexecuted instantiation: vble.c:get_sbits_long
Unexecuted instantiation: mv30.c:get_sbits_long
Unexecuted instantiation: apedec.c:get_sbits_long
Unexecuted instantiation: h261dec.c:get_sbits_long
Unexecuted instantiation: dstdec.c:get_sbits_long
Unexecuted instantiation: jpeglsenc.c:get_sbits_long
Unexecuted instantiation: truemotion2.c:get_sbits_long
482
483
/**
484
 * Read 0-64 bits as a signed integer.
485
 */
486
static inline int64_t get_sbits64(GetBitContext *s, int n)
487
22.8M
{
488
    // sign_extend(x, 0) is undefined
489
22.8M
    if (!n)
490
0
        return 0;
491
492
22.8M
    return sign_extend64(get_bits64(s, n), n);
493
22.8M
}
Unexecuted instantiation: mpegvideo_motion.c:get_sbits64
Unexecuted instantiation: wmv2dec.c:get_sbits64
Unexecuted instantiation: aac_adtstoasc.c:get_sbits64
Unexecuted instantiation: dovi_rpu.c:get_sbits64
Unexecuted instantiation: dovi_split.c:get_sbits64
Unexecuted instantiation: dts2pts.c:get_sbits64
Unexecuted instantiation: eac3_core.c:get_sbits64
Unexecuted instantiation: evc_frame_merge.c:get_sbits64
Unexecuted instantiation: extract_extradata.c:get_sbits64
Unexecuted instantiation: h264_metadata.c:get_sbits64
Unexecuted instantiation: h264_redundant_pps.c:get_sbits64
Unexecuted instantiation: h265_metadata.c:get_sbits64
Unexecuted instantiation: h266_metadata.c:get_sbits64
Unexecuted instantiation: lcevc_merge.c:get_sbits64
Unexecuted instantiation: lcevc_metadata.c:get_sbits64
Unexecuted instantiation: remove_extradata.c:get_sbits64
Unexecuted instantiation: truehd_core.c:get_sbits64
Unexecuted instantiation: vp9_raw_reorder.c:get_sbits64
Unexecuted instantiation: vp9_superframe.c:get_sbits64
Unexecuted instantiation: vp9_superframe_split.c:get_sbits64
Unexecuted instantiation: cbs.c:get_sbits64
Unexecuted instantiation: cbs_apv.c:get_sbits64
Unexecuted instantiation: cbs_av1.c:get_sbits64
Unexecuted instantiation: cbs_h264.c:get_sbits64
Unexecuted instantiation: cbs_h2645.c:get_sbits64
Unexecuted instantiation: cbs_h265.c:get_sbits64
Unexecuted instantiation: cbs_h266.c:get_sbits64
Unexecuted instantiation: cbs_lcevc.c:get_sbits64
Unexecuted instantiation: cbs_mpeg2.c:get_sbits64
Unexecuted instantiation: cbs_sei.c:get_sbits64
Unexecuted instantiation: cbs_vp8.c:get_sbits64
Unexecuted instantiation: cbs_vp9.c:get_sbits64
Unexecuted instantiation: dovi_rpudec.c:get_sbits64
Unexecuted instantiation: evc_parse.c:get_sbits64
Unexecuted instantiation: evc_ps.c:get_sbits64
Unexecuted instantiation: h263dec.c:get_sbits64
Unexecuted instantiation: h2645_parse.c:get_sbits64
Unexecuted instantiation: h264_parse.c:get_sbits64
Unexecuted instantiation: h264_ps.c:get_sbits64
Unexecuted instantiation: h264data.c:get_sbits64
Unexecuted instantiation: h265_profile_level.c:get_sbits64
Unexecuted instantiation: ps.c:get_sbits64
Unexecuted instantiation: intelh263dec.c:get_sbits64
Unexecuted instantiation: intrax8.c:get_sbits64
Unexecuted instantiation: ituh263dec.c:get_sbits64
Unexecuted instantiation: mlp_parse.c:get_sbits64
Unexecuted instantiation: mpeg4audio.c:get_sbits64
Unexecuted instantiation: mpeg4videodec.c:get_sbits64
Unexecuted instantiation: mpeg_er.c:get_sbits64
Unexecuted instantiation: mpegvideo_dec.c:get_sbits64
Unexecuted instantiation: msmpeg4dec.c:get_sbits64
Unexecuted instantiation: rv10.c:get_sbits64
Unexecuted instantiation: ac3_parser.c:get_sbits64
Unexecuted instantiation: adts_header.c:get_sbits64
Unexecuted instantiation: av1_parse.c:get_sbits64
Unexecuted instantiation: flvdec.c:get_sbits64
Unexecuted instantiation: h2645_vui.c:get_sbits64
Unexecuted instantiation: vc1_parser.c:get_sbits64
Unexecuted instantiation: vorbis_parser.c:get_sbits64
Unexecuted instantiation: vp9_parser.c:get_sbits64
Unexecuted instantiation: vvc_parser.c:get_sbits64
Unexecuted instantiation: aac_ac3_parser.c:get_sbits64
Unexecuted instantiation: av1_parser.c:get_sbits64
Unexecuted instantiation: avs2_parser.c:get_sbits64
Unexecuted instantiation: avs3_parser.c:get_sbits64
Unexecuted instantiation: cavs_parser.c:get_sbits64
Unexecuted instantiation: dca_parser.c:get_sbits64
Unexecuted instantiation: dolby_e_parser.c:get_sbits64
Unexecuted instantiation: evc_parser.c:get_sbits64
Unexecuted instantiation: ffv1_parser.c:get_sbits64
Unexecuted instantiation: flac_parser.c:get_sbits64
Unexecuted instantiation: ftr_parser.c:get_sbits64
Unexecuted instantiation: h264_parser.c:get_sbits64
Unexecuted instantiation: h264_sei.c:get_sbits64
Unexecuted instantiation: h264idct.c:get_sbits64
Unexecuted instantiation: parser.c:get_sbits64
Unexecuted instantiation: sei.c:get_sbits64
Unexecuted instantiation: jpegxl_parser.c:get_sbits64
Unexecuted instantiation: jpegxs_parser.c:get_sbits64
Unexecuted instantiation: lcevc_parser.c:get_sbits64
Unexecuted instantiation: mlp_parser.c:get_sbits64
Unexecuted instantiation: mpeg4video_parser.c:get_sbits64
Unexecuted instantiation: vc1.c:get_sbits64
Unexecuted instantiation: vc1data.c:get_sbits64
Unexecuted instantiation: dca.c:get_sbits64
Unexecuted instantiation: dca_exss.c:get_sbits64
Unexecuted instantiation: dolby_e_parse.c:get_sbits64
Unexecuted instantiation: ffv1.c:get_sbits64
Unexecuted instantiation: ffv1_parse.c:get_sbits64
Unexecuted instantiation: flac.c:get_sbits64
Unexecuted instantiation: h2645_sei.c:get_sbits64
Unexecuted instantiation: parse.c:get_sbits64
Unexecuted instantiation: jpegxl_parse.c:get_sbits64
Unexecuted instantiation: aom_film_grain.c:get_sbits64
Unexecuted instantiation: dynamic_hdr_vivid.c:get_sbits64
Unexecuted instantiation: hdr_dynamic_metadata.c:get_sbits64
Unexecuted instantiation: av1dec.c:get_sbits64
Unexecuted instantiation: bit.c:get_sbits64
Unexecuted instantiation: dtsdec.c:get_sbits64
Unexecuted instantiation: dtshddec.c:get_sbits64
Unexecuted instantiation: h264dec.c:get_sbits64
Unexecuted instantiation: hls_sample_encryption.c:get_sbits64
Unexecuted instantiation: isom.c:get_sbits64
Unexecuted instantiation: matroskadec.c:get_sbits64
Unexecuted instantiation: mlpdec.c:get_sbits64
Unexecuted instantiation: mov.c:get_sbits64
Unexecuted instantiation: mpc8.c:get_sbits64
Unexecuted instantiation: mpegts.c:get_sbits64
Unexecuted instantiation: oggparsetheora.c:get_sbits64
Unexecuted instantiation: shortendec.c:get_sbits64
Unexecuted instantiation: swfdec.c:get_sbits64
Unexecuted instantiation: takdec.c:get_sbits64
Unexecuted instantiation: iamf_parse.c:get_sbits64
Unexecuted instantiation: dirac.c:get_sbits64
Unexecuted instantiation: atrac9dec.c:get_sbits64
Unexecuted instantiation: enc.c:get_sbits64
Unexecuted instantiation: enc_psy.c:get_sbits64
Unexecuted instantiation: pvq.c:get_sbits64
Unexecuted instantiation: rc.c:get_sbits64
Unexecuted instantiation: celt.c:get_sbits64
Unexecuted instantiation: gsmdec.c:get_sbits64
Unexecuted instantiation: msgsmdec.c:get_sbits64
Unexecuted instantiation: imc.c:get_sbits64
Unexecuted instantiation: adpcm.c:get_sbits64
Unexecuted instantiation: wmaenc.c:get_sbits64
Unexecuted instantiation: wma.c:get_sbits64
Unexecuted instantiation: cfhd.c:get_sbits64
Unexecuted instantiation: wavarc.c:get_sbits64
Unexecuted instantiation: escape130.c:get_sbits64
Unexecuted instantiation: asvdec.c:get_sbits64
Unexecuted instantiation: diracdec.c:get_sbits64
Unexecuted instantiation: dirac_arith.c:get_sbits64
Unexecuted instantiation: wmadec.c:get_sbits64
Unexecuted instantiation: aacenc.c:get_sbits64
Unexecuted instantiation: imm4.c:get_sbits64
Unexecuted instantiation: exr.c:get_sbits64
Unexecuted instantiation: aacdec.c:get_sbits64
Unexecuted instantiation: aacdec_fixed.c:get_sbits64
Unexecuted instantiation: aacdec_float.c:get_sbits64
Unexecuted instantiation: aacdec_tab.c:get_sbits64
Unexecuted instantiation: aacdec_usac.c:get_sbits64
Unexecuted instantiation: aacdec_usac_mps212.c:get_sbits64
Unexecuted instantiation: aacps_common.c:get_sbits64
Unexecuted instantiation: aacsbr.c:get_sbits64
Unexecuted instantiation: aacsbr_fixed.c:get_sbits64
Unexecuted instantiation: aacdec_ac.c:get_sbits64
Unexecuted instantiation: aacdec_lpd.c:get_sbits64
Unexecuted instantiation: aacps_fixed.c:get_sbits64
Unexecuted instantiation: aacps_float.c:get_sbits64
Unexecuted instantiation: mjpegdec.c:get_sbits64
Unexecuted instantiation: mjpegdec_common.c:get_sbits64
Unexecuted instantiation: jpeglsdec.c:get_sbits64
Unexecuted instantiation: jvdec.c:get_sbits64
Unexecuted instantiation: rdt.c:get_sbits64
Unexecuted instantiation: rtpdec_h261.c:get_sbits64
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_sbits64
Unexecuted instantiation: rtpdec_latm.c:get_sbits64
Unexecuted instantiation: rtpdec_mpeg4.c:get_sbits64
Unexecuted instantiation: rtpdec_qt.c:get_sbits64
Unexecuted instantiation: h264_cavlc.c:get_sbits64
Unexecuted instantiation: h264_direct.c:get_sbits64
Unexecuted instantiation: h264_mb.c:get_sbits64
Unexecuted instantiation: h264_picture.c:get_sbits64
Unexecuted instantiation: h264_refs.c:get_sbits64
Unexecuted instantiation: h264_slice.c:get_sbits64
Unexecuted instantiation: h264_cabac.c:get_sbits64
Unexecuted instantiation: h264_loopfilter.c:get_sbits64
Unexecuted instantiation: alsdec.c:get_sbits64
Unexecuted instantiation: bgmc.c:get_sbits64
Unexecuted instantiation: mlz.c:get_sbits64
Unexecuted instantiation: bonk.c:get_sbits64
Unexecuted instantiation: mxpegdec.c:get_sbits64
Unexecuted instantiation: rv30.c:get_sbits64
Unexecuted instantiation: rv34.c:get_sbits64
Unexecuted instantiation: indeo3.c:get_sbits64
Unexecuted instantiation: eamad.c:get_sbits64
Unexecuted instantiation: mpeg12.c:get_sbits64
Unexecuted instantiation: g726.c:get_sbits64
Unexecuted instantiation: vc1dec.c:get_sbits64
Unexecuted instantiation: vc1_block.c:get_sbits64
Unexecuted instantiation: vc1_loopfilter.c:get_sbits64
Unexecuted instantiation: vc1_mc.c:get_sbits64
Unexecuted instantiation: vc1_pred.c:get_sbits64
Unexecuted instantiation: mpegaudiodec_float.c:get_sbits64
Unexecuted instantiation: huffyuvdec.c:get_sbits64
Unexecuted instantiation: speexdec.c:get_sbits64
Unexecuted instantiation: atrac3plusdec.c:get_sbits64
Unexecuted instantiation: atrac3plusdsp.c:get_sbits64
Unexecuted instantiation: atrac3plus.c:get_sbits64
Unexecuted instantiation: mss4.c:get_sbits64
Unexecuted instantiation: tiff.c:get_sbits64
Unexecuted instantiation: faxcompr.c:get_sbits64
Unexecuted instantiation: ac3dec_float.c:get_sbits64
Unexecuted instantiation: on2avc.c:get_sbits64
Unexecuted instantiation: smacker.c:get_sbits64
Unexecuted instantiation: dvbsubdec.c:get_sbits64
Unexecuted instantiation: mss1.c:get_sbits64
Unexecuted instantiation: mss12.c:get_sbits64
Unexecuted instantiation: mss2.c:get_sbits64
Unexecuted instantiation: mdec.c:get_sbits64
Unexecuted instantiation: osq.c:get_sbits64
Unexecuted instantiation: vp6.c:get_sbits64
Unexecuted instantiation: vp56.c:get_sbits64
Unexecuted instantiation: vp56data.c:get_sbits64
Unexecuted instantiation: loco.c:get_sbits64
Unexecuted instantiation: vp5.c:get_sbits64
Unexecuted instantiation: ra144dec.c:get_sbits64
Unexecuted instantiation: indeo5.c:get_sbits64
Unexecuted instantiation: ivi.c:get_sbits64
Unexecuted instantiation: ivi_dsp.c:get_sbits64
Unexecuted instantiation: apac.c:get_sbits64
Unexecuted instantiation: clearvideo.c:get_sbits64
Unexecuted instantiation: dxtory.c:get_sbits64
Unexecuted instantiation: mpegaudiodec_fixed.c:get_sbits64
Unexecuted instantiation: ralf.c:get_sbits64
Unexecuted instantiation: pixlet.c:get_sbits64
Unexecuted instantiation: wnv1.c:get_sbits64
Unexecuted instantiation: qoadec.c:get_sbits64
Unexecuted instantiation: vima.c:get_sbits64
Unexecuted instantiation: leaddec.c:get_sbits64
Unexecuted instantiation: eatqi.c:get_sbits64
Unexecuted instantiation: lagarith.c:get_sbits64
Unexecuted instantiation: lagarithrac.c:get_sbits64
Unexecuted instantiation: dss_sp.c:get_sbits64
Unexecuted instantiation: siren.c:get_sbits64
Unexecuted instantiation: cavsdec.c:get_sbits64
Unexecuted instantiation: cavs.c:get_sbits64
Unexecuted instantiation: cavsdata.c:get_sbits64
Unexecuted instantiation: hcom.c:get_sbits64
Unexecuted instantiation: vp3.c:get_sbits64
Unexecuted instantiation: webp.c:get_sbits64
Unexecuted instantiation: eatgv.c:get_sbits64
Unexecuted instantiation: eatgq.c:get_sbits64
Unexecuted instantiation: sga.c:get_sbits64
Unexecuted instantiation: binkaudio.c:get_sbits64
Unexecuted instantiation: mpeg12dec.c:get_sbits64
Unexecuted instantiation: indeo2.c:get_sbits64
Unexecuted instantiation: 4xm.c:get_sbits64
Unexecuted instantiation: wmalosslessdec.c:get_sbits64
Unexecuted instantiation: ilbcdec.c:get_sbits64
Unexecuted instantiation: hevcdec.c:get_sbits64
Unexecuted instantiation: mvs.c:get_sbits64
Unexecuted instantiation: pred.c:get_sbits64
Unexecuted instantiation: refs.c:get_sbits64
Unexecuted instantiation: cabac.c:get_sbits64
Unexecuted instantiation: dsp.c:get_sbits64
Unexecuted instantiation: filter.c:get_sbits64
Unexecuted instantiation: tscc2.c:get_sbits64
Unexecuted instantiation: hqx.c:get_sbits64
Unexecuted instantiation: mobiclip.c:get_sbits64
Unexecuted instantiation: wmaprodec.c:get_sbits64
Unexecuted instantiation: g729dec.c:get_sbits64
Unexecuted instantiation: sipr.c:get_sbits64
Unexecuted instantiation: g722dec.c:get_sbits64
Unexecuted instantiation: nellymoserdec.c:get_sbits64
Unexecuted instantiation: dcaenc.c:get_sbits64
Unexecuted instantiation: dcaadpcm.c:get_sbits64
Unexecuted instantiation: dcadata.c:get_sbits64
Unexecuted instantiation: interplayvideo.c:get_sbits64
Unexecuted instantiation: dec.c:get_sbits64
Unexecuted instantiation: dec_celt.c:get_sbits64
Unexecuted instantiation: silk.c:get_sbits64
Unexecuted instantiation: mjpegbdec.c:get_sbits64
Unexecuted instantiation: bink.c:get_sbits64
Unexecuted instantiation: dvdsubdec.c:get_sbits64
Unexecuted instantiation: rtjpeg.c:get_sbits64
Unexecuted instantiation: truespeech.c:get_sbits64
Unexecuted instantiation: metasound.c:get_sbits64
Unexecuted instantiation: escape124.c:get_sbits64
Unexecuted instantiation: cllc.c:get_sbits64
Unexecuted instantiation: dvdec.c:get_sbits64
Unexecuted instantiation: tta.c:get_sbits64
Unexecuted instantiation: fraps.c:get_sbits64
Unexecuted instantiation: motionpixels.c:get_sbits64
Unexecuted instantiation: vp9.c:get_sbits64
Unexecuted instantiation: vp9block.c:get_sbits64
Unexecuted instantiation: vp9data.c:get_sbits64
Unexecuted instantiation: vp9lpf.c:get_sbits64
Unexecuted instantiation: vp9mvs.c:get_sbits64
Unexecuted instantiation: vp9prob.c:get_sbits64
Unexecuted instantiation: vp9recon.c:get_sbits64
Unexecuted instantiation: ffv1dec.c:get_sbits64
Unexecuted instantiation: intra_utils.c:get_sbits64
Unexecuted instantiation: thread.c:get_sbits64
Unexecuted instantiation: ctu.c:get_sbits64
Unexecuted instantiation: inter.c:get_sbits64
Unexecuted instantiation: intra.c:get_sbits64
Unexecuted instantiation: wmavoice.c:get_sbits64
Unexecuted instantiation: rawdec.c:get_sbits64
Unexecuted instantiation: svq1dec.c:get_sbits64
Unexecuted instantiation: mpc7.c:get_sbits64
Unexecuted instantiation: truemotion2rt.c:get_sbits64
Unexecuted instantiation: adxdec.c:get_sbits64
Unexecuted instantiation: rv40.c:get_sbits64
Unexecuted instantiation: xsubdec.c:get_sbits64
Unexecuted instantiation: notchlc.c:get_sbits64
Unexecuted instantiation: aic.c:get_sbits64
Unexecuted instantiation: vqcdec.c:get_sbits64
Unexecuted instantiation: dolby_e.c:get_sbits64
Unexecuted instantiation: proresdec.c:get_sbits64
Unexecuted instantiation: evrcdec.c:get_sbits64
Unexecuted instantiation: dnxhddec.c:get_sbits64
Unexecuted instantiation: dcadec.c:get_sbits64
Unexecuted instantiation: dca_core.c:get_sbits64
Unexecuted instantiation: dca_lbr.c:get_sbits64
Unexecuted instantiation: dca_xll.c:get_sbits64
Unexecuted instantiation: mlpenc.c:get_sbits64
Unexecuted instantiation: atrac3.c:get_sbits64
Unexecuted instantiation: vorbisdec.c:get_sbits64
Unexecuted instantiation: flashsv.c:get_sbits64
Unexecuted instantiation: wavpack.c:get_sbits64
Unexecuted instantiation: speedhqdec.c:get_sbits64
Unexecuted instantiation: g723_1dec.c:get_sbits64
Unexecuted instantiation: g2meet.c:get_sbits64
Unexecuted instantiation: shorten.c:get_sbits64
Unexecuted instantiation: indeo4.c:get_sbits64
Unexecuted instantiation: sp5xdec.c:get_sbits64
Unexecuted instantiation: atrac1.c:get_sbits64
Unexecuted instantiation: apv_decode.c:get_sbits64
Unexecuted instantiation: apv_entropy.c:get_sbits64
Unexecuted instantiation: avs.c:get_sbits64
Unexecuted instantiation: rv60dec.c:get_sbits64
Unexecuted instantiation: alac.c:get_sbits64
Unexecuted instantiation: tiertexseqv.c:get_sbits64
Unexecuted instantiation: ffv1enc.c:get_sbits64
Unexecuted instantiation: hcadec.c:get_sbits64
Unexecuted instantiation: pcx.c:get_sbits64
Unexecuted instantiation: qcelpdec.c:get_sbits64
flacdec.c:get_sbits64
Line
Count
Source
487
22.8M
{
488
    // sign_extend(x, 0) is undefined
489
22.8M
    if (!n)
490
0
        return 0;
491
492
22.8M
    return sign_extend64(get_bits64(s, n), n);
493
22.8M
}
Unexecuted instantiation: ac3dec_fixed.c:get_sbits64
Unexecuted instantiation: midivid.c:get_sbits64
Unexecuted instantiation: mimic.c:get_sbits64
Unexecuted instantiation: fic.c:get_sbits64
Unexecuted instantiation: qdmc.c:get_sbits64
Unexecuted instantiation: ra288.c:get_sbits64
Unexecuted instantiation: interplayacm.c:get_sbits64
Unexecuted instantiation: ylc.c:get_sbits64
Unexecuted instantiation: ftr.c:get_sbits64
Unexecuted instantiation: agm.c:get_sbits64
Unexecuted instantiation: xan.c:get_sbits64
Unexecuted instantiation: svq3.c:get_sbits64
Unexecuted instantiation: cri.c:get_sbits64
Unexecuted instantiation: qdm2.c:get_sbits64
Unexecuted instantiation: cljrdec.c:get_sbits64
Unexecuted instantiation: g728dec.c:get_sbits64
Unexecuted instantiation: cook.c:get_sbits64
Unexecuted instantiation: twinvqdec.c:get_sbits64
Unexecuted instantiation: hq_hqa.c:get_sbits64
Unexecuted instantiation: cdxl.c:get_sbits64
Unexecuted instantiation: vble.c:get_sbits64
Unexecuted instantiation: mv30.c:get_sbits64
Unexecuted instantiation: apedec.c:get_sbits64
Unexecuted instantiation: h261dec.c:get_sbits64
Unexecuted instantiation: dstdec.c:get_sbits64
Unexecuted instantiation: jpeglsenc.c:get_sbits64
Unexecuted instantiation: truemotion2.c:get_sbits64
494
495
/**
496
 * Show 0-32 bits.
497
 */
498
static inline unsigned int show_bits_long(GetBitContext *s, int n)
499
576M
{
500
576M
    if (n <= MIN_CACHE_BITS) {
501
9.27M
        return show_bits(s, n);
502
566M
    } else {
503
566M
        GetBitContext gb = *s;
504
566M
        return get_bits_long(&gb, n);
505
566M
    }
506
576M
}
Unexecuted instantiation: mpegvideo_motion.c:show_bits_long
Unexecuted instantiation: wmv2dec.c:show_bits_long
Unexecuted instantiation: aac_adtstoasc.c:show_bits_long
Unexecuted instantiation: dovi_rpu.c:show_bits_long
Unexecuted instantiation: dovi_split.c:show_bits_long
Unexecuted instantiation: dts2pts.c:show_bits_long
Unexecuted instantiation: eac3_core.c:show_bits_long
Unexecuted instantiation: evc_frame_merge.c:show_bits_long
Unexecuted instantiation: extract_extradata.c:show_bits_long
Unexecuted instantiation: h264_metadata.c:show_bits_long
Unexecuted instantiation: h264_redundant_pps.c:show_bits_long
Unexecuted instantiation: h265_metadata.c:show_bits_long
Unexecuted instantiation: h266_metadata.c:show_bits_long
Unexecuted instantiation: lcevc_merge.c:show_bits_long
Unexecuted instantiation: lcevc_metadata.c:show_bits_long
Unexecuted instantiation: remove_extradata.c:show_bits_long
truehd_core.c:show_bits_long
Line
Count
Source
499
6.76k
{
500
6.76k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
6.76k
    } else {
503
6.76k
        GetBitContext gb = *s;
504
6.76k
        return get_bits_long(&gb, n);
505
6.76k
    }
506
6.76k
}
Unexecuted instantiation: vp9_raw_reorder.c:show_bits_long
Unexecuted instantiation: vp9_superframe.c:show_bits_long
Unexecuted instantiation: vp9_superframe_split.c:show_bits_long
Unexecuted instantiation: cbs.c:show_bits_long
Unexecuted instantiation: cbs_apv.c:show_bits_long
Unexecuted instantiation: cbs_av1.c:show_bits_long
Unexecuted instantiation: cbs_h264.c:show_bits_long
cbs_h2645.c:show_bits_long
Line
Count
Source
499
160M
{
500
160M
    if (n <= MIN_CACHE_BITS) {
501
8.79M
        return show_bits(s, n);
502
151M
    } else {
503
151M
        GetBitContext gb = *s;
504
151M
        return get_bits_long(&gb, n);
505
151M
    }
506
160M
}
Unexecuted instantiation: cbs_h265.c:show_bits_long
Unexecuted instantiation: cbs_h266.c:show_bits_long
Unexecuted instantiation: cbs_lcevc.c:show_bits_long
Unexecuted instantiation: cbs_mpeg2.c:show_bits_long
Unexecuted instantiation: cbs_sei.c:show_bits_long
Unexecuted instantiation: cbs_vp8.c:show_bits_long
Unexecuted instantiation: cbs_vp9.c:show_bits_long
dovi_rpudec.c:show_bits_long
Line
Count
Source
499
32.2k
{
500
32.2k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
32.2k
    } else {
503
32.2k
        GetBitContext gb = *s;
504
32.2k
        return get_bits_long(&gb, n);
505
32.2k
    }
506
32.2k
}
evc_parse.c:show_bits_long
Line
Count
Source
499
350k
{
500
350k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
350k
    } else {
503
350k
        GetBitContext gb = *s;
504
350k
        return get_bits_long(&gb, n);
505
350k
    }
506
350k
}
evc_ps.c:show_bits_long
Line
Count
Source
499
2.48M
{
500
2.48M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
2.48M
    } else {
503
2.48M
        GetBitContext gb = *s;
504
2.48M
        return get_bits_long(&gb, n);
505
2.48M
    }
506
2.48M
}
Unexecuted instantiation: h263dec.c:show_bits_long
Unexecuted instantiation: h2645_parse.c:show_bits_long
Unexecuted instantiation: h264_parse.c:show_bits_long
h264_ps.c:show_bits_long
Line
Count
Source
499
12.2M
{
500
12.2M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
12.2M
    } else {
503
12.2M
        GetBitContext gb = *s;
504
12.2M
        return get_bits_long(&gb, n);
505
12.2M
    }
506
12.2M
}
Unexecuted instantiation: h264data.c:show_bits_long
Unexecuted instantiation: h265_profile_level.c:show_bits_long
ps.c:show_bits_long
Line
Count
Source
499
281M
{
500
281M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
281M
    } else {
503
281M
        GetBitContext gb = *s;
504
281M
        return get_bits_long(&gb, n);
505
281M
    }
506
281M
}
Unexecuted instantiation: intelh263dec.c:show_bits_long
Unexecuted instantiation: intrax8.c:show_bits_long
ituh263dec.c:show_bits_long
Line
Count
Source
499
3.22M
{
500
3.22M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
3.22M
    } else {
503
3.22M
        GetBitContext gb = *s;
504
3.22M
        return get_bits_long(&gb, n);
505
3.22M
    }
506
3.22M
}
Unexecuted instantiation: mlp_parse.c:show_bits_long
Unexecuted instantiation: mpeg4audio.c:show_bits_long
mpeg4videodec.c:show_bits_long
Line
Count
Source
499
196k
{
500
196k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
196k
    } else {
503
196k
        GetBitContext gb = *s;
504
196k
        return get_bits_long(&gb, n);
505
196k
    }
506
196k
}
Unexecuted instantiation: mpeg_er.c:show_bits_long
Unexecuted instantiation: mpegvideo_dec.c:show_bits_long
Unexecuted instantiation: msmpeg4dec.c:show_bits_long
Unexecuted instantiation: rv10.c:show_bits_long
ac3_parser.c:show_bits_long
Line
Count
Source
499
19.2M
{
500
19.2M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
19.2M
    } else {
503
19.2M
        GetBitContext gb = *s;
504
19.2M
        return get_bits_long(&gb, n);
505
19.2M
    }
506
19.2M
}
Unexecuted instantiation: adts_header.c:show_bits_long
Unexecuted instantiation: av1_parse.c:show_bits_long
Unexecuted instantiation: flvdec.c:show_bits_long
Unexecuted instantiation: h2645_vui.c:show_bits_long
Unexecuted instantiation: vc1_parser.c:show_bits_long
Unexecuted instantiation: vorbis_parser.c:show_bits_long
Unexecuted instantiation: vp9_parser.c:show_bits_long
Unexecuted instantiation: vvc_parser.c:show_bits_long
Unexecuted instantiation: aac_ac3_parser.c:show_bits_long
Unexecuted instantiation: av1_parser.c:show_bits_long
Unexecuted instantiation: avs2_parser.c:show_bits_long
Unexecuted instantiation: avs3_parser.c:show_bits_long
Unexecuted instantiation: cavs_parser.c:show_bits_long
Unexecuted instantiation: dca_parser.c:show_bits_long
Unexecuted instantiation: dolby_e_parser.c:show_bits_long
Unexecuted instantiation: evc_parser.c:show_bits_long
Unexecuted instantiation: ffv1_parser.c:show_bits_long
Unexecuted instantiation: flac_parser.c:show_bits_long
Unexecuted instantiation: ftr_parser.c:show_bits_long
h264_parser.c:show_bits_long
Line
Count
Source
499
22.0M
{
500
22.0M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
22.0M
    } else {
503
22.0M
        GetBitContext gb = *s;
504
22.0M
        return get_bits_long(&gb, n);
505
22.0M
    }
506
22.0M
}
h264_sei.c:show_bits_long
Line
Count
Source
499
330k
{
500
330k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
330k
    } else {
503
330k
        GetBitContext gb = *s;
504
330k
        return get_bits_long(&gb, n);
505
330k
    }
506
330k
}
Unexecuted instantiation: h264idct.c:show_bits_long
Unexecuted instantiation: parser.c:show_bits_long
sei.c:show_bits_long
Line
Count
Source
499
378k
{
500
378k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
378k
    } else {
503
378k
        GetBitContext gb = *s;
504
378k
        return get_bits_long(&gb, n);
505
378k
    }
506
378k
}
Unexecuted instantiation: jpegxl_parser.c:show_bits_long
Unexecuted instantiation: jpegxs_parser.c:show_bits_long
Unexecuted instantiation: lcevc_parser.c:show_bits_long
Unexecuted instantiation: mlp_parser.c:show_bits_long
Unexecuted instantiation: mpeg4video_parser.c:show_bits_long
vc1.c:show_bits_long
Line
Count
Source
499
596k
{
500
596k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
596k
    } else {
503
596k
        GetBitContext gb = *s;
504
596k
        return get_bits_long(&gb, n);
505
596k
    }
506
596k
}
Unexecuted instantiation: vc1data.c:show_bits_long
Unexecuted instantiation: dca.c:show_bits_long
Unexecuted instantiation: dca_exss.c:show_bits_long
Unexecuted instantiation: dolby_e_parse.c:show_bits_long
Unexecuted instantiation: ffv1.c:show_bits_long
Unexecuted instantiation: ffv1_parse.c:show_bits_long
Unexecuted instantiation: flac.c:show_bits_long
h2645_sei.c:show_bits_long
Line
Count
Source
499
58.4M
{
500
58.4M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
58.4M
    } else {
503
58.4M
        GetBitContext gb = *s;
504
58.4M
        return get_bits_long(&gb, n);
505
58.4M
    }
506
58.4M
}
Unexecuted instantiation: parse.c:show_bits_long
Unexecuted instantiation: jpegxl_parse.c:show_bits_long
Unexecuted instantiation: aom_film_grain.c:show_bits_long
Unexecuted instantiation: dynamic_hdr_vivid.c:show_bits_long
Unexecuted instantiation: hdr_dynamic_metadata.c:show_bits_long
Unexecuted instantiation: av1dec.c:show_bits_long
Unexecuted instantiation: bit.c:show_bits_long
Unexecuted instantiation: dtsdec.c:show_bits_long
Unexecuted instantiation: dtshddec.c:show_bits_long
h264dec.c:show_bits_long
Line
Count
Source
499
1.73M
{
500
1.73M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
1.73M
    } else {
503
1.73M
        GetBitContext gb = *s;
504
1.73M
        return get_bits_long(&gb, n);
505
1.73M
    }
506
1.73M
}
Unexecuted instantiation: hls_sample_encryption.c:show_bits_long
Unexecuted instantiation: isom.c:show_bits_long
Unexecuted instantiation: matroskadec.c:show_bits_long
Unexecuted instantiation: mov.c:show_bits_long
Unexecuted instantiation: mpc8.c:show_bits_long
Unexecuted instantiation: mpegts.c:show_bits_long
Unexecuted instantiation: oggparsetheora.c:show_bits_long
Unexecuted instantiation: shortendec.c:show_bits_long
Unexecuted instantiation: swfdec.c:show_bits_long
Unexecuted instantiation: takdec.c:show_bits_long
Unexecuted instantiation: iamf_parse.c:show_bits_long
Unexecuted instantiation: dirac.c:show_bits_long
Unexecuted instantiation: atrac9dec.c:show_bits_long
Unexecuted instantiation: enc.c:show_bits_long
Unexecuted instantiation: enc_psy.c:show_bits_long
Unexecuted instantiation: pvq.c:show_bits_long
Unexecuted instantiation: rc.c:show_bits_long
Unexecuted instantiation: celt.c:show_bits_long
Unexecuted instantiation: gsmdec.c:show_bits_long
Unexecuted instantiation: msgsmdec.c:show_bits_long
Unexecuted instantiation: imc.c:show_bits_long
Unexecuted instantiation: adpcm.c:show_bits_long
Unexecuted instantiation: wmaenc.c:show_bits_long
Unexecuted instantiation: wma.c:show_bits_long
Unexecuted instantiation: cfhd.c:show_bits_long
Unexecuted instantiation: wavarc.c:show_bits_long
Unexecuted instantiation: escape130.c:show_bits_long
Unexecuted instantiation: asvdec.c:show_bits_long
Unexecuted instantiation: diracdec.c:show_bits_long
Unexecuted instantiation: dirac_arith.c:show_bits_long
Unexecuted instantiation: wmadec.c:show_bits_long
Unexecuted instantiation: aacenc.c:show_bits_long
Unexecuted instantiation: imm4.c:show_bits_long
Unexecuted instantiation: exr.c:show_bits_long
Unexecuted instantiation: aacdec.c:show_bits_long
Unexecuted instantiation: aacdec_fixed.c:show_bits_long
Unexecuted instantiation: aacdec_float.c:show_bits_long
Unexecuted instantiation: aacdec_tab.c:show_bits_long
Unexecuted instantiation: aacdec_usac.c:show_bits_long
Unexecuted instantiation: aacdec_usac_mps212.c:show_bits_long
Unexecuted instantiation: aacps_common.c:show_bits_long
Unexecuted instantiation: aacsbr.c:show_bits_long
Unexecuted instantiation: aacsbr_fixed.c:show_bits_long
Unexecuted instantiation: aacdec_ac.c:show_bits_long
Unexecuted instantiation: aacdec_lpd.c:show_bits_long
Unexecuted instantiation: aacps_fixed.c:show_bits_long
Unexecuted instantiation: aacps_float.c:show_bits_long
Unexecuted instantiation: mjpegdec.c:show_bits_long
Unexecuted instantiation: mjpegdec_common.c:show_bits_long
Unexecuted instantiation: jpeglsdec.c:show_bits_long
Unexecuted instantiation: jvdec.c:show_bits_long
Unexecuted instantiation: rdt.c:show_bits_long
Unexecuted instantiation: rtpdec_h261.c:show_bits_long
Unexecuted instantiation: rtpdec_h263_rfc2190.c:show_bits_long
Unexecuted instantiation: rtpdec_latm.c:show_bits_long
Unexecuted instantiation: rtpdec_mpeg4.c:show_bits_long
Unexecuted instantiation: rtpdec_qt.c:show_bits_long
h264_cavlc.c:show_bits_long
Line
Count
Source
499
2.08M
{
500
2.08M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
2.08M
    } else {
503
2.08M
        GetBitContext gb = *s;
504
2.08M
        return get_bits_long(&gb, n);
505
2.08M
    }
506
2.08M
}
Unexecuted instantiation: h264_direct.c:show_bits_long
Unexecuted instantiation: h264_mb.c:show_bits_long
Unexecuted instantiation: h264_picture.c:show_bits_long
h264_refs.c:show_bits_long
Line
Count
Source
499
995k
{
500
995k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
995k
    } else {
503
995k
        GetBitContext gb = *s;
504
995k
        return get_bits_long(&gb, n);
505
995k
    }
506
995k
}
h264_slice.c:show_bits_long
Line
Count
Source
499
5.91M
{
500
5.91M
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
5.91M
    } else {
503
5.91M
        GetBitContext gb = *s;
504
5.91M
        return get_bits_long(&gb, n);
505
5.91M
    }
506
5.91M
}
Unexecuted instantiation: h264_cabac.c:show_bits_long
Unexecuted instantiation: h264_loopfilter.c:show_bits_long
Unexecuted instantiation: alsdec.c:show_bits_long
Unexecuted instantiation: bgmc.c:show_bits_long
Unexecuted instantiation: mlz.c:show_bits_long
Unexecuted instantiation: bonk.c:show_bits_long
Unexecuted instantiation: mxpegdec.c:show_bits_long
Unexecuted instantiation: rv30.c:show_bits_long
Unexecuted instantiation: rv34.c:show_bits_long
Unexecuted instantiation: indeo3.c:show_bits_long
Unexecuted instantiation: eamad.c:show_bits_long
Unexecuted instantiation: mpeg12.c:show_bits_long
Unexecuted instantiation: g726.c:show_bits_long
Unexecuted instantiation: vc1dec.c:show_bits_long
Unexecuted instantiation: vc1_block.c:show_bits_long
Unexecuted instantiation: vc1_loopfilter.c:show_bits_long
Unexecuted instantiation: vc1_mc.c:show_bits_long
Unexecuted instantiation: vc1_pred.c:show_bits_long
Unexecuted instantiation: mpegaudiodec_float.c:show_bits_long
Unexecuted instantiation: huffyuvdec.c:show_bits_long
Unexecuted instantiation: speexdec.c:show_bits_long
Unexecuted instantiation: atrac3plusdec.c:show_bits_long
Unexecuted instantiation: atrac3plusdsp.c:show_bits_long
Unexecuted instantiation: atrac3plus.c:show_bits_long
Unexecuted instantiation: mss4.c:show_bits_long
Unexecuted instantiation: tiff.c:show_bits_long
Unexecuted instantiation: faxcompr.c:show_bits_long
Unexecuted instantiation: ac3dec_float.c:show_bits_long
Unexecuted instantiation: on2avc.c:show_bits_long
Unexecuted instantiation: smacker.c:show_bits_long
Unexecuted instantiation: dvbsubdec.c:show_bits_long
Unexecuted instantiation: mss1.c:show_bits_long
Unexecuted instantiation: mss12.c:show_bits_long
Unexecuted instantiation: mss2.c:show_bits_long
Unexecuted instantiation: mdec.c:show_bits_long
Unexecuted instantiation: osq.c:show_bits_long
Unexecuted instantiation: vp6.c:show_bits_long
Unexecuted instantiation: vp56.c:show_bits_long
Unexecuted instantiation: vp56data.c:show_bits_long
Unexecuted instantiation: loco.c:show_bits_long
Unexecuted instantiation: vp5.c:show_bits_long
Unexecuted instantiation: ra144dec.c:show_bits_long
Unexecuted instantiation: indeo5.c:show_bits_long
Unexecuted instantiation: ivi.c:show_bits_long
Unexecuted instantiation: ivi_dsp.c:show_bits_long
Unexecuted instantiation: apac.c:show_bits_long
Unexecuted instantiation: clearvideo.c:show_bits_long
Unexecuted instantiation: dxtory.c:show_bits_long
Unexecuted instantiation: mpegaudiodec_fixed.c:show_bits_long
Unexecuted instantiation: ralf.c:show_bits_long
Unexecuted instantiation: pixlet.c:show_bits_long
Unexecuted instantiation: wnv1.c:show_bits_long
Unexecuted instantiation: qoadec.c:show_bits_long
vima.c:show_bits_long
Line
Count
Source
499
107k
{
500
107k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
107k
    } else {
503
107k
        GetBitContext gb = *s;
504
107k
        return get_bits_long(&gb, n);
505
107k
    }
506
107k
}
Unexecuted instantiation: leaddec.c:show_bits_long
Unexecuted instantiation: eatqi.c:show_bits_long
lagarith.c:show_bits_long
Line
Count
Source
499
1.58k
{
500
1.58k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
1.58k
    } else {
503
1.58k
        GetBitContext gb = *s;
504
1.58k
        return get_bits_long(&gb, n);
505
1.58k
    }
506
1.58k
}
Unexecuted instantiation: lagarithrac.c:show_bits_long
Unexecuted instantiation: dss_sp.c:show_bits_long
Unexecuted instantiation: siren.c:show_bits_long
cavsdec.c:show_bits_long
Line
Count
Source
499
1.30M
{
500
1.30M
    if (n <= MIN_CACHE_BITS) {
501
363k
        return show_bits(s, n);
502
944k
    } else {
503
944k
        GetBitContext gb = *s;
504
944k
        return get_bits_long(&gb, n);
505
944k
    }
506
1.30M
}
Unexecuted instantiation: cavs.c:show_bits_long
Unexecuted instantiation: cavsdata.c:show_bits_long
Unexecuted instantiation: hcom.c:show_bits_long
Unexecuted instantiation: vp3.c:show_bits_long
Unexecuted instantiation: webp.c:show_bits_long
Unexecuted instantiation: eatgv.c:show_bits_long
Unexecuted instantiation: eatgq.c:show_bits_long
Unexecuted instantiation: sga.c:show_bits_long
Unexecuted instantiation: binkaudio.c:show_bits_long
mpeg12dec.c:show_bits_long
Line
Count
Source
499
242k
{
500
242k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
242k
    } else {
503
242k
        GetBitContext gb = *s;
504
242k
        return get_bits_long(&gb, n);
505
242k
    }
506
242k
}
Unexecuted instantiation: indeo2.c:show_bits_long
Unexecuted instantiation: 4xm.c:show_bits_long
Unexecuted instantiation: wmalosslessdec.c:show_bits_long
Unexecuted instantiation: ilbcdec.c:show_bits_long
hevcdec.c:show_bits_long
Line
Count
Source
499
852k
{
500
852k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
852k
    } else {
503
852k
        GetBitContext gb = *s;
504
852k
        return get_bits_long(&gb, n);
505
852k
    }
506
852k
}
Unexecuted instantiation: mvs.c:show_bits_long
Unexecuted instantiation: pred.c:show_bits_long
Unexecuted instantiation: refs.c:show_bits_long
Unexecuted instantiation: cabac.c:show_bits_long
Unexecuted instantiation: dsp.c:show_bits_long
Unexecuted instantiation: filter.c:show_bits_long
Unexecuted instantiation: tscc2.c:show_bits_long
Unexecuted instantiation: hqx.c:show_bits_long
Unexecuted instantiation: mobiclip.c:show_bits_long
Unexecuted instantiation: wmaprodec.c:show_bits_long
Unexecuted instantiation: g729dec.c:show_bits_long
Unexecuted instantiation: sipr.c:show_bits_long
Unexecuted instantiation: g722dec.c:show_bits_long
Unexecuted instantiation: nellymoserdec.c:show_bits_long
Unexecuted instantiation: dcaenc.c:show_bits_long
Unexecuted instantiation: dcaadpcm.c:show_bits_long
Unexecuted instantiation: dcadata.c:show_bits_long
Unexecuted instantiation: interplayvideo.c:show_bits_long
Unexecuted instantiation: dec.c:show_bits_long
Unexecuted instantiation: dec_celt.c:show_bits_long
Unexecuted instantiation: silk.c:show_bits_long
Unexecuted instantiation: mjpegbdec.c:show_bits_long
Unexecuted instantiation: bink.c:show_bits_long
Unexecuted instantiation: dvdsubdec.c:show_bits_long
Unexecuted instantiation: rtjpeg.c:show_bits_long
Unexecuted instantiation: truespeech.c:show_bits_long
Unexecuted instantiation: metasound.c:show_bits_long
Unexecuted instantiation: escape124.c:show_bits_long
Unexecuted instantiation: cllc.c:show_bits_long
Unexecuted instantiation: dvdec.c:show_bits_long
tta.c:show_bits_long
Line
Count
Source
499
783
{
500
783
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
783
    } else {
503
783
        GetBitContext gb = *s;
504
783
        return get_bits_long(&gb, n);
505
783
    }
506
783
}
Unexecuted instantiation: fraps.c:show_bits_long
Unexecuted instantiation: motionpixels.c:show_bits_long
Unexecuted instantiation: vp9.c:show_bits_long
Unexecuted instantiation: vp9block.c:show_bits_long
Unexecuted instantiation: vp9data.c:show_bits_long
Unexecuted instantiation: vp9lpf.c:show_bits_long
Unexecuted instantiation: vp9mvs.c:show_bits_long
Unexecuted instantiation: vp9prob.c:show_bits_long
Unexecuted instantiation: vp9recon.c:show_bits_long
Unexecuted instantiation: ffv1dec.c:show_bits_long
Unexecuted instantiation: intra_utils.c:show_bits_long
Unexecuted instantiation: thread.c:show_bits_long
Unexecuted instantiation: ctu.c:show_bits_long
Unexecuted instantiation: inter.c:show_bits_long
Unexecuted instantiation: intra.c:show_bits_long
Unexecuted instantiation: wmavoice.c:show_bits_long
Unexecuted instantiation: rawdec.c:show_bits_long
Unexecuted instantiation: svq1dec.c:show_bits_long
Unexecuted instantiation: mpc7.c:show_bits_long
Unexecuted instantiation: truemotion2rt.c:show_bits_long
Unexecuted instantiation: adxdec.c:show_bits_long
Unexecuted instantiation: rv40.c:show_bits_long
Unexecuted instantiation: xsubdec.c:show_bits_long
Unexecuted instantiation: notchlc.c:show_bits_long
Unexecuted instantiation: aic.c:show_bits_long
Unexecuted instantiation: vqcdec.c:show_bits_long
Unexecuted instantiation: dolby_e.c:show_bits_long
Unexecuted instantiation: proresdec.c:show_bits_long
Unexecuted instantiation: evrcdec.c:show_bits_long
Unexecuted instantiation: dnxhddec.c:show_bits_long
Unexecuted instantiation: dcadec.c:show_bits_long
Unexecuted instantiation: dca_core.c:show_bits_long
Unexecuted instantiation: dca_lbr.c:show_bits_long
dca_xll.c:show_bits_long
Line
Count
Source
499
10.7k
{
500
10.7k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
10.7k
    } else {
503
10.7k
        GetBitContext gb = *s;
504
10.7k
        return get_bits_long(&gb, n);
505
10.7k
    }
506
10.7k
}
Unexecuted instantiation: mlpenc.c:show_bits_long
mlpdec.c:show_bits_long
Line
Count
Source
499
905k
{
500
905k
    if (n <= MIN_CACHE_BITS) {
501
0
        return show_bits(s, n);
502
905k
    } else {
503
905k
        GetBitContext gb = *s;
504
905k
        return get_bits_long(&gb, n);
505
905k
    }
506
905k
}
Unexecuted instantiation: atrac3.c:show_bits_long
Unexecuted instantiation: vorbisdec.c:show_bits_long
Unexecuted instantiation: flashsv.c:show_bits_long
Unexecuted instantiation: wavpack.c:show_bits_long
Unexecuted instantiation: speedhqdec.c:show_bits_long
Unexecuted instantiation: g723_1dec.c:show_bits_long
Unexecuted instantiation: g2meet.c:show_bits_long
Unexecuted instantiation: shorten.c:show_bits_long
Unexecuted instantiation: indeo4.c:show_bits_long
Unexecuted instantiation: sp5xdec.c:show_bits_long
Unexecuted instantiation: atrac1.c:show_bits_long
Unexecuted instantiation: apv_decode.c:show_bits_long
Unexecuted instantiation: apv_entropy.c:show_bits_long
Unexecuted instantiation: avs.c:show_bits_long
Unexecuted instantiation: rv60dec.c:show_bits_long
Unexecuted instantiation: alac.c:show_bits_long
Unexecuted instantiation: tiertexseqv.c:show_bits_long
Unexecuted instantiation: ffv1enc.c:show_bits_long
Unexecuted instantiation: hcadec.c:show_bits_long
Unexecuted instantiation: pcx.c:show_bits_long
Unexecuted instantiation: qcelpdec.c:show_bits_long
flacdec.c:show_bits_long
Line
Count
Source
499
277k
{
500
277k
    if (n <= MIN_CACHE_BITS) {
501
114k
        return show_bits(s, n);
502
163k
    } else {
503
163k
        GetBitContext gb = *s;
504
163k
        return get_bits_long(&gb, n);
505
163k
    }
506
277k
}
Unexecuted instantiation: ac3dec_fixed.c:show_bits_long
Unexecuted instantiation: midivid.c:show_bits_long
Unexecuted instantiation: mimic.c:show_bits_long
Unexecuted instantiation: fic.c:show_bits_long
Unexecuted instantiation: qdmc.c:show_bits_long
Unexecuted instantiation: ra288.c:show_bits_long
Unexecuted instantiation: interplayacm.c:show_bits_long
Unexecuted instantiation: ylc.c:show_bits_long
Unexecuted instantiation: ftr.c:show_bits_long
Unexecuted instantiation: agm.c:show_bits_long
Unexecuted instantiation: xan.c:show_bits_long
Unexecuted instantiation: svq3.c:show_bits_long
Unexecuted instantiation: cri.c:show_bits_long
Unexecuted instantiation: qdm2.c:show_bits_long
Unexecuted instantiation: cljrdec.c:show_bits_long
Unexecuted instantiation: g728dec.c:show_bits_long
Unexecuted instantiation: cook.c:show_bits_long
Unexecuted instantiation: twinvqdec.c:show_bits_long
Unexecuted instantiation: hq_hqa.c:show_bits_long
Unexecuted instantiation: cdxl.c:show_bits_long
Unexecuted instantiation: vble.c:show_bits_long
Unexecuted instantiation: mv30.c:show_bits_long
Unexecuted instantiation: apedec.c:show_bits_long
Unexecuted instantiation: h261dec.c:show_bits_long
Unexecuted instantiation: dstdec.c:show_bits_long
Unexecuted instantiation: jpeglsenc.c:show_bits_long
Unexecuted instantiation: truemotion2.c:show_bits_long
507
508
509
/**
510
 * Initialize GetBitContext.
511
 * @param buffer bitstream buffer, must be AV_INPUT_BUFFER_PADDING_SIZE bytes
512
 *        larger than the actual read bits because some optimized bitstream
513
 *        readers read 32 or 64 bit at once and could read over the end
514
 * @param bit_size the size of the buffer in bits
515
 * @return 0 on success, AVERROR_INVALIDDATA if the buffer_size would overflow.
516
 */
517
static inline int init_get_bits(GetBitContext *s, const uint8_t *buffer,
518
                                int bit_size)
519
2.49G
{
520
2.49G
    int ret = 0;
521
522
2.49G
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
13.5k
        bit_size    = 0;
524
13.5k
        buffer      = NULL;
525
13.5k
        ret         = AVERROR_INVALIDDATA;
526
13.5k
    }
527
528
2.49G
    s->buffer             = buffer;
529
2.49G
    s->size_in_bits       = bit_size;
530
2.49G
    s->size_in_bits_plus8 = bit_size + 8;
531
2.49G
    s->index              = 0;
532
533
2.49G
    return ret;
534
2.49G
}
Unexecuted instantiation: mpegvideo_motion.c:init_get_bits
wmv2dec.c:init_get_bits
Line
Count
Source
519
1.48k
{
520
1.48k
    int ret = 0;
521
522
1.48k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.48k
    s->buffer             = buffer;
529
1.48k
    s->size_in_bits       = bit_size;
530
1.48k
    s->size_in_bits_plus8 = bit_size + 8;
531
1.48k
    s->index              = 0;
532
533
1.48k
    return ret;
534
1.48k
}
aac_adtstoasc.c:init_get_bits
Line
Count
Source
519
1.32k
{
520
1.32k
    int ret = 0;
521
522
1.32k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.32k
    s->buffer             = buffer;
529
1.32k
    s->size_in_bits       = bit_size;
530
1.32k
    s->size_in_bits_plus8 = bit_size + 8;
531
1.32k
    s->index              = 0;
532
533
1.32k
    return ret;
534
1.32k
}
Unexecuted instantiation: dovi_rpu.c:init_get_bits
Unexecuted instantiation: dovi_split.c:init_get_bits
Unexecuted instantiation: dts2pts.c:init_get_bits
eac3_core.c:init_get_bits
Line
Count
Source
519
23.6k
{
520
23.6k
    int ret = 0;
521
522
23.6k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
23.6k
    s->buffer             = buffer;
529
23.6k
    s->size_in_bits       = bit_size;
530
23.6k
    s->size_in_bits_plus8 = bit_size + 8;
531
23.6k
    s->index              = 0;
532
533
23.6k
    return ret;
534
23.6k
}
evc_frame_merge.c:init_get_bits
Line
Count
Source
519
135k
{
520
135k
    int ret = 0;
521
522
135k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
135k
    s->buffer             = buffer;
529
135k
    s->size_in_bits       = bit_size;
530
135k
    s->size_in_bits_plus8 = bit_size + 8;
531
135k
    s->index              = 0;
532
533
135k
    return ret;
534
135k
}
extract_extradata.c:init_get_bits
Line
Count
Source
519
7.97M
{
520
7.97M
    int ret = 0;
521
522
7.97M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
7.97M
    s->buffer             = buffer;
529
7.97M
    s->size_in_bits       = bit_size;
530
7.97M
    s->size_in_bits_plus8 = bit_size + 8;
531
7.97M
    s->index              = 0;
532
533
7.97M
    return ret;
534
7.97M
}
Unexecuted instantiation: h264_metadata.c:init_get_bits
Unexecuted instantiation: h264_redundant_pps.c:init_get_bits
Unexecuted instantiation: h265_metadata.c:init_get_bits
Unexecuted instantiation: h266_metadata.c:init_get_bits
Unexecuted instantiation: lcevc_merge.c:init_get_bits
Unexecuted instantiation: lcevc_metadata.c:init_get_bits
Unexecuted instantiation: remove_extradata.c:init_get_bits
truehd_core.c:init_get_bits
Line
Count
Source
519
6.76k
{
520
6.76k
    int ret = 0;
521
522
6.76k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.76k
    s->buffer             = buffer;
529
6.76k
    s->size_in_bits       = bit_size;
530
6.76k
    s->size_in_bits_plus8 = bit_size + 8;
531
6.76k
    s->index              = 0;
532
533
6.76k
    return ret;
534
6.76k
}
vp9_raw_reorder.c:init_get_bits
Line
Count
Source
519
288k
{
520
288k
    int ret = 0;
521
522
288k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
288k
    s->buffer             = buffer;
529
288k
    s->size_in_bits       = bit_size;
530
288k
    s->size_in_bits_plus8 = bit_size + 8;
531
288k
    s->index              = 0;
532
533
288k
    return ret;
534
288k
}
vp9_superframe.c:init_get_bits
Line
Count
Source
519
10.2k
{
520
10.2k
    int ret = 0;
521
522
10.2k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
10.2k
    s->buffer             = buffer;
529
10.2k
    s->size_in_bits       = bit_size;
530
10.2k
    s->size_in_bits_plus8 = bit_size + 8;
531
10.2k
    s->index              = 0;
532
533
10.2k
    return ret;
534
10.2k
}
vp9_superframe_split.c:init_get_bits
Line
Count
Source
519
6.17k
{
520
6.17k
    int ret = 0;
521
522
6.17k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.17k
    s->buffer             = buffer;
529
6.17k
    s->size_in_bits       = bit_size;
530
6.17k
    s->size_in_bits_plus8 = bit_size + 8;
531
6.17k
    s->index              = 0;
532
533
6.17k
    return ret;
534
6.17k
}
cbs.c:init_get_bits
Line
Count
Source
519
1.01G
{
520
1.01G
    int ret = 0;
521
522
1.01G
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.01G
    s->buffer             = buffer;
529
1.01G
    s->size_in_bits       = bit_size;
530
1.01G
    s->size_in_bits_plus8 = bit_size + 8;
531
1.01G
    s->index              = 0;
532
533
1.01G
    return ret;
534
1.01G
}
cbs_apv.c:init_get_bits
Line
Count
Source
519
462k
{
520
462k
    int ret = 0;
521
522
462k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
462k
    s->buffer             = buffer;
529
462k
    s->size_in_bits       = bit_size;
530
462k
    s->size_in_bits_plus8 = bit_size + 8;
531
462k
    s->index              = 0;
532
533
462k
    return ret;
534
462k
}
cbs_av1.c:init_get_bits
Line
Count
Source
519
35.1M
{
520
35.1M
    int ret = 0;
521
522
35.1M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
35.1M
    s->buffer             = buffer;
529
35.1M
    s->size_in_bits       = bit_size;
530
35.1M
    s->size_in_bits_plus8 = bit_size + 8;
531
35.1M
    s->index              = 0;
532
533
35.1M
    return ret;
534
35.1M
}
cbs_h264.c:init_get_bits
Line
Count
Source
519
4.31M
{
520
4.31M
    int ret = 0;
521
522
4.31M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
4.31M
    s->buffer             = buffer;
529
4.31M
    s->size_in_bits       = bit_size;
530
4.31M
    s->size_in_bits_plus8 = bit_size + 8;
531
4.31M
    s->index              = 0;
532
533
4.31M
    return ret;
534
4.31M
}
Unexecuted instantiation: cbs_h2645.c:init_get_bits
cbs_h265.c:init_get_bits
Line
Count
Source
519
3.97M
{
520
3.97M
    int ret = 0;
521
522
3.97M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
3.97M
    s->buffer             = buffer;
529
3.97M
    s->size_in_bits       = bit_size;
530
3.97M
    s->size_in_bits_plus8 = bit_size + 8;
531
3.97M
    s->index              = 0;
532
533
3.97M
    return ret;
534
3.97M
}
cbs_h266.c:init_get_bits
Line
Count
Source
519
10.2M
{
520
10.2M
    int ret = 0;
521
522
10.2M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
10.2M
    s->buffer             = buffer;
529
10.2M
    s->size_in_bits       = bit_size;
530
10.2M
    s->size_in_bits_plus8 = bit_size + 8;
531
10.2M
    s->index              = 0;
532
533
10.2M
    return ret;
534
10.2M
}
cbs_lcevc.c:init_get_bits
Line
Count
Source
519
9.46M
{
520
9.46M
    int ret = 0;
521
522
9.46M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
9.46M
    s->buffer             = buffer;
529
9.46M
    s->size_in_bits       = bit_size;
530
9.46M
    s->size_in_bits_plus8 = bit_size + 8;
531
9.46M
    s->index              = 0;
532
533
9.46M
    return ret;
534
9.46M
}
cbs_mpeg2.c:init_get_bits
Line
Count
Source
519
929k
{
520
929k
    int ret = 0;
521
522
929k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
929k
    s->buffer             = buffer;
529
929k
    s->size_in_bits       = bit_size;
530
929k
    s->size_in_bits_plus8 = bit_size + 8;
531
929k
    s->index              = 0;
532
533
929k
    return ret;
534
929k
}
cbs_sei.c:init_get_bits
Line
Count
Source
519
52.3M
{
520
52.3M
    int ret = 0;
521
522
52.3M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
52.3M
    s->buffer             = buffer;
529
52.3M
    s->size_in_bits       = bit_size;
530
52.3M
    s->size_in_bits_plus8 = bit_size + 8;
531
52.3M
    s->index              = 0;
532
533
52.3M
    return ret;
534
52.3M
}
cbs_vp8.c:init_get_bits
Line
Count
Source
519
343k
{
520
343k
    int ret = 0;
521
522
343k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
343k
    s->buffer             = buffer;
529
343k
    s->size_in_bits       = bit_size;
530
343k
    s->size_in_bits_plus8 = bit_size + 8;
531
343k
    s->index              = 0;
532
533
343k
    return ret;
534
343k
}
cbs_vp9.c:init_get_bits
Line
Count
Source
519
1.13M
{
520
1.13M
    int ret = 0;
521
522
1.13M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.13M
    s->buffer             = buffer;
529
1.13M
    s->size_in_bits       = bit_size;
530
1.13M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.13M
    s->index              = 0;
532
533
1.13M
    return ret;
534
1.13M
}
dovi_rpudec.c:init_get_bits
Line
Count
Source
519
10.9k
{
520
10.9k
    int ret = 0;
521
522
10.9k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
10.9k
    s->buffer             = buffer;
529
10.9k
    s->size_in_bits       = bit_size;
530
10.9k
    s->size_in_bits_plus8 = bit_size + 8;
531
10.9k
    s->index              = 0;
532
533
10.9k
    return ret;
534
10.9k
}
Unexecuted instantiation: evc_parse.c:init_get_bits
Unexecuted instantiation: evc_ps.c:init_get_bits
h263dec.c:init_get_bits
Line
Count
Source
519
2.54M
{
520
2.54M
    int ret = 0;
521
522
2.54M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.54M
    s->buffer             = buffer;
529
2.54M
    s->size_in_bits       = bit_size;
530
2.54M
    s->size_in_bits_plus8 = bit_size + 8;
531
2.54M
    s->index              = 0;
532
533
2.54M
    return ret;
534
2.54M
}
h2645_parse.c:init_get_bits
Line
Count
Source
519
104M
{
520
104M
    int ret = 0;
521
522
104M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
104M
    s->buffer             = buffer;
529
104M
    s->size_in_bits       = bit_size;
530
104M
    s->size_in_bits_plus8 = bit_size + 8;
531
104M
    s->index              = 0;
532
533
104M
    return ret;
534
104M
}
h264_parse.c:init_get_bits
Line
Count
Source
519
46.2k
{
520
46.2k
    int ret = 0;
521
522
46.2k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
46.2k
    s->buffer             = buffer;
529
46.2k
    s->size_in_bits       = bit_size;
530
46.2k
    s->size_in_bits_plus8 = bit_size + 8;
531
46.2k
    s->index              = 0;
532
533
46.2k
    return ret;
534
46.2k
}
Unexecuted instantiation: h264_ps.c:init_get_bits
Unexecuted instantiation: h264data.c:init_get_bits
Unexecuted instantiation: h265_profile_level.c:init_get_bits
Unexecuted instantiation: ps.c:init_get_bits
Unexecuted instantiation: intelh263dec.c:init_get_bits
Unexecuted instantiation: intrax8.c:init_get_bits
Unexecuted instantiation: ituh263dec.c:init_get_bits
Unexecuted instantiation: mlp_parse.c:init_get_bits
mpeg4audio.c:init_get_bits
Line
Count
Source
519
110k
{
520
110k
    int ret = 0;
521
522
110k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
110k
    s->buffer             = buffer;
529
110k
    s->size_in_bits       = bit_size;
530
110k
    s->size_in_bits_plus8 = bit_size + 8;
531
110k
    s->index              = 0;
532
533
110k
    return ret;
534
110k
}
mpeg4videodec.c:init_get_bits
Line
Count
Source
519
1.69k
{
520
1.69k
    int ret = 0;
521
522
1.69k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.69k
    s->buffer             = buffer;
529
1.69k
    s->size_in_bits       = bit_size;
530
1.69k
    s->size_in_bits_plus8 = bit_size + 8;
531
1.69k
    s->index              = 0;
532
533
1.69k
    return ret;
534
1.69k
}
Unexecuted instantiation: mpeg_er.c:init_get_bits
Unexecuted instantiation: mpegvideo_dec.c:init_get_bits
Unexecuted instantiation: msmpeg4dec.c:init_get_bits
rv10.c:init_get_bits
Line
Count
Source
519
192k
{
520
192k
    int ret = 0;
521
522
192k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
192k
    s->buffer             = buffer;
529
192k
    s->size_in_bits       = bit_size;
530
192k
    s->size_in_bits_plus8 = bit_size + 8;
531
192k
    s->index              = 0;
532
533
192k
    return ret;
534
192k
}
ac3_parser.c:init_get_bits
Line
Count
Source
519
726M
{
520
726M
    int ret = 0;
521
522
726M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
726M
    s->buffer             = buffer;
529
726M
    s->size_in_bits       = bit_size;
530
726M
    s->size_in_bits_plus8 = bit_size + 8;
531
726M
    s->index              = 0;
532
533
726M
    return ret;
534
726M
}
adts_header.c:init_get_bits
Line
Count
Source
519
205M
{
520
205M
    int ret = 0;
521
522
205M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
205M
    s->buffer             = buffer;
529
205M
    s->size_in_bits       = bit_size;
530
205M
    s->size_in_bits_plus8 = bit_size + 8;
531
205M
    s->index              = 0;
532
533
205M
    return ret;
534
205M
}
av1_parse.c:init_get_bits
Line
Count
Source
519
1.25M
{
520
1.25M
    int ret = 0;
521
522
1.25M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.25M
    s->buffer             = buffer;
529
1.25M
    s->size_in_bits       = bit_size;
530
1.25M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.25M
    s->index              = 0;
532
533
1.25M
    return ret;
534
1.25M
}
Unexecuted instantiation: flvdec.c:init_get_bits
Unexecuted instantiation: h2645_vui.c:init_get_bits
vc1_parser.c:init_get_bits
Line
Count
Source
519
1.19M
{
520
1.19M
    int ret = 0;
521
522
1.19M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.19M
    s->buffer             = buffer;
529
1.19M
    s->size_in_bits       = bit_size;
530
1.19M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.19M
    s->index              = 0;
532
533
1.19M
    return ret;
534
1.19M
}
vorbis_parser.c:init_get_bits
Line
Count
Source
519
35.7k
{
520
35.7k
    int ret = 0;
521
522
35.7k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
35.7k
    s->buffer             = buffer;
529
35.7k
    s->size_in_bits       = bit_size;
530
35.7k
    s->size_in_bits_plus8 = bit_size + 8;
531
35.7k
    s->index              = 0;
532
533
35.7k
    return ret;
534
35.7k
}
vp9_parser.c:init_get_bits
Line
Count
Source
519
465k
{
520
465k
    int ret = 0;
521
522
465k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
465k
    s->buffer             = buffer;
529
465k
    s->size_in_bits       = bit_size;
530
465k
    s->size_in_bits_plus8 = bit_size + 8;
531
465k
    s->index              = 0;
532
533
465k
    return ret;
534
465k
}
Unexecuted instantiation: vvc_parser.c:init_get_bits
Unexecuted instantiation: aac_ac3_parser.c:init_get_bits
Unexecuted instantiation: av1_parser.c:init_get_bits
avs2_parser.c:init_get_bits
Line
Count
Source
519
1.01k
{
520
1.01k
    int ret = 0;
521
522
1.01k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.01k
    s->buffer             = buffer;
529
1.01k
    s->size_in_bits       = bit_size;
530
1.01k
    s->size_in_bits_plus8 = bit_size + 8;
531
1.01k
    s->index              = 0;
532
533
1.01k
    return ret;
534
1.01k
}
avs3_parser.c:init_get_bits
Line
Count
Source
519
1
{
520
1
    int ret = 0;
521
522
1
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1
    s->buffer             = buffer;
529
1
    s->size_in_bits       = bit_size;
530
1
    s->size_in_bits_plus8 = bit_size + 8;
531
1
    s->index              = 0;
532
533
1
    return ret;
534
1
}
cavs_parser.c:init_get_bits
Line
Count
Source
519
23.1k
{
520
23.1k
    int ret = 0;
521
522
23.1k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
23.1k
    s->buffer             = buffer;
529
23.1k
    s->size_in_bits       = bit_size;
530
23.1k
    s->size_in_bits_plus8 = bit_size + 8;
531
23.1k
    s->index              = 0;
532
533
23.1k
    return ret;
534
23.1k
}
dca_parser.c:init_get_bits
Line
Count
Source
519
126k
{
520
126k
    int ret = 0;
521
522
126k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
126k
    s->buffer             = buffer;
529
126k
    s->size_in_bits       = bit_size;
530
126k
    s->size_in_bits_plus8 = bit_size + 8;
531
126k
    s->index              = 0;
532
533
126k
    return ret;
534
126k
}
Unexecuted instantiation: dolby_e_parser.c:init_get_bits
evc_parser.c:init_get_bits
Line
Count
Source
519
350k
{
520
350k
    int ret = 0;
521
522
350k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
350k
    s->buffer             = buffer;
529
350k
    s->size_in_bits       = bit_size;
530
350k
    s->size_in_bits_plus8 = bit_size + 8;
531
350k
    s->index              = 0;
532
533
350k
    return ret;
534
350k
}
Unexecuted instantiation: ffv1_parser.c:init_get_bits
flac_parser.c:init_get_bits
Line
Count
Source
519
13.7M
{
520
13.7M
    int ret = 0;
521
522
13.7M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
13.7M
    s->buffer             = buffer;
529
13.7M
    s->size_in_bits       = bit_size;
530
13.7M
    s->size_in_bits_plus8 = bit_size + 8;
531
13.7M
    s->index              = 0;
532
533
13.7M
    return ret;
534
13.7M
}
Unexecuted instantiation: ftr_parser.c:init_get_bits
h264_parser.c:init_get_bits
Line
Count
Source
519
29.8M
{
520
29.8M
    int ret = 0;
521
522
29.8M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
29.8M
    s->buffer             = buffer;
529
29.8M
    s->size_in_bits       = bit_size;
530
29.8M
    s->size_in_bits_plus8 = bit_size + 8;
531
29.8M
    s->index              = 0;
532
533
29.8M
    return ret;
534
29.8M
}
h264_sei.c:init_get_bits
Line
Count
Source
519
5.66M
{
520
5.66M
    int ret = 0;
521
522
5.66M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
5.66M
    s->buffer             = buffer;
529
5.66M
    s->size_in_bits       = bit_size;
530
5.66M
    s->size_in_bits_plus8 = bit_size + 8;
531
5.66M
    s->index              = 0;
532
533
5.66M
    return ret;
534
5.66M
}
Unexecuted instantiation: h264idct.c:init_get_bits
Unexecuted instantiation: parser.c:init_get_bits
sei.c:init_get_bits
Line
Count
Source
519
9.27M
{
520
9.27M
    int ret = 0;
521
522
9.27M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
9.27M
    s->buffer             = buffer;
529
9.27M
    s->size_in_bits       = bit_size;
530
9.27M
    s->size_in_bits_plus8 = bit_size + 8;
531
9.27M
    s->index              = 0;
532
533
9.27M
    return ret;
534
9.27M
}
jpegxl_parser.c:init_get_bits
Line
Count
Source
519
30.7k
{
520
30.7k
    int ret = 0;
521
522
30.7k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
30.7k
    s->buffer             = buffer;
529
30.7k
    s->size_in_bits       = bit_size;
530
30.7k
    s->size_in_bits_plus8 = bit_size + 8;
531
30.7k
    s->index              = 0;
532
533
30.7k
    return ret;
534
30.7k
}
jpegxs_parser.c:init_get_bits
Line
Count
Source
519
11
{
520
11
    int ret = 0;
521
522
11
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
11
    s->buffer             = buffer;
529
11
    s->size_in_bits       = bit_size;
530
11
    s->size_in_bits_plus8 = bit_size + 8;
531
11
    s->index              = 0;
532
533
11
    return ret;
534
11
}
lcevc_parser.c:init_get_bits
Line
Count
Source
519
158
{
520
158
    int ret = 0;
521
522
158
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
158
    s->buffer             = buffer;
529
158
    s->size_in_bits       = bit_size;
530
158
    s->size_in_bits_plus8 = bit_size + 8;
531
158
    s->index              = 0;
532
533
158
    return ret;
534
158
}
mlp_parser.c:init_get_bits
Line
Count
Source
519
490k
{
520
490k
    int ret = 0;
521
522
490k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
490k
    s->buffer             = buffer;
529
490k
    s->size_in_bits       = bit_size;
530
490k
    s->size_in_bits_plus8 = bit_size + 8;
531
490k
    s->index              = 0;
532
533
490k
    return ret;
534
490k
}
mpeg4video_parser.c:init_get_bits
Line
Count
Source
519
593k
{
520
593k
    int ret = 0;
521
522
593k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
593k
    s->buffer             = buffer;
529
593k
    s->size_in_bits       = bit_size;
530
593k
    s->size_in_bits_plus8 = bit_size + 8;
531
593k
    s->index              = 0;
532
533
593k
    return ret;
534
593k
}
Unexecuted instantiation: vc1.c:init_get_bits
Unexecuted instantiation: vc1data.c:init_get_bits
dca.c:init_get_bits
Line
Count
Source
519
363k
{
520
363k
    int ret = 0;
521
522
363k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
363k
    s->buffer             = buffer;
529
363k
    s->size_in_bits       = bit_size;
530
363k
    s->size_in_bits_plus8 = bit_size + 8;
531
363k
    s->index              = 0;
532
533
363k
    return ret;
534
363k
}
dca_exss.c:init_get_bits
Line
Count
Source
519
1.34M
{
520
1.34M
    int ret = 0;
521
522
1.34M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.34M
    s->buffer             = buffer;
529
1.34M
    s->size_in_bits       = bit_size;
530
1.34M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.34M
    s->index              = 0;
532
533
1.34M
    return ret;
534
1.34M
}
dolby_e_parse.c:init_get_bits
Line
Count
Source
519
411k
{
520
411k
    int ret = 0;
521
522
411k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
411k
    s->buffer             = buffer;
529
411k
    s->size_in_bits       = bit_size;
530
411k
    s->size_in_bits_plus8 = bit_size + 8;
531
411k
    s->index              = 0;
532
533
411k
    return ret;
534
411k
}
Unexecuted instantiation: ffv1.c:init_get_bits
Unexecuted instantiation: ffv1_parse.c:init_get_bits
flac.c:init_get_bits
Line
Count
Source
519
635
{
520
635
    int ret = 0;
521
522
635
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
635
    s->buffer             = buffer;
529
635
    s->size_in_bits       = bit_size;
530
635
    s->size_in_bits_plus8 = bit_size + 8;
531
635
    s->index              = 0;
532
533
635
    return ret;
534
635
}
Unexecuted instantiation: h2645_sei.c:init_get_bits
Unexecuted instantiation: parse.c:init_get_bits
jpegxl_parse.c:init_get_bits
Line
Count
Source
519
124k
{
520
124k
    int ret = 0;
521
522
124k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
124k
    s->buffer             = buffer;
529
124k
    s->size_in_bits       = bit_size;
530
124k
    s->size_in_bits_plus8 = bit_size + 8;
531
124k
    s->index              = 0;
532
533
124k
    return ret;
534
124k
}
aom_film_grain.c:init_get_bits
Line
Count
Source
519
154k
{
520
154k
    int ret = 0;
521
522
154k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
154k
    s->buffer             = buffer;
529
154k
    s->size_in_bits       = bit_size;
530
154k
    s->size_in_bits_plus8 = bit_size + 8;
531
154k
    s->index              = 0;
532
533
154k
    return ret;
534
154k
}
dynamic_hdr_vivid.c:init_get_bits
Line
Count
Source
519
85.4k
{
520
85.4k
    int ret = 0;
521
522
85.4k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
85.4k
    s->buffer             = buffer;
529
85.4k
    s->size_in_bits       = bit_size;
530
85.4k
    s->size_in_bits_plus8 = bit_size + 8;
531
85.4k
    s->index              = 0;
532
533
85.4k
    return ret;
534
85.4k
}
hdr_dynamic_metadata.c:init_get_bits
Line
Count
Source
519
392k
{
520
392k
    int ret = 0;
521
522
392k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
392k
    s->buffer             = buffer;
529
392k
    s->size_in_bits       = bit_size;
530
392k
    s->size_in_bits_plus8 = bit_size + 8;
531
392k
    s->index              = 0;
532
533
392k
    return ret;
534
392k
}
av1dec.c:init_get_bits
Line
Count
Source
519
3.93M
{
520
3.93M
    int ret = 0;
521
522
3.93M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
3.93M
    s->buffer             = buffer;
529
3.93M
    s->size_in_bits       = bit_size;
530
3.93M
    s->size_in_bits_plus8 = bit_size + 8;
531
3.93M
    s->index              = 0;
532
533
3.93M
    return ret;
534
3.93M
}
Unexecuted instantiation: bit.c:init_get_bits
dtsdec.c:init_get_bits
Line
Count
Source
519
1.17M
{
520
1.17M
    int ret = 0;
521
522
1.17M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.17M
    s->buffer             = buffer;
529
1.17M
    s->size_in_bits       = bit_size;
530
1.17M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.17M
    s->index              = 0;
532
533
1.17M
    return ret;
534
1.17M
}
Unexecuted instantiation: dtshddec.c:init_get_bits
h264dec.c:init_get_bits
Line
Count
Source
519
2.96M
{
520
2.96M
    int ret = 0;
521
522
2.96M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.96M
    s->buffer             = buffer;
529
2.96M
    s->size_in_bits       = bit_size;
530
2.96M
    s->size_in_bits_plus8 = bit_size + 8;
531
2.96M
    s->index              = 0;
532
533
2.96M
    return ret;
534
2.96M
}
Unexecuted instantiation: hls_sample_encryption.c:init_get_bits
Unexecuted instantiation: isom.c:init_get_bits
Unexecuted instantiation: matroskadec.c:init_get_bits
mov.c:init_get_bits
Line
Count
Source
519
83.1k
{
520
83.1k
    int ret = 0;
521
522
83.1k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
83.1k
    s->buffer             = buffer;
529
83.1k
    s->size_in_bits       = bit_size;
530
83.1k
    s->size_in_bits_plus8 = bit_size + 8;
531
83.1k
    s->index              = 0;
532
533
83.1k
    return ret;
534
83.1k
}
mpc8.c:init_get_bits
Line
Count
Source
519
433k
{
520
433k
    int ret = 0;
521
522
433k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
433k
    s->buffer             = buffer;
529
433k
    s->size_in_bits       = bit_size;
530
433k
    s->size_in_bits_plus8 = bit_size + 8;
531
433k
    s->index              = 0;
532
533
433k
    return ret;
534
433k
}
mpegts.c:init_get_bits
Line
Count
Source
519
14.8k
{
520
14.8k
    int ret = 0;
521
522
14.8k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
14.8k
    s->buffer             = buffer;
529
14.8k
    s->size_in_bits       = bit_size;
530
14.8k
    s->size_in_bits_plus8 = bit_size + 8;
531
14.8k
    s->index              = 0;
532
533
14.8k
    return ret;
534
14.8k
}
oggparsetheora.c:init_get_bits
Line
Count
Source
519
21.6k
{
520
21.6k
    int ret = 0;
521
522
21.6k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
21.6k
    s->buffer             = buffer;
529
21.6k
    s->size_in_bits       = bit_size;
530
21.6k
    s->size_in_bits_plus8 = bit_size + 8;
531
21.6k
    s->index              = 0;
532
533
21.6k
    return ret;
534
21.6k
}
shortendec.c:init_get_bits
Line
Count
Source
519
11.0k
{
520
11.0k
    int ret = 0;
521
522
11.0k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
1.95k
        bit_size    = 0;
524
1.95k
        buffer      = NULL;
525
1.95k
        ret         = AVERROR_INVALIDDATA;
526
1.95k
    }
527
528
11.0k
    s->buffer             = buffer;
529
11.0k
    s->size_in_bits       = bit_size;
530
11.0k
    s->size_in_bits_plus8 = bit_size + 8;
531
11.0k
    s->index              = 0;
532
533
11.0k
    return ret;
534
11.0k
}
swfdec.c:init_get_bits
Line
Count
Source
519
3.21k
{
520
3.21k
    int ret = 0;
521
522
3.21k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
3.21k
    s->buffer             = buffer;
529
3.21k
    s->size_in_bits       = bit_size;
530
3.21k
    s->size_in_bits_plus8 = bit_size + 8;
531
3.21k
    s->index              = 0;
532
533
3.21k
    return ret;
534
3.21k
}
takdec.c:init_get_bits
Line
Count
Source
519
575
{
520
575
    int ret = 0;
521
522
575
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
575
    s->buffer             = buffer;
529
575
    s->size_in_bits       = bit_size;
530
575
    s->size_in_bits_plus8 = bit_size + 8;
531
575
    s->index              = 0;
532
533
575
    return ret;
534
575
}
iamf_parse.c:init_get_bits
Line
Count
Source
519
1.43M
{
520
1.43M
    int ret = 0;
521
522
1.43M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.43M
    s->buffer             = buffer;
529
1.43M
    s->size_in_bits       = bit_size;
530
1.43M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.43M
    s->index              = 0;
532
533
1.43M
    return ret;
534
1.43M
}
dirac.c:init_get_bits
Line
Count
Source
519
32.3k
{
520
32.3k
    int ret = 0;
521
522
32.3k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
32.3k
    s->buffer             = buffer;
529
32.3k
    s->size_in_bits       = bit_size;
530
32.3k
    s->size_in_bits_plus8 = bit_size + 8;
531
32.3k
    s->index              = 0;
532
533
32.3k
    return ret;
534
32.3k
}
atrac9dec.c:init_get_bits
Line
Count
Source
519
830k
{
520
830k
    int ret = 0;
521
522
830k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
830k
    s->buffer             = buffer;
529
830k
    s->size_in_bits       = bit_size;
530
830k
    s->size_in_bits_plus8 = bit_size + 8;
531
830k
    s->index              = 0;
532
533
830k
    return ret;
534
830k
}
Unexecuted instantiation: enc.c:init_get_bits
Unexecuted instantiation: enc_psy.c:init_get_bits
Unexecuted instantiation: pvq.c:init_get_bits
rc.c:init_get_bits
Line
Count
Source
519
303k
{
520
303k
    int ret = 0;
521
522
303k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
4.33k
        bit_size    = 0;
524
4.33k
        buffer      = NULL;
525
4.33k
        ret         = AVERROR_INVALIDDATA;
526
4.33k
    }
527
528
303k
    s->buffer             = buffer;
529
303k
    s->size_in_bits       = bit_size;
530
303k
    s->size_in_bits_plus8 = bit_size + 8;
531
303k
    s->index              = 0;
532
533
303k
    return ret;
534
303k
}
Unexecuted instantiation: celt.c:init_get_bits
gsmdec.c:init_get_bits
Line
Count
Source
519
1.34M
{
520
1.34M
    int ret = 0;
521
522
1.34M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.34M
    s->buffer             = buffer;
529
1.34M
    s->size_in_bits       = bit_size;
530
1.34M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.34M
    s->index              = 0;
532
533
1.34M
    return ret;
534
1.34M
}
msgsmdec.c:init_get_bits
Line
Count
Source
519
681k
{
520
681k
    int ret = 0;
521
522
681k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
681k
    s->buffer             = buffer;
529
681k
    s->size_in_bits       = bit_size;
530
681k
    s->size_in_bits_plus8 = bit_size + 8;
531
681k
    s->index              = 0;
532
533
681k
    return ret;
534
681k
}
imc.c:init_get_bits
Line
Count
Source
519
296k
{
520
296k
    int ret = 0;
521
522
296k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
296k
    s->buffer             = buffer;
529
296k
    s->size_in_bits       = bit_size;
530
296k
    s->size_in_bits_plus8 = bit_size + 8;
531
296k
    s->index              = 0;
532
533
296k
    return ret;
534
296k
}
adpcm.c:init_get_bits
Line
Count
Source
519
3.28M
{
520
3.28M
    int ret = 0;
521
522
3.28M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
3.28M
    s->buffer             = buffer;
529
3.28M
    s->size_in_bits       = bit_size;
530
3.28M
    s->size_in_bits_plus8 = bit_size + 8;
531
3.28M
    s->index              = 0;
532
533
3.28M
    return ret;
534
3.28M
}
Unexecuted instantiation: wmaenc.c:init_get_bits
Unexecuted instantiation: wma.c:init_get_bits
cfhd.c:init_get_bits
Line
Count
Source
519
5.89k
{
520
5.89k
    int ret = 0;
521
522
5.89k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
5.89k
    s->buffer             = buffer;
529
5.89k
    s->size_in_bits       = bit_size;
530
5.89k
    s->size_in_bits_plus8 = bit_size + 8;
531
5.89k
    s->index              = 0;
532
533
5.89k
    return ret;
534
5.89k
}
wavarc.c:init_get_bits
Line
Count
Source
519
1.78M
{
520
1.78M
    int ret = 0;
521
522
1.78M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.78M
    s->buffer             = buffer;
529
1.78M
    s->size_in_bits       = bit_size;
530
1.78M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.78M
    s->index              = 0;
532
533
1.78M
    return ret;
534
1.78M
}
escape130.c:init_get_bits
Line
Count
Source
519
138k
{
520
138k
    int ret = 0;
521
522
138k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
138k
    s->buffer             = buffer;
529
138k
    s->size_in_bits       = bit_size;
530
138k
    s->size_in_bits_plus8 = bit_size + 8;
531
138k
    s->index              = 0;
532
533
138k
    return ret;
534
138k
}
asvdec.c:init_get_bits
Line
Count
Source
519
216k
{
520
216k
    int ret = 0;
521
522
216k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
216k
    s->buffer             = buffer;
529
216k
    s->size_in_bits       = bit_size;
530
216k
    s->size_in_bits_plus8 = bit_size + 8;
531
216k
    s->index              = 0;
532
533
216k
    return ret;
534
216k
}
diracdec.c:init_get_bits
Line
Count
Source
519
2.20M
{
520
2.20M
    int ret = 0;
521
522
2.20M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.20M
    s->buffer             = buffer;
529
2.20M
    s->size_in_bits       = bit_size;
530
2.20M
    s->size_in_bits_plus8 = bit_size + 8;
531
2.20M
    s->index              = 0;
532
533
2.20M
    return ret;
534
2.20M
}
Unexecuted instantiation: dirac_arith.c:init_get_bits
wmadec.c:init_get_bits
Line
Count
Source
519
1.49M
{
520
1.49M
    int ret = 0;
521
522
1.49M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.49M
    s->buffer             = buffer;
529
1.49M
    s->size_in_bits       = bit_size;
530
1.49M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.49M
    s->index              = 0;
532
533
1.49M
    return ret;
534
1.49M
}
Unexecuted instantiation: aacenc.c:init_get_bits
imm4.c:init_get_bits
Line
Count
Source
519
115k
{
520
115k
    int ret = 0;
521
522
115k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
115k
    s->buffer             = buffer;
529
115k
    s->size_in_bits       = bit_size;
530
115k
    s->size_in_bits_plus8 = bit_size + 8;
531
115k
    s->index              = 0;
532
533
115k
    return ret;
534
115k
}
exr.c:init_get_bits
Line
Count
Source
519
15.6k
{
520
15.6k
    int ret = 0;
521
522
15.6k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
15.6k
    s->buffer             = buffer;
529
15.6k
    s->size_in_bits       = bit_size;
530
15.6k
    s->size_in_bits_plus8 = bit_size + 8;
531
15.6k
    s->index              = 0;
532
533
15.6k
    return ret;
534
15.6k
}
aacdec.c:init_get_bits
Line
Count
Source
519
4.45M
{
520
4.45M
    int ret = 0;
521
522
4.45M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
4.45M
    s->buffer             = buffer;
529
4.45M
    s->size_in_bits       = bit_size;
530
4.45M
    s->size_in_bits_plus8 = bit_size + 8;
531
4.45M
    s->index              = 0;
532
533
4.45M
    return ret;
534
4.45M
}
Unexecuted instantiation: aacdec_fixed.c:init_get_bits
Unexecuted instantiation: aacdec_float.c:init_get_bits
Unexecuted instantiation: aacdec_tab.c:init_get_bits
aacdec_usac.c:init_get_bits
Line
Count
Source
519
2.45k
{
520
2.45k
    int ret = 0;
521
522
2.45k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.45k
    s->buffer             = buffer;
529
2.45k
    s->size_in_bits       = bit_size;
530
2.45k
    s->size_in_bits_plus8 = bit_size + 8;
531
2.45k
    s->index              = 0;
532
533
2.45k
    return ret;
534
2.45k
}
Unexecuted instantiation: aacdec_usac_mps212.c:init_get_bits
Unexecuted instantiation: aacps_common.c:init_get_bits
Unexecuted instantiation: aacsbr.c:init_get_bits
Unexecuted instantiation: aacsbr_fixed.c:init_get_bits
Unexecuted instantiation: aacdec_ac.c:init_get_bits
Unexecuted instantiation: aacdec_lpd.c:init_get_bits
Unexecuted instantiation: aacps_fixed.c:init_get_bits
Unexecuted instantiation: aacps_float.c:init_get_bits
mjpegdec.c:init_get_bits
Line
Count
Source
519
127M
{
520
127M
    int ret = 0;
521
522
127M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
127M
    s->buffer             = buffer;
529
127M
    s->size_in_bits       = bit_size;
530
127M
    s->size_in_bits_plus8 = bit_size + 8;
531
127M
    s->index              = 0;
532
533
127M
    return ret;
534
127M
}
Unexecuted instantiation: mjpegdec_common.c:init_get_bits
Unexecuted instantiation: jpeglsdec.c:init_get_bits
jvdec.c:init_get_bits
Line
Count
Source
519
29.2k
{
520
29.2k
    int ret = 0;
521
522
29.2k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
29.2k
    s->buffer             = buffer;
529
29.2k
    s->size_in_bits       = bit_size;
530
29.2k
    s->size_in_bits_plus8 = bit_size + 8;
531
29.2k
    s->index              = 0;
532
533
29.2k
    return ret;
534
29.2k
}
Unexecuted instantiation: rdt.c:init_get_bits
Unexecuted instantiation: rtpdec_h261.c:init_get_bits
Unexecuted instantiation: rtpdec_h263_rfc2190.c:init_get_bits
Unexecuted instantiation: rtpdec_latm.c:init_get_bits
Unexecuted instantiation: rtpdec_mpeg4.c:init_get_bits
Unexecuted instantiation: rtpdec_qt.c:init_get_bits
Unexecuted instantiation: h264_cavlc.c:init_get_bits
Unexecuted instantiation: h264_direct.c:init_get_bits
h264_mb.c:init_get_bits
Line
Count
Source
519
2.04k
{
520
2.04k
    int ret = 0;
521
522
2.04k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.04k
    s->buffer             = buffer;
529
2.04k
    s->size_in_bits       = bit_size;
530
2.04k
    s->size_in_bits_plus8 = bit_size + 8;
531
2.04k
    s->index              = 0;
532
533
2.04k
    return ret;
534
2.04k
}
Unexecuted instantiation: h264_picture.c:init_get_bits
Unexecuted instantiation: h264_refs.c:init_get_bits
Unexecuted instantiation: h264_slice.c:init_get_bits
Unexecuted instantiation: h264_cabac.c:init_get_bits
Unexecuted instantiation: h264_loopfilter.c:init_get_bits
alsdec.c:init_get_bits
Line
Count
Source
519
724k
{
520
724k
    int ret = 0;
521
522
724k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
724k
    s->buffer             = buffer;
529
724k
    s->size_in_bits       = bit_size;
530
724k
    s->size_in_bits_plus8 = bit_size + 8;
531
724k
    s->index              = 0;
532
533
724k
    return ret;
534
724k
}
Unexecuted instantiation: bgmc.c:init_get_bits
Unexecuted instantiation: mlz.c:init_get_bits
bonk.c:init_get_bits
Line
Count
Source
519
73.6k
{
520
73.6k
    int ret = 0;
521
522
73.6k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
73.6k
    s->buffer             = buffer;
529
73.6k
    s->size_in_bits       = bit_size;
530
73.6k
    s->size_in_bits_plus8 = bit_size + 8;
531
73.6k
    s->index              = 0;
532
533
73.6k
    return ret;
534
73.6k
}
Unexecuted instantiation: mxpegdec.c:init_get_bits
Unexecuted instantiation: rv30.c:init_get_bits
rv34.c:init_get_bits
Line
Count
Source
519
425k
{
520
425k
    int ret = 0;
521
522
425k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
425k
    s->buffer             = buffer;
529
425k
    s->size_in_bits       = bit_size;
530
425k
    s->size_in_bits_plus8 = bit_size + 8;
531
425k
    s->index              = 0;
532
533
425k
    return ret;
534
425k
}
indeo3.c:init_get_bits
Line
Count
Source
519
17.0k
{
520
17.0k
    int ret = 0;
521
522
17.0k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
216
        bit_size    = 0;
524
216
        buffer      = NULL;
525
216
        ret         = AVERROR_INVALIDDATA;
526
216
    }
527
528
17.0k
    s->buffer             = buffer;
529
17.0k
    s->size_in_bits       = bit_size;
530
17.0k
    s->size_in_bits_plus8 = bit_size + 8;
531
17.0k
    s->index              = 0;
532
533
17.0k
    return ret;
534
17.0k
}
eamad.c:init_get_bits
Line
Count
Source
519
153k
{
520
153k
    int ret = 0;
521
522
153k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
153k
    s->buffer             = buffer;
529
153k
    s->size_in_bits       = bit_size;
530
153k
    s->size_in_bits_plus8 = bit_size + 8;
531
153k
    s->index              = 0;
532
533
153k
    return ret;
534
153k
}
Unexecuted instantiation: mpeg12.c:init_get_bits
g726.c:init_get_bits
Line
Count
Source
519
273k
{
520
273k
    int ret = 0;
521
522
273k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
273k
    s->buffer             = buffer;
529
273k
    s->size_in_bits       = bit_size;
530
273k
    s->size_in_bits_plus8 = bit_size + 8;
531
273k
    s->index              = 0;
532
533
273k
    return ret;
534
273k
}
vc1dec.c:init_get_bits
Line
Count
Source
519
2.02M
{
520
2.02M
    int ret = 0;
521
522
2.02M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.02M
    s->buffer             = buffer;
529
2.02M
    s->size_in_bits       = bit_size;
530
2.02M
    s->size_in_bits_plus8 = bit_size + 8;
531
2.02M
    s->index              = 0;
532
533
2.02M
    return ret;
534
2.02M
}
Unexecuted instantiation: vc1_block.c:init_get_bits
Unexecuted instantiation: vc1_loopfilter.c:init_get_bits
Unexecuted instantiation: vc1_mc.c:init_get_bits
Unexecuted instantiation: vc1_pred.c:init_get_bits
mpegaudiodec_float.c:init_get_bits
Line
Count
Source
519
3.84M
{
520
3.84M
    int ret = 0;
521
522
3.84M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
3.84M
    s->buffer             = buffer;
529
3.84M
    s->size_in_bits       = bit_size;
530
3.84M
    s->size_in_bits_plus8 = bit_size + 8;
531
3.84M
    s->index              = 0;
532
533
3.84M
    return ret;
534
3.84M
}
huffyuvdec.c:init_get_bits
Line
Count
Source
519
288k
{
520
288k
    int ret = 0;
521
522
288k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
240
        bit_size    = 0;
524
240
        buffer      = NULL;
525
240
        ret         = AVERROR_INVALIDDATA;
526
240
    }
527
528
288k
    s->buffer             = buffer;
529
288k
    s->size_in_bits       = bit_size;
530
288k
    s->size_in_bits_plus8 = bit_size + 8;
531
288k
    s->index              = 0;
532
533
288k
    return ret;
534
288k
}
speexdec.c:init_get_bits
Line
Count
Source
519
461k
{
520
461k
    int ret = 0;
521
522
461k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
461k
    s->buffer             = buffer;
529
461k
    s->size_in_bits       = bit_size;
530
461k
    s->size_in_bits_plus8 = bit_size + 8;
531
461k
    s->index              = 0;
532
533
461k
    return ret;
534
461k
}
atrac3plusdec.c:init_get_bits
Line
Count
Source
519
2.15M
{
520
2.15M
    int ret = 0;
521
522
2.15M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.15M
    s->buffer             = buffer;
529
2.15M
    s->size_in_bits       = bit_size;
530
2.15M
    s->size_in_bits_plus8 = bit_size + 8;
531
2.15M
    s->index              = 0;
532
533
2.15M
    return ret;
534
2.15M
}
Unexecuted instantiation: atrac3plusdsp.c:init_get_bits
Unexecuted instantiation: atrac3plus.c:init_get_bits
mss4.c:init_get_bits
Line
Count
Source
519
20.5k
{
520
20.5k
    int ret = 0;
521
522
20.5k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
20.5k
    s->buffer             = buffer;
529
20.5k
    s->size_in_bits       = bit_size;
530
20.5k
    s->size_in_bits_plus8 = bit_size + 8;
531
20.5k
    s->index              = 0;
532
533
20.5k
    return ret;
534
20.5k
}
tiff.c:init_get_bits
Line
Count
Source
519
81.6k
{
520
81.6k
    int ret = 0;
521
522
81.6k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
81.6k
    s->buffer             = buffer;
529
81.6k
    s->size_in_bits       = bit_size;
530
81.6k
    s->size_in_bits_plus8 = bit_size + 8;
531
81.6k
    s->index              = 0;
532
533
81.6k
    return ret;
534
81.6k
}
faxcompr.c:init_get_bits
Line
Count
Source
519
32.8k
{
520
32.8k
    int ret = 0;
521
522
32.8k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
32.8k
    s->buffer             = buffer;
529
32.8k
    s->size_in_bits       = bit_size;
530
32.8k
    s->size_in_bits_plus8 = bit_size + 8;
531
32.8k
    s->index              = 0;
532
533
32.8k
    return ret;
534
32.8k
}
ac3dec_float.c:init_get_bits
Line
Count
Source
519
2.34M
{
520
2.34M
    int ret = 0;
521
522
2.34M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.34M
    s->buffer             = buffer;
529
2.34M
    s->size_in_bits       = bit_size;
530
2.34M
    s->size_in_bits_plus8 = bit_size + 8;
531
2.34M
    s->index              = 0;
532
533
2.34M
    return ret;
534
2.34M
}
on2avc.c:init_get_bits
Line
Count
Source
519
199k
{
520
199k
    int ret = 0;
521
522
199k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
199k
    s->buffer             = buffer;
529
199k
    s->size_in_bits       = bit_size;
530
199k
    s->size_in_bits_plus8 = bit_size + 8;
531
199k
    s->index              = 0;
532
533
199k
    return ret;
534
199k
}
smacker.c:init_get_bits
Line
Count
Source
519
155k
{
520
155k
    int ret = 0;
521
522
155k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
155k
    s->buffer             = buffer;
529
155k
    s->size_in_bits       = bit_size;
530
155k
    s->size_in_bits_plus8 = bit_size + 8;
531
155k
    s->index              = 0;
532
533
155k
    return ret;
534
155k
}
dvbsubdec.c:init_get_bits
Line
Count
Source
519
106k
{
520
106k
    int ret = 0;
521
522
106k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
106k
    s->buffer             = buffer;
529
106k
    s->size_in_bits       = bit_size;
530
106k
    s->size_in_bits_plus8 = bit_size + 8;
531
106k
    s->index              = 0;
532
533
106k
    return ret;
534
106k
}
mss1.c:init_get_bits
Line
Count
Source
519
330k
{
520
330k
    int ret = 0;
521
522
330k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
330k
    s->buffer             = buffer;
529
330k
    s->size_in_bits       = bit_size;
530
330k
    s->size_in_bits_plus8 = bit_size + 8;
531
330k
    s->index              = 0;
532
533
330k
    return ret;
534
330k
}
Unexecuted instantiation: mss12.c:init_get_bits
mss2.c:init_get_bits
Line
Count
Source
519
190k
{
520
190k
    int ret = 0;
521
522
190k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
190k
    s->buffer             = buffer;
529
190k
    s->size_in_bits       = bit_size;
530
190k
    s->size_in_bits_plus8 = bit_size + 8;
531
190k
    s->index              = 0;
532
533
190k
    return ret;
534
190k
}
mdec.c:init_get_bits
Line
Count
Source
519
128k
{
520
128k
    int ret = 0;
521
522
128k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
128k
    s->buffer             = buffer;
529
128k
    s->size_in_bits       = bit_size;
530
128k
    s->size_in_bits_plus8 = bit_size + 8;
531
128k
    s->index              = 0;
532
533
128k
    return ret;
534
128k
}
osq.c:init_get_bits
Line
Count
Source
519
30.5k
{
520
30.5k
    int ret = 0;
521
522
30.5k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
30.5k
    s->buffer             = buffer;
529
30.5k
    s->size_in_bits       = bit_size;
530
30.5k
    s->size_in_bits_plus8 = bit_size + 8;
531
30.5k
    s->index              = 0;
532
533
30.5k
    return ret;
534
30.5k
}
vp6.c:init_get_bits
Line
Count
Source
519
9.37k
{
520
9.37k
    int ret = 0;
521
522
9.37k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
9.37k
    s->buffer             = buffer;
529
9.37k
    s->size_in_bits       = bit_size;
530
9.37k
    s->size_in_bits_plus8 = bit_size + 8;
531
9.37k
    s->index              = 0;
532
533
9.37k
    return ret;
534
9.37k
}
Unexecuted instantiation: vp56.c:init_get_bits
Unexecuted instantiation: vp56data.c:init_get_bits
loco.c:init_get_bits
Line
Count
Source
519
499k
{
520
499k
    int ret = 0;
521
522
499k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
499k
    s->buffer             = buffer;
529
499k
    s->size_in_bits       = bit_size;
530
499k
    s->size_in_bits_plus8 = bit_size + 8;
531
499k
    s->index              = 0;
532
533
499k
    return ret;
534
499k
}
Unexecuted instantiation: vp5.c:init_get_bits
ra144dec.c:init_get_bits
Line
Count
Source
519
485k
{
520
485k
    int ret = 0;
521
522
485k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
485k
    s->buffer             = buffer;
529
485k
    s->size_in_bits       = bit_size;
530
485k
    s->size_in_bits_plus8 = bit_size + 8;
531
485k
    s->index              = 0;
532
533
485k
    return ret;
534
485k
}
Unexecuted instantiation: indeo5.c:init_get_bits
ivi.c:init_get_bits
Line
Count
Source
519
281k
{
520
281k
    int ret = 0;
521
522
281k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
281k
    s->buffer             = buffer;
529
281k
    s->size_in_bits       = bit_size;
530
281k
    s->size_in_bits_plus8 = bit_size + 8;
531
281k
    s->index              = 0;
532
533
281k
    return ret;
534
281k
}
Unexecuted instantiation: ivi_dsp.c:init_get_bits
apac.c:init_get_bits
Line
Count
Source
519
300k
{
520
300k
    int ret = 0;
521
522
300k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
300k
    s->buffer             = buffer;
529
300k
    s->size_in_bits       = bit_size;
530
300k
    s->size_in_bits_plus8 = bit_size + 8;
531
300k
    s->index              = 0;
532
533
300k
    return ret;
534
300k
}
clearvideo.c:init_get_bits
Line
Count
Source
519
16.1k
{
520
16.1k
    int ret = 0;
521
522
16.1k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
16.1k
    s->buffer             = buffer;
529
16.1k
    s->size_in_bits       = bit_size;
530
16.1k
    s->size_in_bits_plus8 = bit_size + 8;
531
16.1k
    s->index              = 0;
532
533
16.1k
    return ret;
534
16.1k
}
dxtory.c:init_get_bits
Line
Count
Source
519
7.23k
{
520
7.23k
    int ret = 0;
521
522
7.23k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
7.23k
    s->buffer             = buffer;
529
7.23k
    s->size_in_bits       = bit_size;
530
7.23k
    s->size_in_bits_plus8 = bit_size + 8;
531
7.23k
    s->index              = 0;
532
533
7.23k
    return ret;
534
7.23k
}
mpegaudiodec_fixed.c:init_get_bits
Line
Count
Source
519
3.32M
{
520
3.32M
    int ret = 0;
521
522
3.32M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
3.32M
    s->buffer             = buffer;
529
3.32M
    s->size_in_bits       = bit_size;
530
3.32M
    s->size_in_bits_plus8 = bit_size + 8;
531
3.32M
    s->index              = 0;
532
533
3.32M
    return ret;
534
3.32M
}
ralf.c:init_get_bits
Line
Count
Source
519
305k
{
520
305k
    int ret = 0;
521
522
305k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
305k
    s->buffer             = buffer;
529
305k
    s->size_in_bits       = bit_size;
530
305k
    s->size_in_bits_plus8 = bit_size + 8;
531
305k
    s->index              = 0;
532
533
305k
    return ret;
534
305k
}
pixlet.c:init_get_bits
Line
Count
Source
519
35.1k
{
520
35.1k
    int ret = 0;
521
522
35.1k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
35.1k
    s->buffer             = buffer;
529
35.1k
    s->size_in_bits       = bit_size;
530
35.1k
    s->size_in_bits_plus8 = bit_size + 8;
531
35.1k
    s->index              = 0;
532
533
35.1k
    return ret;
534
35.1k
}
wnv1.c:init_get_bits
Line
Count
Source
519
98.1k
{
520
98.1k
    int ret = 0;
521
522
98.1k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
98.1k
    s->buffer             = buffer;
529
98.1k
    s->size_in_bits       = bit_size;
530
98.1k
    s->size_in_bits_plus8 = bit_size + 8;
531
98.1k
    s->index              = 0;
532
533
98.1k
    return ret;
534
98.1k
}
Unexecuted instantiation: qoadec.c:init_get_bits
vima.c:init_get_bits
Line
Count
Source
519
111k
{
520
111k
    int ret = 0;
521
522
111k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
111k
    s->buffer             = buffer;
529
111k
    s->size_in_bits       = bit_size;
530
111k
    s->size_in_bits_plus8 = bit_size + 8;
531
111k
    s->index              = 0;
532
533
111k
    return ret;
534
111k
}
leaddec.c:init_get_bits
Line
Count
Source
519
109k
{
520
109k
    int ret = 0;
521
522
109k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
109k
    s->buffer             = buffer;
529
109k
    s->size_in_bits       = bit_size;
530
109k
    s->size_in_bits_plus8 = bit_size + 8;
531
109k
    s->index              = 0;
532
533
109k
    return ret;
534
109k
}
eatqi.c:init_get_bits
Line
Count
Source
519
119k
{
520
119k
    int ret = 0;
521
522
119k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
119k
    s->buffer             = buffer;
529
119k
    s->size_in_bits       = bit_size;
530
119k
    s->size_in_bits_plus8 = bit_size + 8;
531
119k
    s->index              = 0;
532
533
119k
    return ret;
534
119k
}
lagarith.c:init_get_bits
Line
Count
Source
519
11.4k
{
520
11.4k
    int ret = 0;
521
522
11.4k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
11.4k
    s->buffer             = buffer;
529
11.4k
    s->size_in_bits       = bit_size;
530
11.4k
    s->size_in_bits_plus8 = bit_size + 8;
531
11.4k
    s->index              = 0;
532
533
11.4k
    return ret;
534
11.4k
}
Unexecuted instantiation: lagarithrac.c:init_get_bits
dss_sp.c:init_get_bits
Line
Count
Source
519
327k
{
520
327k
    int ret = 0;
521
522
327k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
327k
    s->buffer             = buffer;
529
327k
    s->size_in_bits       = bit_size;
530
327k
    s->size_in_bits_plus8 = bit_size + 8;
531
327k
    s->index              = 0;
532
533
327k
    return ret;
534
327k
}
siren.c:init_get_bits
Line
Count
Source
519
1.02M
{
520
1.02M
    int ret = 0;
521
522
1.02M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.02M
    s->buffer             = buffer;
529
1.02M
    s->size_in_bits       = bit_size;
530
1.02M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.02M
    s->index              = 0;
532
533
1.02M
    return ret;
534
1.02M
}
cavsdec.c:init_get_bits
Line
Count
Source
519
1.39M
{
520
1.39M
    int ret = 0;
521
522
1.39M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.39M
    s->buffer             = buffer;
529
1.39M
    s->size_in_bits       = bit_size;
530
1.39M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.39M
    s->index              = 0;
532
533
1.39M
    return ret;
534
1.39M
}
Unexecuted instantiation: cavs.c:init_get_bits
Unexecuted instantiation: cavsdata.c:init_get_bits
hcom.c:init_get_bits
Line
Count
Source
519
191k
{
520
191k
    int ret = 0;
521
522
191k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
191k
    s->buffer             = buffer;
529
191k
    s->size_in_bits       = bit_size;
530
191k
    s->size_in_bits_plus8 = bit_size + 8;
531
191k
    s->index              = 0;
532
533
191k
    return ret;
534
191k
}
vp3.c:init_get_bits
Line
Count
Source
519
339k
{
520
339k
    int ret = 0;
521
522
339k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
339k
    s->buffer             = buffer;
529
339k
    s->size_in_bits       = bit_size;
530
339k
    s->size_in_bits_plus8 = bit_size + 8;
531
339k
    s->index              = 0;
532
533
339k
    return ret;
534
339k
}
webp.c:init_get_bits
Line
Count
Source
519
343k
{
520
343k
    int ret = 0;
521
522
343k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
343k
    s->buffer             = buffer;
529
343k
    s->size_in_bits       = bit_size;
530
343k
    s->size_in_bits_plus8 = bit_size + 8;
531
343k
    s->index              = 0;
532
533
343k
    return ret;
534
343k
}
eatgv.c:init_get_bits
Line
Count
Source
519
6.65k
{
520
6.65k
    int ret = 0;
521
522
6.65k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.65k
    s->buffer             = buffer;
529
6.65k
    s->size_in_bits       = bit_size;
530
6.65k
    s->size_in_bits_plus8 = bit_size + 8;
531
6.65k
    s->index              = 0;
532
533
6.65k
    return ret;
534
6.65k
}
eatgq.c:init_get_bits
Line
Count
Source
519
120k
{
520
120k
    int ret = 0;
521
522
120k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
120k
    s->buffer             = buffer;
529
120k
    s->size_in_bits       = bit_size;
530
120k
    s->size_in_bits_plus8 = bit_size + 8;
531
120k
    s->index              = 0;
532
533
120k
    return ret;
534
120k
}
sga.c:init_get_bits
Line
Count
Source
519
6.61k
{
520
6.61k
    int ret = 0;
521
522
6.61k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.61k
    s->buffer             = buffer;
529
6.61k
    s->size_in_bits       = bit_size;
530
6.61k
    s->size_in_bits_plus8 = bit_size + 8;
531
6.61k
    s->index              = 0;
532
533
6.61k
    return ret;
534
6.61k
}
binkaudio.c:init_get_bits
Line
Count
Source
519
470k
{
520
470k
    int ret = 0;
521
522
470k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
470k
    s->buffer             = buffer;
529
470k
    s->size_in_bits       = bit_size;
530
470k
    s->size_in_bits_plus8 = bit_size + 8;
531
470k
    s->index              = 0;
532
533
470k
    return ret;
534
470k
}
mpeg12dec.c:init_get_bits
Line
Count
Source
519
2.75M
{
520
2.75M
    int ret = 0;
521
522
2.75M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.75M
    s->buffer             = buffer;
529
2.75M
    s->size_in_bits       = bit_size;
530
2.75M
    s->size_in_bits_plus8 = bit_size + 8;
531
2.75M
    s->index              = 0;
532
533
2.75M
    return ret;
534
2.75M
}
indeo2.c:init_get_bits
Line
Count
Source
519
181k
{
520
181k
    int ret = 0;
521
522
181k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
181k
    s->buffer             = buffer;
529
181k
    s->size_in_bits       = bit_size;
530
181k
    s->size_in_bits_plus8 = bit_size + 8;
531
181k
    s->index              = 0;
532
533
181k
    return ret;
534
181k
}
4xm.c:init_get_bits
Line
Count
Source
519
11.0k
{
520
11.0k
    int ret = 0;
521
522
11.0k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
11.0k
    s->buffer             = buffer;
529
11.0k
    s->size_in_bits       = bit_size;
530
11.0k
    s->size_in_bits_plus8 = bit_size + 8;
531
11.0k
    s->index              = 0;
532
533
11.0k
    return ret;
534
11.0k
}
wmalosslessdec.c:init_get_bits
Line
Count
Source
519
808k
{
520
808k
    int ret = 0;
521
522
808k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
808k
    s->buffer             = buffer;
529
808k
    s->size_in_bits       = bit_size;
530
808k
    s->size_in_bits_plus8 = bit_size + 8;
531
808k
    s->index              = 0;
532
533
808k
    return ret;
534
808k
}
ilbcdec.c:init_get_bits
Line
Count
Source
519
114k
{
520
114k
    int ret = 0;
521
522
114k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
114k
    s->buffer             = buffer;
529
114k
    s->size_in_bits       = bit_size;
530
114k
    s->size_in_bits_plus8 = bit_size + 8;
531
114k
    s->index              = 0;
532
533
114k
    return ret;
534
114k
}
hevcdec.c:init_get_bits
Line
Count
Source
519
4.25k
{
520
4.25k
    int ret = 0;
521
522
4.25k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
2.16k
        bit_size    = 0;
524
2.16k
        buffer      = NULL;
525
2.16k
        ret         = AVERROR_INVALIDDATA;
526
2.16k
    }
527
528
4.25k
    s->buffer             = buffer;
529
4.25k
    s->size_in_bits       = bit_size;
530
4.25k
    s->size_in_bits_plus8 = bit_size + 8;
531
4.25k
    s->index              = 0;
532
533
4.25k
    return ret;
534
4.25k
}
Unexecuted instantiation: mvs.c:init_get_bits
Unexecuted instantiation: pred.c:init_get_bits
Unexecuted instantiation: refs.c:init_get_bits
Unexecuted instantiation: cabac.c:init_get_bits
Unexecuted instantiation: dsp.c:init_get_bits
Unexecuted instantiation: filter.c:init_get_bits
tscc2.c:init_get_bits
Line
Count
Source
519
6.82k
{
520
6.82k
    int ret = 0;
521
522
6.82k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.82k
    s->buffer             = buffer;
529
6.82k
    s->size_in_bits       = bit_size;
530
6.82k
    s->size_in_bits_plus8 = bit_size + 8;
531
6.82k
    s->index              = 0;
532
533
6.82k
    return ret;
534
6.82k
}
hqx.c:init_get_bits
Line
Count
Source
519
1.49k
{
520
1.49k
    int ret = 0;
521
522
1.49k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.49k
    s->buffer             = buffer;
529
1.49k
    s->size_in_bits       = bit_size;
530
1.49k
    s->size_in_bits_plus8 = bit_size + 8;
531
1.49k
    s->index              = 0;
532
533
1.49k
    return ret;
534
1.49k
}
mobiclip.c:init_get_bits
Line
Count
Source
519
109k
{
520
109k
    int ret = 0;
521
522
109k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
109k
    s->buffer             = buffer;
529
109k
    s->size_in_bits       = bit_size;
530
109k
    s->size_in_bits_plus8 = bit_size + 8;
531
109k
    s->index              = 0;
532
533
109k
    return ret;
534
109k
}
wmaprodec.c:init_get_bits
Line
Count
Source
519
6.36M
{
520
6.36M
    int ret = 0;
521
522
6.36M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.36M
    s->buffer             = buffer;
529
6.36M
    s->size_in_bits       = bit_size;
530
6.36M
    s->size_in_bits_plus8 = bit_size + 8;
531
6.36M
    s->index              = 0;
532
533
6.36M
    return ret;
534
6.36M
}
g729dec.c:init_get_bits
Line
Count
Source
519
1.07M
{
520
1.07M
    int ret = 0;
521
522
1.07M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.07M
    s->buffer             = buffer;
529
1.07M
    s->size_in_bits       = bit_size;
530
1.07M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.07M
    s->index              = 0;
532
533
1.07M
    return ret;
534
1.07M
}
sipr.c:init_get_bits
Line
Count
Source
519
691k
{
520
691k
    int ret = 0;
521
522
691k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
691k
    s->buffer             = buffer;
529
691k
    s->size_in_bits       = bit_size;
530
691k
    s->size_in_bits_plus8 = bit_size + 8;
531
691k
    s->index              = 0;
532
533
691k
    return ret;
534
691k
}
g722dec.c:init_get_bits
Line
Count
Source
519
170k
{
520
170k
    int ret = 0;
521
522
170k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
170k
    s->buffer             = buffer;
529
170k
    s->size_in_bits       = bit_size;
530
170k
    s->size_in_bits_plus8 = bit_size + 8;
531
170k
    s->index              = 0;
532
533
170k
    return ret;
534
170k
}
nellymoserdec.c:init_get_bits
Line
Count
Source
519
1.21M
{
520
1.21M
    int ret = 0;
521
522
1.21M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.21M
    s->buffer             = buffer;
529
1.21M
    s->size_in_bits       = bit_size;
530
1.21M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.21M
    s->index              = 0;
532
533
1.21M
    return ret;
534
1.21M
}
Unexecuted instantiation: dcaenc.c:init_get_bits
Unexecuted instantiation: dcaadpcm.c:init_get_bits
Unexecuted instantiation: dcadata.c:init_get_bits
interplayvideo.c:init_get_bits
Line
Count
Source
519
140k
{
520
140k
    int ret = 0;
521
522
140k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
140k
    s->buffer             = buffer;
529
140k
    s->size_in_bits       = bit_size;
530
140k
    s->size_in_bits_plus8 = bit_size + 8;
531
140k
    s->index              = 0;
532
533
140k
    return ret;
534
140k
}
Unexecuted instantiation: dec.c:init_get_bits
Unexecuted instantiation: dec_celt.c:init_get_bits
Unexecuted instantiation: silk.c:init_get_bits
mjpegbdec.c:init_get_bits
Line
Count
Source
519
646k
{
520
646k
    int ret = 0;
521
522
646k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
646k
    s->buffer             = buffer;
529
646k
    s->size_in_bits       = bit_size;
530
646k
    s->size_in_bits_plus8 = bit_size + 8;
531
646k
    s->index              = 0;
532
533
646k
    return ret;
534
646k
}
bink.c:init_get_bits
Line
Count
Source
519
160k
{
520
160k
    int ret = 0;
521
522
160k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
160k
    s->buffer             = buffer;
529
160k
    s->size_in_bits       = bit_size;
530
160k
    s->size_in_bits_plus8 = bit_size + 8;
531
160k
    s->index              = 0;
532
533
160k
    return ret;
534
160k
}
dvdsubdec.c:init_get_bits
Line
Count
Source
519
21.7k
{
520
21.7k
    int ret = 0;
521
522
21.7k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
21.7k
    s->buffer             = buffer;
529
21.7k
    s->size_in_bits       = bit_size;
530
21.7k
    s->size_in_bits_plus8 = bit_size + 8;
531
21.7k
    s->index              = 0;
532
533
21.7k
    return ret;
534
21.7k
}
rtjpeg.c:init_get_bits
Line
Count
Source
519
4.97k
{
520
4.97k
    int ret = 0;
521
522
4.97k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
4.97k
    s->buffer             = buffer;
529
4.97k
    s->size_in_bits       = bit_size;
530
4.97k
    s->size_in_bits_plus8 = bit_size + 8;
531
4.97k
    s->index              = 0;
532
533
4.97k
    return ret;
534
4.97k
}
truespeech.c:init_get_bits
Line
Count
Source
519
572k
{
520
572k
    int ret = 0;
521
522
572k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
572k
    s->buffer             = buffer;
529
572k
    s->size_in_bits       = bit_size;
530
572k
    s->size_in_bits_plus8 = bit_size + 8;
531
572k
    s->index              = 0;
532
533
572k
    return ret;
534
572k
}
metasound.c:init_get_bits
Line
Count
Source
519
216k
{
520
216k
    int ret = 0;
521
522
216k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
216k
    s->buffer             = buffer;
529
216k
    s->size_in_bits       = bit_size;
530
216k
    s->size_in_bits_plus8 = bit_size + 8;
531
216k
    s->index              = 0;
532
533
216k
    return ret;
534
216k
}
escape124.c:init_get_bits
Line
Count
Source
519
205k
{
520
205k
    int ret = 0;
521
522
205k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
205k
    s->buffer             = buffer;
529
205k
    s->size_in_bits       = bit_size;
530
205k
    s->size_in_bits_plus8 = bit_size + 8;
531
205k
    s->index              = 0;
532
533
205k
    return ret;
534
205k
}
cllc.c:init_get_bits
Line
Count
Source
519
195k
{
520
195k
    int ret = 0;
521
522
195k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
195k
    s->buffer             = buffer;
529
195k
    s->size_in_bits       = bit_size;
530
195k
    s->size_in_bits_plus8 = bit_size + 8;
531
195k
    s->index              = 0;
532
533
195k
    return ret;
534
195k
}
dvdec.c:init_get_bits
Line
Count
Source
519
32.6M
{
520
32.6M
    int ret = 0;
521
522
32.6M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
32.6M
    s->buffer             = buffer;
529
32.6M
    s->size_in_bits       = bit_size;
530
32.6M
    s->size_in_bits_plus8 = bit_size + 8;
531
32.6M
    s->index              = 0;
532
533
32.6M
    return ret;
534
32.6M
}
tta.c:init_get_bits
Line
Count
Source
519
149k
{
520
149k
    int ret = 0;
521
522
149k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
149k
    s->buffer             = buffer;
529
149k
    s->size_in_bits       = bit_size;
530
149k
    s->size_in_bits_plus8 = bit_size + 8;
531
149k
    s->index              = 0;
532
533
149k
    return ret;
534
149k
}
fraps.c:init_get_bits
Line
Count
Source
519
6.56k
{
520
6.56k
    int ret = 0;
521
522
6.56k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.56k
    s->buffer             = buffer;
529
6.56k
    s->size_in_bits       = bit_size;
530
6.56k
    s->size_in_bits_plus8 = bit_size + 8;
531
6.56k
    s->index              = 0;
532
533
6.56k
    return ret;
534
6.56k
}
motionpixels.c:init_get_bits
Line
Count
Source
519
97.8k
{
520
97.8k
    int ret = 0;
521
522
97.8k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
97.8k
    s->buffer             = buffer;
529
97.8k
    s->size_in_bits       = bit_size;
530
97.8k
    s->size_in_bits_plus8 = bit_size + 8;
531
97.8k
    s->index              = 0;
532
533
97.8k
    return ret;
534
97.8k
}
vp9.c:init_get_bits
Line
Count
Source
519
416k
{
520
416k
    int ret = 0;
521
522
416k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
416k
    s->buffer             = buffer;
529
416k
    s->size_in_bits       = bit_size;
530
416k
    s->size_in_bits_plus8 = bit_size + 8;
531
416k
    s->index              = 0;
532
533
416k
    return ret;
534
416k
}
Unexecuted instantiation: vp9block.c:init_get_bits
Unexecuted instantiation: vp9data.c:init_get_bits
Unexecuted instantiation: vp9lpf.c:init_get_bits
Unexecuted instantiation: vp9mvs.c:init_get_bits
Unexecuted instantiation: vp9prob.c:init_get_bits
Unexecuted instantiation: vp9recon.c:init_get_bits
ffv1dec.c:init_get_bits
Line
Count
Source
519
76.9k
{
520
76.9k
    int ret = 0;
521
522
76.9k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
76.9k
    s->buffer             = buffer;
529
76.9k
    s->size_in_bits       = bit_size;
530
76.9k
    s->size_in_bits_plus8 = bit_size + 8;
531
76.9k
    s->index              = 0;
532
533
76.9k
    return ret;
534
76.9k
}
Unexecuted instantiation: intra_utils.c:init_get_bits
Unexecuted instantiation: thread.c:init_get_bits
Unexecuted instantiation: ctu.c:init_get_bits
Unexecuted instantiation: inter.c:init_get_bits
Unexecuted instantiation: intra.c:init_get_bits
wmavoice.c:init_get_bits
Line
Count
Source
519
1.65M
{
520
1.65M
    int ret = 0;
521
522
1.65M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.65M
    s->buffer             = buffer;
529
1.65M
    s->size_in_bits       = bit_size;
530
1.65M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.65M
    s->index              = 0;
532
533
1.65M
    return ret;
534
1.65M
}
Unexecuted instantiation: rawdec.c:init_get_bits
svq1dec.c:init_get_bits
Line
Count
Source
519
245k
{
520
245k
    int ret = 0;
521
522
245k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
245k
    s->buffer             = buffer;
529
245k
    s->size_in_bits       = bit_size;
530
245k
    s->size_in_bits_plus8 = bit_size + 8;
531
245k
    s->index              = 0;
532
533
245k
    return ret;
534
245k
}
mpc7.c:init_get_bits
Line
Count
Source
519
139k
{
520
139k
    int ret = 0;
521
522
139k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
139k
    s->buffer             = buffer;
529
139k
    s->size_in_bits       = bit_size;
530
139k
    s->size_in_bits_plus8 = bit_size + 8;
531
139k
    s->index              = 0;
532
533
139k
    return ret;
534
139k
}
truemotion2rt.c:init_get_bits
Line
Count
Source
519
137k
{
520
137k
    int ret = 0;
521
522
137k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
137k
    s->buffer             = buffer;
529
137k
    s->size_in_bits       = bit_size;
530
137k
    s->size_in_bits_plus8 = bit_size + 8;
531
137k
    s->index              = 0;
532
533
137k
    return ret;
534
137k
}
adxdec.c:init_get_bits
Line
Count
Source
519
363k
{
520
363k
    int ret = 0;
521
522
363k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
363k
    s->buffer             = buffer;
529
363k
    s->size_in_bits       = bit_size;
530
363k
    s->size_in_bits_plus8 = bit_size + 8;
531
363k
    s->index              = 0;
532
533
363k
    return ret;
534
363k
}
Unexecuted instantiation: rv40.c:init_get_bits
xsubdec.c:init_get_bits
Line
Count
Source
519
2.30k
{
520
2.30k
    int ret = 0;
521
522
2.30k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
2.30k
    s->buffer             = buffer;
529
2.30k
    s->size_in_bits       = bit_size;
530
2.30k
    s->size_in_bits_plus8 = bit_size + 8;
531
2.30k
    s->index              = 0;
532
533
2.30k
    return ret;
534
2.30k
}
notchlc.c:init_get_bits
Line
Count
Source
519
938k
{
520
938k
    int ret = 0;
521
522
938k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
938k
    s->buffer             = buffer;
529
938k
    s->size_in_bits       = bit_size;
530
938k
    s->size_in_bits_plus8 = bit_size + 8;
531
938k
    s->index              = 0;
532
533
938k
    return ret;
534
938k
}
aic.c:init_get_bits
Line
Count
Source
519
115k
{
520
115k
    int ret = 0;
521
522
115k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
115k
    s->buffer             = buffer;
529
115k
    s->size_in_bits       = bit_size;
530
115k
    s->size_in_bits_plus8 = bit_size + 8;
531
115k
    s->index              = 0;
532
533
115k
    return ret;
534
115k
}
vqcdec.c:init_get_bits
Line
Count
Source
519
165k
{
520
165k
    int ret = 0;
521
522
165k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
165k
    s->buffer             = buffer;
529
165k
    s->size_in_bits       = bit_size;
530
165k
    s->size_in_bits_plus8 = bit_size + 8;
531
165k
    s->index              = 0;
532
533
165k
    return ret;
534
165k
}
Unexecuted instantiation: dolby_e.c:init_get_bits
proresdec.c:init_get_bits
Line
Count
Source
519
36.7k
{
520
36.7k
    int ret = 0;
521
522
36.7k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
36.7k
    s->buffer             = buffer;
529
36.7k
    s->size_in_bits       = bit_size;
530
36.7k
    s->size_in_bits_plus8 = bit_size + 8;
531
36.7k
    s->index              = 0;
532
533
36.7k
    return ret;
534
36.7k
}
evrcdec.c:init_get_bits
Line
Count
Source
519
13.9k
{
520
13.9k
    int ret = 0;
521
522
13.9k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
13.9k
    s->buffer             = buffer;
529
13.9k
    s->size_in_bits       = bit_size;
530
13.9k
    s->size_in_bits_plus8 = bit_size + 8;
531
13.9k
    s->index              = 0;
532
533
13.9k
    return ret;
534
13.9k
}
dnxhddec.c:init_get_bits
Line
Count
Source
519
40.5k
{
520
40.5k
    int ret = 0;
521
522
40.5k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
40.5k
    s->buffer             = buffer;
529
40.5k
    s->size_in_bits       = bit_size;
530
40.5k
    s->size_in_bits_plus8 = bit_size + 8;
531
40.5k
    s->index              = 0;
532
533
40.5k
    return ret;
534
40.5k
}
Unexecuted instantiation: dcadec.c:init_get_bits
dca_core.c:init_get_bits
Line
Count
Source
519
150k
{
520
150k
    int ret = 0;
521
522
150k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
150k
    s->buffer             = buffer;
529
150k
    s->size_in_bits       = bit_size;
530
150k
    s->size_in_bits_plus8 = bit_size + 8;
531
150k
    s->index              = 0;
532
533
150k
    return ret;
534
150k
}
dca_lbr.c:init_get_bits
Line
Count
Source
519
77.0k
{
520
77.0k
    int ret = 0;
521
522
77.0k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
77.0k
    s->buffer             = buffer;
529
77.0k
    s->size_in_bits       = bit_size;
530
77.0k
    s->size_in_bits_plus8 = bit_size + 8;
531
77.0k
    s->index              = 0;
532
533
77.0k
    return ret;
534
77.0k
}
dca_xll.c:init_get_bits
Line
Count
Source
519
64.9k
{
520
64.9k
    int ret = 0;
521
522
64.9k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
64.9k
    s->buffer             = buffer;
529
64.9k
    s->size_in_bits       = bit_size;
530
64.9k
    s->size_in_bits_plus8 = bit_size + 8;
531
64.9k
    s->index              = 0;
532
533
64.9k
    return ret;
534
64.9k
}
Unexecuted instantiation: mlpenc.c:init_get_bits
mlpdec.c:init_get_bits
Line
Count
Source
519
1.08M
{
520
1.08M
    int ret = 0;
521
522
1.08M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.08M
    s->buffer             = buffer;
529
1.08M
    s->size_in_bits       = bit_size;
530
1.08M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.08M
    s->index              = 0;
532
533
1.08M
    return ret;
534
1.08M
}
atrac3.c:init_get_bits
Line
Count
Source
519
1.13M
{
520
1.13M
    int ret = 0;
521
522
1.13M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.13M
    s->buffer             = buffer;
529
1.13M
    s->size_in_bits       = bit_size;
530
1.13M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.13M
    s->index              = 0;
532
533
1.13M
    return ret;
534
1.13M
}
vorbisdec.c:init_get_bits
Line
Count
Source
519
194k
{
520
194k
    int ret = 0;
521
522
194k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
194k
    s->buffer             = buffer;
529
194k
    s->size_in_bits       = bit_size;
530
194k
    s->size_in_bits_plus8 = bit_size + 8;
531
194k
    s->index              = 0;
532
533
194k
    return ret;
534
194k
}
flashsv.c:init_get_bits
Line
Count
Source
519
358k
{
520
358k
    int ret = 0;
521
522
358k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
358k
    s->buffer             = buffer;
529
358k
    s->size_in_bits       = bit_size;
530
358k
    s->size_in_bits_plus8 = bit_size + 8;
531
358k
    s->index              = 0;
532
533
358k
    return ret;
534
358k
}
wavpack.c:init_get_bits
Line
Count
Source
519
23.2k
{
520
23.2k
    int ret = 0;
521
522
23.2k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
23.2k
    s->buffer             = buffer;
529
23.2k
    s->size_in_bits       = bit_size;
530
23.2k
    s->size_in_bits_plus8 = bit_size + 8;
531
23.2k
    s->index              = 0;
532
533
23.2k
    return ret;
534
23.2k
}
speedhqdec.c:init_get_bits
Line
Count
Source
519
36.2k
{
520
36.2k
    int ret = 0;
521
522
36.2k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
36.2k
    s->buffer             = buffer;
529
36.2k
    s->size_in_bits       = bit_size;
530
36.2k
    s->size_in_bits_plus8 = bit_size + 8;
531
36.2k
    s->index              = 0;
532
533
36.2k
    return ret;
534
36.2k
}
g723_1dec.c:init_get_bits
Line
Count
Source
519
4.71M
{
520
4.71M
    int ret = 0;
521
522
4.71M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
4.71M
    s->buffer             = buffer;
529
4.71M
    s->size_in_bits       = bit_size;
530
4.71M
    s->size_in_bits_plus8 = bit_size + 8;
531
4.71M
    s->index              = 0;
532
533
4.71M
    return ret;
534
4.71M
}
g2meet.c:init_get_bits
Line
Count
Source
519
8.91k
{
520
8.91k
    int ret = 0;
521
522
8.91k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
8.91k
    s->buffer             = buffer;
529
8.91k
    s->size_in_bits       = bit_size;
530
8.91k
    s->size_in_bits_plus8 = bit_size + 8;
531
8.91k
    s->index              = 0;
532
533
8.91k
    return ret;
534
8.91k
}
shorten.c:init_get_bits
Line
Count
Source
519
67.0k
{
520
67.0k
    int ret = 0;
521
522
67.0k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
67.0k
    s->buffer             = buffer;
529
67.0k
    s->size_in_bits       = bit_size;
530
67.0k
    s->size_in_bits_plus8 = bit_size + 8;
531
67.0k
    s->index              = 0;
532
533
67.0k
    return ret;
534
67.0k
}
Unexecuted instantiation: indeo4.c:init_get_bits
Unexecuted instantiation: sp5xdec.c:init_get_bits
atrac1.c:init_get_bits
Line
Count
Source
519
406k
{
520
406k
    int ret = 0;
521
522
406k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
406k
    s->buffer             = buffer;
529
406k
    s->size_in_bits       = bit_size;
530
406k
    s->size_in_bits_plus8 = bit_size + 8;
531
406k
    s->index              = 0;
532
533
406k
    return ret;
534
406k
}
apv_decode.c:init_get_bits
Line
Count
Source
519
17.9k
{
520
17.9k
    int ret = 0;
521
522
17.9k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
17.9k
    s->buffer             = buffer;
529
17.9k
    s->size_in_bits       = bit_size;
530
17.9k
    s->size_in_bits_plus8 = bit_size + 8;
531
17.9k
    s->index              = 0;
532
533
17.9k
    return ret;
534
17.9k
}
apv_entropy.c:init_get_bits
Line
Count
Source
519
15.3k
{
520
15.3k
    int ret = 0;
521
522
15.3k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
15.3k
    s->buffer             = buffer;
529
15.3k
    s->size_in_bits       = bit_size;
530
15.3k
    s->size_in_bits_plus8 = bit_size + 8;
531
15.3k
    s->index              = 0;
532
533
15.3k
    return ret;
534
15.3k
}
avs.c:init_get_bits
Line
Count
Source
519
6.47k
{
520
6.47k
    int ret = 0;
521
522
6.47k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.47k
    s->buffer             = buffer;
529
6.47k
    s->size_in_bits       = bit_size;
530
6.47k
    s->size_in_bits_plus8 = bit_size + 8;
531
6.47k
    s->index              = 0;
532
533
6.47k
    return ret;
534
6.47k
}
rv60dec.c:init_get_bits
Line
Count
Source
519
156k
{
520
156k
    int ret = 0;
521
522
156k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
156k
    s->buffer             = buffer;
529
156k
    s->size_in_bits       = bit_size;
530
156k
    s->size_in_bits_plus8 = bit_size + 8;
531
156k
    s->index              = 0;
532
533
156k
    return ret;
534
156k
}
alac.c:init_get_bits
Line
Count
Source
519
166k
{
520
166k
    int ret = 0;
521
522
166k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
166k
    s->buffer             = buffer;
529
166k
    s->size_in_bits       = bit_size;
530
166k
    s->size_in_bits_plus8 = bit_size + 8;
531
166k
    s->index              = 0;
532
533
166k
    return ret;
534
166k
}
tiertexseqv.c:init_get_bits
Line
Count
Source
519
6.92k
{
520
6.92k
    int ret = 0;
521
522
6.92k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
6.92k
    s->buffer             = buffer;
529
6.92k
    s->size_in_bits       = bit_size;
530
6.92k
    s->size_in_bits_plus8 = bit_size + 8;
531
6.92k
    s->index              = 0;
532
533
6.92k
    return ret;
534
6.92k
}
Unexecuted instantiation: ffv1enc.c:init_get_bits
hcadec.c:init_get_bits
Line
Count
Source
519
113k
{
520
113k
    int ret = 0;
521
522
113k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
113k
    s->buffer             = buffer;
529
113k
    s->size_in_bits       = bit_size;
530
113k
    s->size_in_bits_plus8 = bit_size + 8;
531
113k
    s->index              = 0;
532
533
113k
    return ret;
534
113k
}
pcx.c:init_get_bits
Line
Count
Source
519
427k
{
520
427k
    int ret = 0;
521
522
427k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
427k
    s->buffer             = buffer;
529
427k
    s->size_in_bits       = bit_size;
530
427k
    s->size_in_bits_plus8 = bit_size + 8;
531
427k
    s->index              = 0;
532
533
427k
    return ret;
534
427k
}
qcelpdec.c:init_get_bits
Line
Count
Source
519
11.3k
{
520
11.3k
    int ret = 0;
521
522
11.3k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
11.3k
    s->buffer             = buffer;
529
11.3k
    s->size_in_bits       = bit_size;
530
11.3k
    s->size_in_bits_plus8 = bit_size + 8;
531
11.3k
    s->index              = 0;
532
533
11.3k
    return ret;
534
11.3k
}
flacdec.c:init_get_bits
Line
Count
Source
519
1.04M
{
520
1.04M
    int ret = 0;
521
522
1.04M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.04M
    s->buffer             = buffer;
529
1.04M
    s->size_in_bits       = bit_size;
530
1.04M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.04M
    s->index              = 0;
532
533
1.04M
    return ret;
534
1.04M
}
ac3dec_fixed.c:init_get_bits
Line
Count
Source
519
1.24M
{
520
1.24M
    int ret = 0;
521
522
1.24M
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
1.24M
    s->buffer             = buffer;
529
1.24M
    s->size_in_bits       = bit_size;
530
1.24M
    s->size_in_bits_plus8 = bit_size + 8;
531
1.24M
    s->index              = 0;
532
533
1.24M
    return ret;
534
1.24M
}
midivid.c:init_get_bits
Line
Count
Source
519
94.9k
{
520
94.9k
    int ret = 0;
521
522
94.9k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
94.9k
    s->buffer             = buffer;
529
94.9k
    s->size_in_bits       = bit_size;
530
94.9k
    s->size_in_bits_plus8 = bit_size + 8;
531
94.9k
    s->index              = 0;
532
533
94.9k
    return ret;
534
94.9k
}
mimic.c:init_get_bits
Line
Count
Source
519
21.9k
{
520
21.9k
    int ret = 0;
521
522
21.9k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
21.9k
    s->buffer             = buffer;
529
21.9k
    s->size_in_bits       = bit_size;
530
21.9k
    s->size_in_bits_plus8 = bit_size + 8;
531
21.9k
    s->index              = 0;
532
533
21.9k
    return ret;
534
21.9k
}
fic.c:init_get_bits
Line
Count
Source
519
41.8k
{
520
41.8k
    int ret = 0;
521
522
41.8k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
4.15k
        bit_size    = 0;
524
4.15k
        buffer      = NULL;
525
4.15k
        ret         = AVERROR_INVALIDDATA;
526
4.15k
    }
527
528
41.8k
    s->buffer             = buffer;
529
41.8k
    s->size_in_bits       = bit_size;
530
41.8k
    s->size_in_bits_plus8 = bit_size + 8;
531
41.8k
    s->index              = 0;
532
533
41.8k
    return ret;
534
41.8k
}
qdmc.c:init_get_bits
Line
Count
Source
519
28.9k
{
520
28.9k
    int ret = 0;
521
522
28.9k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
28.9k
    s->buffer             = buffer;
529
28.9k
    s->size_in_bits       = bit_size;
530
28.9k
    s->size_in_bits_plus8 = bit_size + 8;
531
28.9k
    s->index              = 0;
532
533
28.9k
    return ret;
534
28.9k
}
ra288.c:init_get_bits
Line
Count
Source
519
343k
{
520
343k
    int ret = 0;
521
522
343k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
343k
    s->buffer             = buffer;
529
343k
    s->size_in_bits       = bit_size;
530
343k
    s->size_in_bits_plus8 = bit_size + 8;
531
343k
    s->index              = 0;
532
533
343k
    return ret;
534
343k
}
interplayacm.c:init_get_bits
Line
Count
Source
519
148k
{
520
148k
    int ret = 0;
521
522
148k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
148k
    s->buffer             = buffer;
529
148k
    s->size_in_bits       = bit_size;
530
148k
    s->size_in_bits_plus8 = bit_size + 8;
531
148k
    s->index              = 0;
532
533
148k
    return ret;
534
148k
}
ylc.c:init_get_bits
Line
Count
Source
519
293k
{
520
293k
    int ret = 0;
521
522
293k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
293k
    s->buffer             = buffer;
529
293k
    s->size_in_bits       = bit_size;
530
293k
    s->size_in_bits_plus8 = bit_size + 8;
531
293k
    s->index              = 0;
532
533
293k
    return ret;
534
293k
}
Unexecuted instantiation: ftr.c:init_get_bits
agm.c:init_get_bits
Line
Count
Source
519
59.3k
{
520
59.3k
    int ret = 0;
521
522
59.3k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
59.3k
    s->buffer             = buffer;
529
59.3k
    s->size_in_bits       = bit_size;
530
59.3k
    s->size_in_bits_plus8 = bit_size + 8;
531
59.3k
    s->index              = 0;
532
533
59.3k
    return ret;
534
59.3k
}
xan.c:init_get_bits
Line
Count
Source
519
111k
{
520
111k
    int ret = 0;
521
522
111k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
209
        bit_size    = 0;
524
209
        buffer      = NULL;
525
209
        ret         = AVERROR_INVALIDDATA;
526
209
    }
527
528
111k
    s->buffer             = buffer;
529
111k
    s->size_in_bits       = bit_size;
530
111k
    s->size_in_bits_plus8 = bit_size + 8;
531
111k
    s->index              = 0;
532
533
111k
    return ret;
534
111k
}
svq3.c:init_get_bits
Line
Count
Source
519
518k
{
520
518k
    int ret = 0;
521
522
518k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
518k
    s->buffer             = buffer;
529
518k
    s->size_in_bits       = bit_size;
530
518k
    s->size_in_bits_plus8 = bit_size + 8;
531
518k
    s->index              = 0;
532
533
518k
    return ret;
534
518k
}
cri.c:init_get_bits
Line
Count
Source
519
29.4k
{
520
29.4k
    int ret = 0;
521
522
29.4k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
29.4k
    s->buffer             = buffer;
529
29.4k
    s->size_in_bits       = bit_size;
530
29.4k
    s->size_in_bits_plus8 = bit_size + 8;
531
29.4k
    s->index              = 0;
532
533
29.4k
    return ret;
534
29.4k
}
qdm2.c:init_get_bits
Line
Count
Source
519
351k
{
520
351k
    int ret = 0;
521
522
351k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
314
        bit_size    = 0;
524
314
        buffer      = NULL;
525
314
        ret         = AVERROR_INVALIDDATA;
526
314
    }
527
528
351k
    s->buffer             = buffer;
529
351k
    s->size_in_bits       = bit_size;
530
351k
    s->size_in_bits_plus8 = bit_size + 8;
531
351k
    s->index              = 0;
532
533
351k
    return ret;
534
351k
}
cljrdec.c:init_get_bits
Line
Count
Source
519
97.1k
{
520
97.1k
    int ret = 0;
521
522
97.1k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
97.1k
    s->buffer             = buffer;
529
97.1k
    s->size_in_bits       = bit_size;
530
97.1k
    s->size_in_bits_plus8 = bit_size + 8;
531
97.1k
    s->index              = 0;
532
533
97.1k
    return ret;
534
97.1k
}
g728dec.c:init_get_bits
Line
Count
Source
519
147k
{
520
147k
    int ret = 0;
521
522
147k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
147k
    s->buffer             = buffer;
529
147k
    s->size_in_bits       = bit_size;
530
147k
    s->size_in_bits_plus8 = bit_size + 8;
531
147k
    s->index              = 0;
532
533
147k
    return ret;
534
147k
}
cook.c:init_get_bits
Line
Count
Source
519
252k
{
520
252k
    int ret = 0;
521
522
252k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
252k
    s->buffer             = buffer;
529
252k
    s->size_in_bits       = bit_size;
530
252k
    s->size_in_bits_plus8 = bit_size + 8;
531
252k
    s->index              = 0;
532
533
252k
    return ret;
534
252k
}
twinvqdec.c:init_get_bits
Line
Count
Source
519
230k
{
520
230k
    int ret = 0;
521
522
230k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
230k
    s->buffer             = buffer;
529
230k
    s->size_in_bits       = bit_size;
530
230k
    s->size_in_bits_plus8 = bit_size + 8;
531
230k
    s->index              = 0;
532
533
230k
    return ret;
534
230k
}
hq_hqa.c:init_get_bits
Line
Count
Source
519
8.78k
{
520
8.78k
    int ret = 0;
521
522
8.78k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
8.78k
    s->buffer             = buffer;
529
8.78k
    s->size_in_bits       = bit_size;
530
8.78k
    s->size_in_bits_plus8 = bit_size + 8;
531
8.78k
    s->index              = 0;
532
533
8.78k
    return ret;
534
8.78k
}
cdxl.c:init_get_bits
Line
Count
Source
519
122k
{
520
122k
    int ret = 0;
521
522
122k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
122k
    s->buffer             = buffer;
529
122k
    s->size_in_bits       = bit_size;
530
122k
    s->size_in_bits_plus8 = bit_size + 8;
531
122k
    s->index              = 0;
532
533
122k
    return ret;
534
122k
}
vble.c:init_get_bits
Line
Count
Source
519
171k
{
520
171k
    int ret = 0;
521
522
171k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
171k
    s->buffer             = buffer;
529
171k
    s->size_in_bits       = bit_size;
530
171k
    s->size_in_bits_plus8 = bit_size + 8;
531
171k
    s->index              = 0;
532
533
171k
    return ret;
534
171k
}
mv30.c:init_get_bits
Line
Count
Source
519
120k
{
520
120k
    int ret = 0;
521
522
120k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
120k
    s->buffer             = buffer;
529
120k
    s->size_in_bits       = bit_size;
530
120k
    s->size_in_bits_plus8 = bit_size + 8;
531
120k
    s->index              = 0;
532
533
120k
    return ret;
534
120k
}
apedec.c:init_get_bits
Line
Count
Source
519
28.8k
{
520
28.8k
    int ret = 0;
521
522
28.8k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
28.8k
    s->buffer             = buffer;
529
28.8k
    s->size_in_bits       = bit_size;
530
28.8k
    s->size_in_bits_plus8 = bit_size + 8;
531
28.8k
    s->index              = 0;
532
533
28.8k
    return ret;
534
28.8k
}
h261dec.c:init_get_bits
Line
Count
Source
519
588k
{
520
588k
    int ret = 0;
521
522
588k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
588k
    s->buffer             = buffer;
529
588k
    s->size_in_bits       = bit_size;
530
588k
    s->size_in_bits_plus8 = bit_size + 8;
531
588k
    s->index              = 0;
532
533
588k
    return ret;
534
588k
}
dstdec.c:init_get_bits
Line
Count
Source
519
19.1k
{
520
19.1k
    int ret = 0;
521
522
19.1k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
19.1k
    s->buffer             = buffer;
529
19.1k
    s->size_in_bits       = bit_size;
530
19.1k
    s->size_in_bits_plus8 = bit_size + 8;
531
19.1k
    s->index              = 0;
532
533
19.1k
    return ret;
534
19.1k
}
jpeglsenc.c:init_get_bits
Line
Count
Source
519
7.32k
{
520
7.32k
    int ret = 0;
521
522
7.32k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
7.32k
    s->buffer             = buffer;
529
7.32k
    s->size_in_bits       = bit_size;
530
7.32k
    s->size_in_bits_plus8 = bit_size + 8;
531
7.32k
    s->index              = 0;
532
533
7.32k
    return ret;
534
7.32k
}
truemotion2.c:init_get_bits
Line
Count
Source
519
11.7k
{
520
11.7k
    int ret = 0;
521
522
11.7k
    if (bit_size >= INT_MAX - FFMAX(7, AV_INPUT_BUFFER_PADDING_SIZE*8) || bit_size < 0 || !buffer) {
523
0
        bit_size    = 0;
524
0
        buffer      = NULL;
525
0
        ret         = AVERROR_INVALIDDATA;
526
0
    }
527
528
11.7k
    s->buffer             = buffer;
529
11.7k
    s->size_in_bits       = bit_size;
530
11.7k
    s->size_in_bits_plus8 = bit_size + 8;
531
11.7k
    s->index              = 0;
532
533
11.7k
    return ret;
534
11.7k
}
535
536
/**
537
 * Initialize GetBitContext.
538
 * @param buffer bitstream buffer, must be AV_INPUT_BUFFER_PADDING_SIZE bytes
539
 *        larger than the actual read bits because some optimized bitstream
540
 *        readers read 32 or 64 bit at once and could read over the end
541
 * @param byte_size the size of the buffer in bytes
542
 * @return 0 on success, AVERROR_INVALIDDATA if the buffer_size would overflow.
543
 */
544
static inline int init_get_bits8(GetBitContext *s, const uint8_t *buffer,
545
                                 int byte_size)
546
465M
{
547
465M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
7.05k
        byte_size = -1;
549
465M
    return init_get_bits(s, buffer, byte_size * 8);
550
465M
}
Unexecuted instantiation: mpegvideo_motion.c:init_get_bits8
Unexecuted instantiation: wmv2dec.c:init_get_bits8
Unexecuted instantiation: aac_adtstoasc.c:init_get_bits8
Unexecuted instantiation: dovi_rpu.c:init_get_bits8
Unexecuted instantiation: dovi_split.c:init_get_bits8
Unexecuted instantiation: dts2pts.c:init_get_bits8
eac3_core.c:init_get_bits8
Line
Count
Source
546
23.6k
{
547
23.6k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
23.6k
    return init_get_bits(s, buffer, byte_size * 8);
550
23.6k
}
evc_frame_merge.c:init_get_bits8
Line
Count
Source
546
135k
{
547
135k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
135k
    return init_get_bits(s, buffer, byte_size * 8);
550
135k
}
extract_extradata.c:init_get_bits8
Line
Count
Source
546
7.97M
{
547
7.97M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
7.97M
    return init_get_bits(s, buffer, byte_size * 8);
550
7.97M
}
Unexecuted instantiation: h264_metadata.c:init_get_bits8
Unexecuted instantiation: h264_redundant_pps.c:init_get_bits8
Unexecuted instantiation: h265_metadata.c:init_get_bits8
Unexecuted instantiation: h266_metadata.c:init_get_bits8
Unexecuted instantiation: lcevc_merge.c:init_get_bits8
Unexecuted instantiation: lcevc_metadata.c:init_get_bits8
Unexecuted instantiation: remove_extradata.c:init_get_bits8
truehd_core.c:init_get_bits8
Line
Count
Source
546
6.76k
{
547
6.76k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
6.76k
    return init_get_bits(s, buffer, byte_size * 8);
550
6.76k
}
Unexecuted instantiation: vp9_raw_reorder.c:init_get_bits8
vp9_superframe.c:init_get_bits8
Line
Count
Source
546
10.2k
{
547
10.2k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
10.2k
    return init_get_bits(s, buffer, byte_size * 8);
550
10.2k
}
vp9_superframe_split.c:init_get_bits8
Line
Count
Source
546
6.17k
{
547
6.17k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
6.17k
    return init_get_bits(s, buffer, byte_size * 8);
550
6.17k
}
Unexecuted instantiation: cbs.c:init_get_bits8
Unexecuted instantiation: cbs_apv.c:init_get_bits8
Unexecuted instantiation: cbs_av1.c:init_get_bits8
Unexecuted instantiation: cbs_h264.c:init_get_bits8
Unexecuted instantiation: cbs_h2645.c:init_get_bits8
Unexecuted instantiation: cbs_h265.c:init_get_bits8
cbs_h266.c:init_get_bits8
Line
Count
Source
546
10.2M
{
547
10.2M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
10.2M
    return init_get_bits(s, buffer, byte_size * 8);
550
10.2M
}
cbs_lcevc.c:init_get_bits8
Line
Count
Source
546
204k
{
547
204k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
204k
    return init_get_bits(s, buffer, byte_size * 8);
550
204k
}
Unexecuted instantiation: cbs_mpeg2.c:init_get_bits8
Unexecuted instantiation: cbs_sei.c:init_get_bits8
Unexecuted instantiation: cbs_vp8.c:init_get_bits8
Unexecuted instantiation: cbs_vp9.c:init_get_bits8
dovi_rpudec.c:init_get_bits8
Line
Count
Source
546
10.9k
{
547
10.9k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
10.9k
    return init_get_bits(s, buffer, byte_size * 8);
550
10.9k
}
Unexecuted instantiation: evc_parse.c:init_get_bits8
Unexecuted instantiation: evc_ps.c:init_get_bits8
h263dec.c:init_get_bits8
Line
Count
Source
546
2.54M
{
547
2.54M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
2.54M
    return init_get_bits(s, buffer, byte_size * 8);
550
2.54M
}
Unexecuted instantiation: h2645_parse.c:init_get_bits8
h264_parse.c:init_get_bits8
Line
Count
Source
546
46.2k
{
547
46.2k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
46.2k
    return init_get_bits(s, buffer, byte_size * 8);
550
46.2k
}
Unexecuted instantiation: h264_ps.c:init_get_bits8
Unexecuted instantiation: h264data.c:init_get_bits8
Unexecuted instantiation: h265_profile_level.c:init_get_bits8
Unexecuted instantiation: ps.c:init_get_bits8
Unexecuted instantiation: intelh263dec.c:init_get_bits8
Unexecuted instantiation: intrax8.c:init_get_bits8
Unexecuted instantiation: ituh263dec.c:init_get_bits8
Unexecuted instantiation: mlp_parse.c:init_get_bits8
mpeg4audio.c:init_get_bits8
Line
Count
Source
546
110k
{
547
110k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
110k
    return init_get_bits(s, buffer, byte_size * 8);
550
110k
}
mpeg4videodec.c:init_get_bits8
Line
Count
Source
546
1.69k
{
547
1.69k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.69k
    return init_get_bits(s, buffer, byte_size * 8);
550
1.69k
}
Unexecuted instantiation: mpeg_er.c:init_get_bits8
Unexecuted instantiation: mpegvideo_dec.c:init_get_bits8
Unexecuted instantiation: msmpeg4dec.c:init_get_bits8
rv10.c:init_get_bits8
Line
Count
Source
546
192k
{
547
192k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
192k
    return init_get_bits(s, buffer, byte_size * 8);
550
192k
}
ac3_parser.c:init_get_bits8
Line
Count
Source
546
16.5M
{
547
16.5M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
16.5M
    return init_get_bits(s, buffer, byte_size * 8);
550
16.5M
}
adts_header.c:init_get_bits8
Line
Count
Source
546
205M
{
547
205M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
205M
    return init_get_bits(s, buffer, byte_size * 8);
550
205M
}
av1_parse.c:init_get_bits8
Line
Count
Source
546
1.25M
{
547
1.25M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.25M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.25M
}
Unexecuted instantiation: flvdec.c:init_get_bits8
Unexecuted instantiation: h2645_vui.c:init_get_bits8
vc1_parser.c:init_get_bits8
Line
Count
Source
546
1.19M
{
547
1.19M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.19M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.19M
}
Unexecuted instantiation: vorbis_parser.c:init_get_bits8
vp9_parser.c:init_get_bits8
Line
Count
Source
546
465k
{
547
465k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
465k
    return init_get_bits(s, buffer, byte_size * 8);
550
465k
}
Unexecuted instantiation: vvc_parser.c:init_get_bits8
Unexecuted instantiation: aac_ac3_parser.c:init_get_bits8
Unexecuted instantiation: av1_parser.c:init_get_bits8
avs2_parser.c:init_get_bits8
Line
Count
Source
546
1.01k
{
547
1.01k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.01k
    return init_get_bits(s, buffer, byte_size * 8);
550
1.01k
}
Unexecuted instantiation: avs3_parser.c:init_get_bits8
cavs_parser.c:init_get_bits8
Line
Count
Source
546
23.1k
{
547
23.1k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
23.1k
    return init_get_bits(s, buffer, byte_size * 8);
550
23.1k
}
dca_parser.c:init_get_bits8
Line
Count
Source
546
126k
{
547
126k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
126k
    return init_get_bits(s, buffer, byte_size * 8);
550
126k
}
Unexecuted instantiation: dolby_e_parser.c:init_get_bits8
evc_parser.c:init_get_bits8
Line
Count
Source
546
350k
{
547
350k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
350k
    return init_get_bits(s, buffer, byte_size * 8);
550
350k
}
Unexecuted instantiation: ffv1_parser.c:init_get_bits8
Unexecuted instantiation: flac_parser.c:init_get_bits8
Unexecuted instantiation: ftr_parser.c:init_get_bits8
h264_parser.c:init_get_bits8
Line
Count
Source
546
15.5M
{
547
15.5M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
15.5M
    return init_get_bits(s, buffer, byte_size * 8);
550
15.5M
}
h264_sei.c:init_get_bits8
Line
Count
Source
546
5.66M
{
547
5.66M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
5.66M
    return init_get_bits(s, buffer, byte_size * 8);
550
5.66M
}
Unexecuted instantiation: h264idct.c:init_get_bits8
Unexecuted instantiation: parser.c:init_get_bits8
sei.c:init_get_bits8
Line
Count
Source
546
9.27M
{
547
9.27M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
9.27M
    return init_get_bits(s, buffer, byte_size * 8);
550
9.27M
}
jpegxl_parser.c:init_get_bits8
Line
Count
Source
546
30.7k
{
547
30.7k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
30.7k
    return init_get_bits(s, buffer, byte_size * 8);
550
30.7k
}
jpegxs_parser.c:init_get_bits8
Line
Count
Source
546
11
{
547
11
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
11
    return init_get_bits(s, buffer, byte_size * 8);
550
11
}
lcevc_parser.c:init_get_bits8
Line
Count
Source
546
158
{
547
158
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
158
    return init_get_bits(s, buffer, byte_size * 8);
550
158
}
Unexecuted instantiation: mlp_parser.c:init_get_bits8
Unexecuted instantiation: mpeg4video_parser.c:init_get_bits8
Unexecuted instantiation: vc1.c:init_get_bits8
Unexecuted instantiation: vc1data.c:init_get_bits8
dca.c:init_get_bits8
Line
Count
Source
546
363k
{
547
363k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
363k
    return init_get_bits(s, buffer, byte_size * 8);
550
363k
}
dca_exss.c:init_get_bits8
Line
Count
Source
546
1.34M
{
547
1.34M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.34M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.34M
}
Unexecuted instantiation: dolby_e_parse.c:init_get_bits8
Unexecuted instantiation: ffv1.c:init_get_bits8
Unexecuted instantiation: ffv1_parse.c:init_get_bits8
Unexecuted instantiation: flac.c:init_get_bits8
Unexecuted instantiation: h2645_sei.c:init_get_bits8
Unexecuted instantiation: parse.c:init_get_bits8
jpegxl_parse.c:init_get_bits8
Line
Count
Source
546
124k
{
547
124k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
124k
    return init_get_bits(s, buffer, byte_size * 8);
550
124k
}
aom_film_grain.c:init_get_bits8
Line
Count
Source
546
154k
{
547
154k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
154k
    return init_get_bits(s, buffer, byte_size * 8);
550
154k
}
dynamic_hdr_vivid.c:init_get_bits8
Line
Count
Source
546
85.4k
{
547
85.4k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
85.4k
    return init_get_bits(s, buffer, byte_size * 8);
550
85.4k
}
hdr_dynamic_metadata.c:init_get_bits8
Line
Count
Source
546
392k
{
547
392k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
392k
    return init_get_bits(s, buffer, byte_size * 8);
550
392k
}
av1dec.c:init_get_bits8
Line
Count
Source
546
3.93M
{
547
3.93M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
3.93M
    return init_get_bits(s, buffer, byte_size * 8);
550
3.93M
}
Unexecuted instantiation: bit.c:init_get_bits8
Unexecuted instantiation: dtsdec.c:init_get_bits8
Unexecuted instantiation: dtshddec.c:init_get_bits8
h264dec.c:init_get_bits8
Line
Count
Source
546
2.96M
{
547
2.96M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
2.96M
    return init_get_bits(s, buffer, byte_size * 8);
550
2.96M
}
Unexecuted instantiation: hls_sample_encryption.c:init_get_bits8
Unexecuted instantiation: isom.c:init_get_bits8
Unexecuted instantiation: matroskadec.c:init_get_bits8
Unexecuted instantiation: mlpdec.c:init_get_bits8
Unexecuted instantiation: mov.c:init_get_bits8
Unexecuted instantiation: mpegts.c:init_get_bits8
Unexecuted instantiation: oggparsetheora.c:init_get_bits8
shortendec.c:init_get_bits8
Line
Count
Source
546
11.0k
{
547
11.0k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
1.95k
        byte_size = -1;
549
11.0k
    return init_get_bits(s, buffer, byte_size * 8);
550
11.0k
}
swfdec.c:init_get_bits8
Line
Count
Source
546
3.21k
{
547
3.21k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
3.21k
    return init_get_bits(s, buffer, byte_size * 8);
550
3.21k
}
takdec.c:init_get_bits8
Line
Count
Source
546
575
{
547
575
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
575
    return init_get_bits(s, buffer, byte_size * 8);
550
575
}
iamf_parse.c:init_get_bits8
Line
Count
Source
546
1.43M
{
547
1.43M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.43M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.43M
}
dirac.c:init_get_bits8
Line
Count
Source
546
32.3k
{
547
32.3k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
32.3k
    return init_get_bits(s, buffer, byte_size * 8);
550
32.3k
}
atrac9dec.c:init_get_bits8
Line
Count
Source
546
830k
{
547
830k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
830k
    return init_get_bits(s, buffer, byte_size * 8);
550
830k
}
Unexecuted instantiation: enc.c:init_get_bits8
Unexecuted instantiation: enc_psy.c:init_get_bits8
Unexecuted instantiation: pvq.c:init_get_bits8
rc.c:init_get_bits8
Line
Count
Source
546
303k
{
547
303k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
4.33k
        byte_size = -1;
549
303k
    return init_get_bits(s, buffer, byte_size * 8);
550
303k
}
Unexecuted instantiation: celt.c:init_get_bits8
Unexecuted instantiation: gsmdec.c:init_get_bits8
Unexecuted instantiation: msgsmdec.c:init_get_bits8
Unexecuted instantiation: imc.c:init_get_bits8
adpcm.c:init_get_bits8
Line
Count
Source
546
3.15M
{
547
3.15M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
3.15M
    return init_get_bits(s, buffer, byte_size * 8);
550
3.15M
}
Unexecuted instantiation: wmaenc.c:init_get_bits8
Unexecuted instantiation: wma.c:init_get_bits8
cfhd.c:init_get_bits8
Line
Count
Source
546
5.89k
{
547
5.89k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
5.89k
    return init_get_bits(s, buffer, byte_size * 8);
550
5.89k
}
wavarc.c:init_get_bits8
Line
Count
Source
546
1.78M
{
547
1.78M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.78M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.78M
}
escape130.c:init_get_bits8
Line
Count
Source
546
138k
{
547
138k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
138k
    return init_get_bits(s, buffer, byte_size * 8);
550
138k
}
asvdec.c:init_get_bits8
Line
Count
Source
546
95.0k
{
547
95.0k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
95.0k
    return init_get_bits(s, buffer, byte_size * 8);
550
95.0k
}
diracdec.c:init_get_bits8
Line
Count
Source
546
35.0k
{
547
35.0k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
35.0k
    return init_get_bits(s, buffer, byte_size * 8);
550
35.0k
}
Unexecuted instantiation: dirac_arith.c:init_get_bits8
Unexecuted instantiation: wmadec.c:init_get_bits8
Unexecuted instantiation: aacenc.c:init_get_bits8
imm4.c:init_get_bits8
Line
Count
Source
546
115k
{
547
115k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
115k
    return init_get_bits(s, buffer, byte_size * 8);
550
115k
}
exr.c:init_get_bits8
Line
Count
Source
546
11.6k
{
547
11.6k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
11.6k
    return init_get_bits(s, buffer, byte_size * 8);
550
11.6k
}
aacdec.c:init_get_bits8
Line
Count
Source
546
4.41M
{
547
4.41M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
4.41M
    return init_get_bits(s, buffer, byte_size * 8);
550
4.41M
}
Unexecuted instantiation: aacdec_fixed.c:init_get_bits8
Unexecuted instantiation: aacdec_float.c:init_get_bits8
Unexecuted instantiation: aacdec_tab.c:init_get_bits8
aacdec_usac.c:init_get_bits8
Line
Count
Source
546
2.45k
{
547
2.45k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
2.45k
    return init_get_bits(s, buffer, byte_size * 8);
550
2.45k
}
Unexecuted instantiation: aacdec_usac_mps212.c:init_get_bits8
Unexecuted instantiation: aacps_common.c:init_get_bits8
Unexecuted instantiation: aacsbr.c:init_get_bits8
Unexecuted instantiation: aacsbr_fixed.c:init_get_bits8
Unexecuted instantiation: aacdec_ac.c:init_get_bits8
Unexecuted instantiation: aacdec_lpd.c:init_get_bits8
Unexecuted instantiation: aacps_fixed.c:init_get_bits8
Unexecuted instantiation: aacps_float.c:init_get_bits8
mjpegdec.c:init_get_bits8
Line
Count
Source
546
127M
{
547
127M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
127M
    return init_get_bits(s, buffer, byte_size * 8);
550
127M
}
Unexecuted instantiation: mjpegdec_common.c:init_get_bits8
Unexecuted instantiation: jpeglsdec.c:init_get_bits8
Unexecuted instantiation: jvdec.c:init_get_bits8
Unexecuted instantiation: rdt.c:init_get_bits8
Unexecuted instantiation: rtpdec_h261.c:init_get_bits8
Unexecuted instantiation: rtpdec_h263_rfc2190.c:init_get_bits8
Unexecuted instantiation: rtpdec_latm.c:init_get_bits8
Unexecuted instantiation: rtpdec_mpeg4.c:init_get_bits8
Unexecuted instantiation: rtpdec_qt.c:init_get_bits8
Unexecuted instantiation: h264_cavlc.c:init_get_bits8
Unexecuted instantiation: h264_direct.c:init_get_bits8
Unexecuted instantiation: h264_mb.c:init_get_bits8
Unexecuted instantiation: h264_picture.c:init_get_bits8
Unexecuted instantiation: h264_refs.c:init_get_bits8
Unexecuted instantiation: h264_slice.c:init_get_bits8
Unexecuted instantiation: h264_cabac.c:init_get_bits8
Unexecuted instantiation: h264_loopfilter.c:init_get_bits8
alsdec.c:init_get_bits8
Line
Count
Source
546
724k
{
547
724k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
724k
    return init_get_bits(s, buffer, byte_size * 8);
550
724k
}
Unexecuted instantiation: bgmc.c:init_get_bits8
Unexecuted instantiation: mlz.c:init_get_bits8
bonk.c:init_get_bits8
Line
Count
Source
546
73.6k
{
547
73.6k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
73.6k
    return init_get_bits(s, buffer, byte_size * 8);
550
73.6k
}
Unexecuted instantiation: mxpegdec.c:init_get_bits8
Unexecuted instantiation: rv30.c:init_get_bits8
rv34.c:init_get_bits8
Line
Count
Source
546
425k
{
547
425k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
425k
    return init_get_bits(s, buffer, byte_size * 8);
550
425k
}
Unexecuted instantiation: indeo3.c:init_get_bits8
Unexecuted instantiation: eamad.c:init_get_bits8
Unexecuted instantiation: mpeg12.c:init_get_bits8
Unexecuted instantiation: g726.c:init_get_bits8
vc1dec.c:init_get_bits8
Line
Count
Source
546
2.02M
{
547
2.02M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
2.02M
    return init_get_bits(s, buffer, byte_size * 8);
550
2.02M
}
Unexecuted instantiation: vc1_block.c:init_get_bits8
Unexecuted instantiation: vc1_loopfilter.c:init_get_bits8
Unexecuted instantiation: vc1_mc.c:init_get_bits8
Unexecuted instantiation: vc1_pred.c:init_get_bits8
Unexecuted instantiation: mpegaudiodec_float.c:init_get_bits8
huffyuvdec.c:init_get_bits8
Line
Count
Source
546
288k
{
547
288k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
240
        byte_size = -1;
549
288k
    return init_get_bits(s, buffer, byte_size * 8);
550
288k
}
speexdec.c:init_get_bits8
Line
Count
Source
546
461k
{
547
461k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
461k
    return init_get_bits(s, buffer, byte_size * 8);
550
461k
}
atrac3plusdec.c:init_get_bits8
Line
Count
Source
546
2.15M
{
547
2.15M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
2.15M
    return init_get_bits(s, buffer, byte_size * 8);
550
2.15M
}
Unexecuted instantiation: atrac3plusdsp.c:init_get_bits8
Unexecuted instantiation: atrac3plus.c:init_get_bits8
mss4.c:init_get_bits8
Line
Count
Source
546
20.5k
{
547
20.5k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
20.5k
    return init_get_bits(s, buffer, byte_size * 8);
550
20.5k
}
tiff.c:init_get_bits8
Line
Count
Source
546
81.6k
{
547
81.6k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
81.6k
    return init_get_bits(s, buffer, byte_size * 8);
550
81.6k
}
faxcompr.c:init_get_bits8
Line
Count
Source
546
32.8k
{
547
32.8k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
32.8k
    return init_get_bits(s, buffer, byte_size * 8);
550
32.8k
}
ac3dec_float.c:init_get_bits8
Line
Count
Source
546
2.34M
{
547
2.34M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
2.34M
    return init_get_bits(s, buffer, byte_size * 8);
550
2.34M
}
on2avc.c:init_get_bits8
Line
Count
Source
546
199k
{
547
199k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
199k
    return init_get_bits(s, buffer, byte_size * 8);
550
199k
}
smacker.c:init_get_bits8
Line
Count
Source
546
155k
{
547
155k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
155k
    return init_get_bits(s, buffer, byte_size * 8);
550
155k
}
Unexecuted instantiation: dvbsubdec.c:init_get_bits8
mss1.c:init_get_bits8
Line
Count
Source
546
330k
{
547
330k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
330k
    return init_get_bits(s, buffer, byte_size * 8);
550
330k
}
Unexecuted instantiation: mss12.c:init_get_bits8
mss2.c:init_get_bits8
Line
Count
Source
546
190k
{
547
190k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
190k
    return init_get_bits(s, buffer, byte_size * 8);
550
190k
}
mdec.c:init_get_bits8
Line
Count
Source
546
128k
{
547
128k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
128k
    return init_get_bits(s, buffer, byte_size * 8);
550
128k
}
osq.c:init_get_bits8
Line
Count
Source
546
30.5k
{
547
30.5k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
30.5k
    return init_get_bits(s, buffer, byte_size * 8);
550
30.5k
}
vp6.c:init_get_bits8
Line
Count
Source
546
9.37k
{
547
9.37k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
9.37k
    return init_get_bits(s, buffer, byte_size * 8);
550
9.37k
}
Unexecuted instantiation: vp56.c:init_get_bits8
Unexecuted instantiation: vp56data.c:init_get_bits8
loco.c:init_get_bits8
Line
Count
Source
546
499k
{
547
499k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
499k
    return init_get_bits(s, buffer, byte_size * 8);
550
499k
}
Unexecuted instantiation: vp5.c:init_get_bits8
ra144dec.c:init_get_bits8
Line
Count
Source
546
485k
{
547
485k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
485k
    return init_get_bits(s, buffer, byte_size * 8);
550
485k
}
Unexecuted instantiation: indeo5.c:init_get_bits8
ivi.c:init_get_bits8
Line
Count
Source
546
281k
{
547
281k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
281k
    return init_get_bits(s, buffer, byte_size * 8);
550
281k
}
Unexecuted instantiation: ivi_dsp.c:init_get_bits8
apac.c:init_get_bits8
Line
Count
Source
546
300k
{
547
300k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
300k
    return init_get_bits(s, buffer, byte_size * 8);
550
300k
}
clearvideo.c:init_get_bits8
Line
Count
Source
546
16.1k
{
547
16.1k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
16.1k
    return init_get_bits(s, buffer, byte_size * 8);
550
16.1k
}
dxtory.c:init_get_bits8
Line
Count
Source
546
7.23k
{
547
7.23k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
7.23k
    return init_get_bits(s, buffer, byte_size * 8);
550
7.23k
}
Unexecuted instantiation: mpegaudiodec_fixed.c:init_get_bits8
Unexecuted instantiation: ralf.c:init_get_bits8
pixlet.c:init_get_bits8
Line
Count
Source
546
35.1k
{
547
35.1k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
35.1k
    return init_get_bits(s, buffer, byte_size * 8);
550
35.1k
}
wnv1.c:init_get_bits8
Line
Count
Source
546
98.1k
{
547
98.1k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
98.1k
    return init_get_bits(s, buffer, byte_size * 8);
550
98.1k
}
Unexecuted instantiation: qoadec.c:init_get_bits8
vima.c:init_get_bits8
Line
Count
Source
546
111k
{
547
111k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
111k
    return init_get_bits(s, buffer, byte_size * 8);
550
111k
}
leaddec.c:init_get_bits8
Line
Count
Source
546
109k
{
547
109k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
109k
    return init_get_bits(s, buffer, byte_size * 8);
550
109k
}
Unexecuted instantiation: eatqi.c:init_get_bits8
lagarith.c:init_get_bits8
Line
Count
Source
546
11.4k
{
547
11.4k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
11.4k
    return init_get_bits(s, buffer, byte_size * 8);
550
11.4k
}
Unexecuted instantiation: lagarithrac.c:init_get_bits8
Unexecuted instantiation: dss_sp.c:init_get_bits8
siren.c:init_get_bits8
Line
Count
Source
546
340k
{
547
340k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
340k
    return init_get_bits(s, buffer, byte_size * 8);
550
340k
}
cavsdec.c:init_get_bits8
Line
Count
Source
546
1.39M
{
547
1.39M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.39M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.39M
}
Unexecuted instantiation: cavs.c:init_get_bits8
Unexecuted instantiation: cavsdata.c:init_get_bits8
hcom.c:init_get_bits8
Line
Count
Source
546
191k
{
547
191k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
191k
    return init_get_bits(s, buffer, byte_size * 8);
550
191k
}
vp3.c:init_get_bits8
Line
Count
Source
546
339k
{
547
339k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
339k
    return init_get_bits(s, buffer, byte_size * 8);
550
339k
}
webp.c:init_get_bits8
Line
Count
Source
546
103k
{
547
103k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
103k
    return init_get_bits(s, buffer, byte_size * 8);
550
103k
}
mpc8.c:init_get_bits8
Line
Count
Source
546
427k
{
547
427k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
427k
    return init_get_bits(s, buffer, byte_size * 8);
550
427k
}
Unexecuted instantiation: eatgv.c:init_get_bits8
eatgq.c:init_get_bits8
Line
Count
Source
546
120k
{
547
120k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
120k
    return init_get_bits(s, buffer, byte_size * 8);
550
120k
}
sga.c:init_get_bits8
Line
Count
Source
546
6.61k
{
547
6.61k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
6.61k
    return init_get_bits(s, buffer, byte_size * 8);
550
6.61k
}
binkaudio.c:init_get_bits8
Line
Count
Source
546
470k
{
547
470k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
470k
    return init_get_bits(s, buffer, byte_size * 8);
550
470k
}
mpeg12dec.c:init_get_bits8
Line
Count
Source
546
2.75M
{
547
2.75M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
2.75M
    return init_get_bits(s, buffer, byte_size * 8);
550
2.75M
}
indeo2.c:init_get_bits8
Line
Count
Source
546
181k
{
547
181k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
181k
    return init_get_bits(s, buffer, byte_size * 8);
550
181k
}
Unexecuted instantiation: 4xm.c:init_get_bits8
Unexecuted instantiation: wmalosslessdec.c:init_get_bits8
ilbcdec.c:init_get_bits8
Line
Count
Source
546
114k
{
547
114k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
114k
    return init_get_bits(s, buffer, byte_size * 8);
550
114k
}
Unexecuted instantiation: hevcdec.c:init_get_bits8
Unexecuted instantiation: mvs.c:init_get_bits8
Unexecuted instantiation: pred.c:init_get_bits8
Unexecuted instantiation: refs.c:init_get_bits8
Unexecuted instantiation: cabac.c:init_get_bits8
Unexecuted instantiation: dsp.c:init_get_bits8
Unexecuted instantiation: filter.c:init_get_bits8
tscc2.c:init_get_bits8
Line
Count
Source
546
6.82k
{
547
6.82k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
6.82k
    return init_get_bits(s, buffer, byte_size * 8);
550
6.82k
}
hqx.c:init_get_bits8
Line
Count
Source
546
1.49k
{
547
1.49k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.49k
    return init_get_bits(s, buffer, byte_size * 8);
550
1.49k
}
mobiclip.c:init_get_bits8
Line
Count
Source
546
109k
{
547
109k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
109k
    return init_get_bits(s, buffer, byte_size * 8);
550
109k
}
wmaprodec.c:init_get_bits8
Line
Count
Source
546
3.32M
{
547
3.32M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
3.32M
    return init_get_bits(s, buffer, byte_size * 8);
550
3.32M
}
g729dec.c:init_get_bits8
Line
Count
Source
546
1.07M
{
547
1.07M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.07M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.07M
}
Unexecuted instantiation: sipr.c:init_get_bits8
g722dec.c:init_get_bits8
Line
Count
Source
546
170k
{
547
170k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
170k
    return init_get_bits(s, buffer, byte_size * 8);
550
170k
}
Unexecuted instantiation: nellymoserdec.c:init_get_bits8
Unexecuted instantiation: dcaenc.c:init_get_bits8
Unexecuted instantiation: dcaadpcm.c:init_get_bits8
Unexecuted instantiation: dcadata.c:init_get_bits8
Unexecuted instantiation: interplayvideo.c:init_get_bits8
Unexecuted instantiation: dec.c:init_get_bits8
Unexecuted instantiation: dec_celt.c:init_get_bits8
Unexecuted instantiation: silk.c:init_get_bits8
mjpegbdec.c:init_get_bits8
Line
Count
Source
546
646k
{
547
646k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
646k
    return init_get_bits(s, buffer, byte_size * 8);
550
646k
}
Unexecuted instantiation: bink.c:init_get_bits8
Unexecuted instantiation: dvdsubdec.c:init_get_bits8
rtjpeg.c:init_get_bits8
Line
Count
Source
546
4.97k
{
547
4.97k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
4.97k
    return init_get_bits(s, buffer, byte_size * 8);
550
4.97k
}
Unexecuted instantiation: truespeech.c:init_get_bits8
metasound.c:init_get_bits8
Line
Count
Source
546
216k
{
547
216k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
216k
    return init_get_bits(s, buffer, byte_size * 8);
550
216k
}
escape124.c:init_get_bits8
Line
Count
Source
546
205k
{
547
205k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
205k
    return init_get_bits(s, buffer, byte_size * 8);
550
205k
}
cllc.c:init_get_bits8
Line
Count
Source
546
195k
{
547
195k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
195k
    return init_get_bits(s, buffer, byte_size * 8);
550
195k
}
Unexecuted instantiation: dvdec.c:init_get_bits8
tta.c:init_get_bits8
Line
Count
Source
546
149k
{
547
149k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
149k
    return init_get_bits(s, buffer, byte_size * 8);
550
149k
}
fraps.c:init_get_bits8
Line
Count
Source
546
6.56k
{
547
6.56k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
6.56k
    return init_get_bits(s, buffer, byte_size * 8);
550
6.56k
}
Unexecuted instantiation: motionpixels.c:init_get_bits8
vp9.c:init_get_bits8
Line
Count
Source
546
416k
{
547
416k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
416k
    return init_get_bits(s, buffer, byte_size * 8);
550
416k
}
Unexecuted instantiation: vp9block.c:init_get_bits8
Unexecuted instantiation: vp9data.c:init_get_bits8
Unexecuted instantiation: vp9lpf.c:init_get_bits8
Unexecuted instantiation: vp9mvs.c:init_get_bits8
Unexecuted instantiation: vp9prob.c:init_get_bits8
Unexecuted instantiation: vp9recon.c:init_get_bits8
Unexecuted instantiation: ffv1dec.c:init_get_bits8
Unexecuted instantiation: intra_utils.c:init_get_bits8
Unexecuted instantiation: thread.c:init_get_bits8
Unexecuted instantiation: ctu.c:init_get_bits8
Unexecuted instantiation: inter.c:init_get_bits8
Unexecuted instantiation: intra.c:init_get_bits8
wmavoice.c:init_get_bits8
Line
Count
Source
546
1.22M
{
547
1.22M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.22M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.22M
}
Unexecuted instantiation: rawdec.c:init_get_bits8
svq1dec.c:init_get_bits8
Line
Count
Source
546
241k
{
547
241k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
241k
    return init_get_bits(s, buffer, byte_size * 8);
550
241k
}
mpc7.c:init_get_bits8
Line
Count
Source
546
139k
{
547
139k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
139k
    return init_get_bits(s, buffer, byte_size * 8);
550
139k
}
truemotion2rt.c:init_get_bits8
Line
Count
Source
546
137k
{
547
137k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
137k
    return init_get_bits(s, buffer, byte_size * 8);
550
137k
}
Unexecuted instantiation: adxdec.c:init_get_bits8
Unexecuted instantiation: rv40.c:init_get_bits8
xsubdec.c:init_get_bits8
Line
Count
Source
546
2.30k
{
547
2.30k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
2.30k
    return init_get_bits(s, buffer, byte_size * 8);
550
2.30k
}
notchlc.c:init_get_bits8
Line
Count
Source
546
938k
{
547
938k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
938k
    return init_get_bits(s, buffer, byte_size * 8);
550
938k
}
Unexecuted instantiation: aic.c:init_get_bits8
vqcdec.c:init_get_bits8
Line
Count
Source
546
165k
{
547
165k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
165k
    return init_get_bits(s, buffer, byte_size * 8);
550
165k
}
Unexecuted instantiation: dolby_e.c:init_get_bits8
Unexecuted instantiation: proresdec.c:init_get_bits8
evrcdec.c:init_get_bits8
Line
Count
Source
546
13.9k
{
547
13.9k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
13.9k
    return init_get_bits(s, buffer, byte_size * 8);
550
13.9k
}
dnxhddec.c:init_get_bits8
Line
Count
Source
546
40.5k
{
547
40.5k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
40.5k
    return init_get_bits(s, buffer, byte_size * 8);
550
40.5k
}
Unexecuted instantiation: dcadec.c:init_get_bits8
dca_core.c:init_get_bits8
Line
Count
Source
546
150k
{
547
150k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
150k
    return init_get_bits(s, buffer, byte_size * 8);
550
150k
}
dca_lbr.c:init_get_bits8
Line
Count
Source
546
77.0k
{
547
77.0k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
77.0k
    return init_get_bits(s, buffer, byte_size * 8);
550
77.0k
}
dca_xll.c:init_get_bits8
Line
Count
Source
546
64.9k
{
547
64.9k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
64.9k
    return init_get_bits(s, buffer, byte_size * 8);
550
64.9k
}
Unexecuted instantiation: mlpenc.c:init_get_bits8
atrac3.c:init_get_bits8
Line
Count
Source
546
8.92k
{
547
8.92k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
8.92k
    return init_get_bits(s, buffer, byte_size * 8);
550
8.92k
}
vorbisdec.c:init_get_bits8
Line
Count
Source
546
187k
{
547
187k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
187k
    return init_get_bits(s, buffer, byte_size * 8);
550
187k
}
flashsv.c:init_get_bits8
Line
Count
Source
546
358k
{
547
358k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
358k
    return init_get_bits(s, buffer, byte_size * 8);
550
358k
}
wavpack.c:init_get_bits8
Line
Count
Source
546
23.2k
{
547
23.2k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
23.2k
    return init_get_bits(s, buffer, byte_size * 8);
550
23.2k
}
speedhqdec.c:init_get_bits8
Line
Count
Source
546
36.2k
{
547
36.2k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
36.2k
    return init_get_bits(s, buffer, byte_size * 8);
550
36.2k
}
g723_1dec.c:init_get_bits8
Line
Count
Source
546
4.71M
{
547
4.71M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
4.71M
    return init_get_bits(s, buffer, byte_size * 8);
550
4.71M
}
g2meet.c:init_get_bits8
Line
Count
Source
546
8.91k
{
547
8.91k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
8.91k
    return init_get_bits(s, buffer, byte_size * 8);
550
8.91k
}
shorten.c:init_get_bits8
Line
Count
Source
546
67.0k
{
547
67.0k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
67.0k
    return init_get_bits(s, buffer, byte_size * 8);
550
67.0k
}
Unexecuted instantiation: indeo4.c:init_get_bits8
Unexecuted instantiation: sp5xdec.c:init_get_bits8
Unexecuted instantiation: atrac1.c:init_get_bits8
apv_decode.c:init_get_bits8
Line
Count
Source
546
17.9k
{
547
17.9k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
17.9k
    return init_get_bits(s, buffer, byte_size * 8);
550
17.9k
}
apv_entropy.c:init_get_bits8
Line
Count
Source
546
15.3k
{
547
15.3k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
15.3k
    return init_get_bits(s, buffer, byte_size * 8);
550
15.3k
}
Unexecuted instantiation: avs.c:init_get_bits8
rv60dec.c:init_get_bits8
Line
Count
Source
546
156k
{
547
156k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
156k
    return init_get_bits(s, buffer, byte_size * 8);
550
156k
}
alac.c:init_get_bits8
Line
Count
Source
546
166k
{
547
166k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
166k
    return init_get_bits(s, buffer, byte_size * 8);
550
166k
}
Unexecuted instantiation: tiertexseqv.c:init_get_bits8
Unexecuted instantiation: ffv1enc.c:init_get_bits8
hcadec.c:init_get_bits8
Line
Count
Source
546
113k
{
547
113k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
113k
    return init_get_bits(s, buffer, byte_size * 8);
550
113k
}
pcx.c:init_get_bits8
Line
Count
Source
546
427k
{
547
427k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
427k
    return init_get_bits(s, buffer, byte_size * 8);
550
427k
}
qcelpdec.c:init_get_bits8
Line
Count
Source
546
11.3k
{
547
11.3k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
11.3k
    return init_get_bits(s, buffer, byte_size * 8);
550
11.3k
}
flacdec.c:init_get_bits8
Line
Count
Source
546
1.04M
{
547
1.04M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.04M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.04M
}
ac3dec_fixed.c:init_get_bits8
Line
Count
Source
546
1.24M
{
547
1.24M
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
1.24M
    return init_get_bits(s, buffer, byte_size * 8);
550
1.24M
}
midivid.c:init_get_bits8
Line
Count
Source
546
94.9k
{
547
94.9k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
94.9k
    return init_get_bits(s, buffer, byte_size * 8);
550
94.9k
}
mimic.c:init_get_bits8
Line
Count
Source
546
21.9k
{
547
21.9k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
21.9k
    return init_get_bits(s, buffer, byte_size * 8);
550
21.9k
}
fic.c:init_get_bits8
Line
Count
Source
546
41.8k
{
547
41.8k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
41.8k
    return init_get_bits(s, buffer, byte_size * 8);
550
41.8k
}
qdmc.c:init_get_bits8
Line
Count
Source
546
28.9k
{
547
28.9k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
28.9k
    return init_get_bits(s, buffer, byte_size * 8);
550
28.9k
}
ra288.c:init_get_bits8
Line
Count
Source
546
343k
{
547
343k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
343k
    return init_get_bits(s, buffer, byte_size * 8);
550
343k
}
interplayacm.c:init_get_bits8
Line
Count
Source
546
148k
{
547
148k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
148k
    return init_get_bits(s, buffer, byte_size * 8);
550
148k
}
ylc.c:init_get_bits8
Line
Count
Source
546
293k
{
547
293k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
293k
    return init_get_bits(s, buffer, byte_size * 8);
550
293k
}
Unexecuted instantiation: ftr.c:init_get_bits8
agm.c:init_get_bits8
Line
Count
Source
546
59.3k
{
547
59.3k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
59.3k
    return init_get_bits(s, buffer, byte_size * 8);
550
59.3k
}
xan.c:init_get_bits8
Line
Count
Source
546
111k
{
547
111k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
209
        byte_size = -1;
549
111k
    return init_get_bits(s, buffer, byte_size * 8);
550
111k
}
svq3.c:init_get_bits8
Line
Count
Source
546
320k
{
547
320k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
320k
    return init_get_bits(s, buffer, byte_size * 8);
550
320k
}
cri.c:init_get_bits8
Line
Count
Source
546
29.4k
{
547
29.4k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
29.4k
    return init_get_bits(s, buffer, byte_size * 8);
550
29.4k
}
qdm2.c:init_get_bits8
Line
Count
Source
546
351k
{
547
351k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
314
        byte_size = -1;
549
351k
    return init_get_bits(s, buffer, byte_size * 8);
550
351k
}
Unexecuted instantiation: cljrdec.c:init_get_bits8
g728dec.c:init_get_bits8
Line
Count
Source
546
147k
{
547
147k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
147k
    return init_get_bits(s, buffer, byte_size * 8);
550
147k
}
Unexecuted instantiation: cook.c:init_get_bits8
twinvqdec.c:init_get_bits8
Line
Count
Source
546
230k
{
547
230k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
230k
    return init_get_bits(s, buffer, byte_size * 8);
550
230k
}
Unexecuted instantiation: hq_hqa.c:init_get_bits8
cdxl.c:init_get_bits8
Line
Count
Source
546
122k
{
547
122k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
122k
    return init_get_bits(s, buffer, byte_size * 8);
550
122k
}
Unexecuted instantiation: vble.c:init_get_bits8
mv30.c:init_get_bits8
Line
Count
Source
546
120k
{
547
120k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
120k
    return init_get_bits(s, buffer, byte_size * 8);
550
120k
}
apedec.c:init_get_bits8
Line
Count
Source
546
28.8k
{
547
28.8k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
28.8k
    return init_get_bits(s, buffer, byte_size * 8);
550
28.8k
}
Unexecuted instantiation: h261dec.c:init_get_bits8
dstdec.c:init_get_bits8
Line
Count
Source
546
19.1k
{
547
19.1k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
548
0
        byte_size = -1;
549
19.1k
    return init_get_bits(s, buffer, byte_size * 8);
550
19.1k
}
Unexecuted instantiation: jpeglsenc.c:init_get_bits8
Unexecuted instantiation: truemotion2.c:init_get_bits8
551
552
static inline int init_get_bits8_le(GetBitContext *s, const uint8_t *buffer,
553
                                    int byte_size)
554
464k
{
555
464k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
556
0
        byte_size = -1;
557
464k
    return init_get_bits(s, buffer, byte_size * 8);
558
464k
}
Unexecuted instantiation: mpegvideo_motion.c:init_get_bits8_le
Unexecuted instantiation: wmv2dec.c:init_get_bits8_le
Unexecuted instantiation: aac_adtstoasc.c:init_get_bits8_le
Unexecuted instantiation: dovi_rpu.c:init_get_bits8_le
Unexecuted instantiation: dovi_split.c:init_get_bits8_le
Unexecuted instantiation: dts2pts.c:init_get_bits8_le
Unexecuted instantiation: eac3_core.c:init_get_bits8_le
Unexecuted instantiation: evc_frame_merge.c:init_get_bits8_le
Unexecuted instantiation: extract_extradata.c:init_get_bits8_le
Unexecuted instantiation: h264_metadata.c:init_get_bits8_le
Unexecuted instantiation: h264_redundant_pps.c:init_get_bits8_le
Unexecuted instantiation: h265_metadata.c:init_get_bits8_le
Unexecuted instantiation: h266_metadata.c:init_get_bits8_le
Unexecuted instantiation: lcevc_merge.c:init_get_bits8_le
Unexecuted instantiation: lcevc_metadata.c:init_get_bits8_le
Unexecuted instantiation: remove_extradata.c:init_get_bits8_le
Unexecuted instantiation: truehd_core.c:init_get_bits8_le
Unexecuted instantiation: vp9_raw_reorder.c:init_get_bits8_le
Unexecuted instantiation: vp9_superframe.c:init_get_bits8_le
Unexecuted instantiation: vp9_superframe_split.c:init_get_bits8_le
Unexecuted instantiation: cbs.c:init_get_bits8_le
Unexecuted instantiation: cbs_apv.c:init_get_bits8_le
Unexecuted instantiation: cbs_av1.c:init_get_bits8_le
Unexecuted instantiation: cbs_h264.c:init_get_bits8_le
Unexecuted instantiation: cbs_h2645.c:init_get_bits8_le
Unexecuted instantiation: cbs_h265.c:init_get_bits8_le
Unexecuted instantiation: cbs_h266.c:init_get_bits8_le
Unexecuted instantiation: cbs_lcevc.c:init_get_bits8_le
Unexecuted instantiation: cbs_mpeg2.c:init_get_bits8_le
Unexecuted instantiation: cbs_sei.c:init_get_bits8_le
cbs_vp8.c:init_get_bits8_le
Line
Count
Source
554
343k
{
555
343k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
556
0
        byte_size = -1;
557
343k
    return init_get_bits(s, buffer, byte_size * 8);
558
343k
}
Unexecuted instantiation: cbs_vp9.c:init_get_bits8_le
Unexecuted instantiation: dovi_rpudec.c:init_get_bits8_le
Unexecuted instantiation: evc_parse.c:init_get_bits8_le
Unexecuted instantiation: evc_ps.c:init_get_bits8_le
Unexecuted instantiation: h263dec.c:init_get_bits8_le
Unexecuted instantiation: h2645_parse.c:init_get_bits8_le
Unexecuted instantiation: h264_parse.c:init_get_bits8_le
Unexecuted instantiation: h264_ps.c:init_get_bits8_le
Unexecuted instantiation: h264data.c:init_get_bits8_le
Unexecuted instantiation: h265_profile_level.c:init_get_bits8_le
Unexecuted instantiation: ps.c:init_get_bits8_le
Unexecuted instantiation: intelh263dec.c:init_get_bits8_le
Unexecuted instantiation: intrax8.c:init_get_bits8_le
Unexecuted instantiation: ituh263dec.c:init_get_bits8_le
Unexecuted instantiation: mlp_parse.c:init_get_bits8_le
Unexecuted instantiation: mpeg4audio.c:init_get_bits8_le
Unexecuted instantiation: mpeg4videodec.c:init_get_bits8_le
Unexecuted instantiation: mpeg_er.c:init_get_bits8_le
Unexecuted instantiation: mpegvideo_dec.c:init_get_bits8_le
Unexecuted instantiation: msmpeg4dec.c:init_get_bits8_le
Unexecuted instantiation: rv10.c:init_get_bits8_le
Unexecuted instantiation: ac3_parser.c:init_get_bits8_le
Unexecuted instantiation: adts_header.c:init_get_bits8_le
Unexecuted instantiation: av1_parse.c:init_get_bits8_le
Unexecuted instantiation: flvdec.c:init_get_bits8_le
Unexecuted instantiation: h2645_vui.c:init_get_bits8_le
Unexecuted instantiation: vc1_parser.c:init_get_bits8_le
Unexecuted instantiation: vorbis_parser.c:init_get_bits8_le
Unexecuted instantiation: vp9_parser.c:init_get_bits8_le
Unexecuted instantiation: vvc_parser.c:init_get_bits8_le
Unexecuted instantiation: aac_ac3_parser.c:init_get_bits8_le
Unexecuted instantiation: av1_parser.c:init_get_bits8_le
Unexecuted instantiation: avs2_parser.c:init_get_bits8_le
Unexecuted instantiation: avs3_parser.c:init_get_bits8_le
Unexecuted instantiation: cavs_parser.c:init_get_bits8_le
Unexecuted instantiation: dca_parser.c:init_get_bits8_le
Unexecuted instantiation: dolby_e_parser.c:init_get_bits8_le
Unexecuted instantiation: evc_parser.c:init_get_bits8_le
Unexecuted instantiation: ffv1_parser.c:init_get_bits8_le
Unexecuted instantiation: flac_parser.c:init_get_bits8_le
Unexecuted instantiation: ftr_parser.c:init_get_bits8_le
Unexecuted instantiation: h264_parser.c:init_get_bits8_le
Unexecuted instantiation: h264_sei.c:init_get_bits8_le
Unexecuted instantiation: h264idct.c:init_get_bits8_le
Unexecuted instantiation: parser.c:init_get_bits8_le
Unexecuted instantiation: sei.c:init_get_bits8_le
Unexecuted instantiation: jpegxl_parser.c:init_get_bits8_le
Unexecuted instantiation: jpegxs_parser.c:init_get_bits8_le
Unexecuted instantiation: lcevc_parser.c:init_get_bits8_le
Unexecuted instantiation: mlp_parser.c:init_get_bits8_le
Unexecuted instantiation: mpeg4video_parser.c:init_get_bits8_le
Unexecuted instantiation: vc1.c:init_get_bits8_le
Unexecuted instantiation: vc1data.c:init_get_bits8_le
Unexecuted instantiation: dca.c:init_get_bits8_le
Unexecuted instantiation: dca_exss.c:init_get_bits8_le
Unexecuted instantiation: dolby_e_parse.c:init_get_bits8_le
Unexecuted instantiation: ffv1.c:init_get_bits8_le
Unexecuted instantiation: ffv1_parse.c:init_get_bits8_le
Unexecuted instantiation: flac.c:init_get_bits8_le
Unexecuted instantiation: h2645_sei.c:init_get_bits8_le
Unexecuted instantiation: parse.c:init_get_bits8_le
Unexecuted instantiation: jpegxl_parse.c:init_get_bits8_le
Unexecuted instantiation: aom_film_grain.c:init_get_bits8_le
Unexecuted instantiation: dynamic_hdr_vivid.c:init_get_bits8_le
Unexecuted instantiation: hdr_dynamic_metadata.c:init_get_bits8_le
Unexecuted instantiation: av1dec.c:init_get_bits8_le
Unexecuted instantiation: bit.c:init_get_bits8_le
Unexecuted instantiation: dtsdec.c:init_get_bits8_le
Unexecuted instantiation: dtshddec.c:init_get_bits8_le
Unexecuted instantiation: h264dec.c:init_get_bits8_le
Unexecuted instantiation: hls_sample_encryption.c:init_get_bits8_le
Unexecuted instantiation: isom.c:init_get_bits8_le
Unexecuted instantiation: matroskadec.c:init_get_bits8_le
Unexecuted instantiation: mlpdec.c:init_get_bits8_le
Unexecuted instantiation: mov.c:init_get_bits8_le
Unexecuted instantiation: mpc8.c:init_get_bits8_le
Unexecuted instantiation: mpegts.c:init_get_bits8_le
Unexecuted instantiation: oggparsetheora.c:init_get_bits8_le
Unexecuted instantiation: shortendec.c:init_get_bits8_le
Unexecuted instantiation: swfdec.c:init_get_bits8_le
Unexecuted instantiation: takdec.c:init_get_bits8_le
Unexecuted instantiation: iamf_parse.c:init_get_bits8_le
Unexecuted instantiation: dirac.c:init_get_bits8_le
Unexecuted instantiation: atrac9dec.c:init_get_bits8_le
Unexecuted instantiation: enc.c:init_get_bits8_le
Unexecuted instantiation: enc_psy.c:init_get_bits8_le
Unexecuted instantiation: pvq.c:init_get_bits8_le
Unexecuted instantiation: rc.c:init_get_bits8_le
Unexecuted instantiation: celt.c:init_get_bits8_le
Unexecuted instantiation: gsmdec.c:init_get_bits8_le
Unexecuted instantiation: msgsmdec.c:init_get_bits8_le
Unexecuted instantiation: imc.c:init_get_bits8_le
Unexecuted instantiation: adpcm.c:init_get_bits8_le
Unexecuted instantiation: wmaenc.c:init_get_bits8_le
Unexecuted instantiation: wma.c:init_get_bits8_le
Unexecuted instantiation: cfhd.c:init_get_bits8_le
Unexecuted instantiation: wavarc.c:init_get_bits8_le
Unexecuted instantiation: escape130.c:init_get_bits8_le
asvdec.c:init_get_bits8_le
Line
Count
Source
554
121k
{
555
121k
    if (byte_size > INT_MAX / 8 || byte_size < 0)
556
0
        byte_size = -1;
557
121k
    return init_get_bits(s, buffer, byte_size * 8);
558
121k
}
Unexecuted instantiation: diracdec.c:init_get_bits8_le
Unexecuted instantiation: dirac_arith.c:init_get_bits8_le
Unexecuted instantiation: wmadec.c:init_get_bits8_le
Unexecuted instantiation: aacenc.c:init_get_bits8_le
Unexecuted instantiation: imm4.c:init_get_bits8_le
Unexecuted instantiation: exr.c:init_get_bits8_le
Unexecuted instantiation: aacdec.c:init_get_bits8_le
Unexecuted instantiation: aacdec_fixed.c:init_get_bits8_le
Unexecuted instantiation: aacdec_float.c:init_get_bits8_le
Unexecuted instantiation: aacdec_tab.c:init_get_bits8_le
Unexecuted instantiation: aacdec_usac.c:init_get_bits8_le
Unexecuted instantiation: aacdec_usac_mps212.c:init_get_bits8_le
Unexecuted instantiation: aacps_common.c:init_get_bits8_le
Unexecuted instantiation: aacsbr.c:init_get_bits8_le
Unexecuted instantiation: aacsbr_fixed.c:init_get_bits8_le
Unexecuted instantiation: aacdec_ac.c:init_get_bits8_le
Unexecuted instantiation: aacdec_lpd.c:init_get_bits8_le
Unexecuted instantiation: aacps_fixed.c:init_get_bits8_le
Unexecuted instantiation: aacps_float.c:init_get_bits8_le
Unexecuted instantiation: mjpegdec.c:init_get_bits8_le
Unexecuted instantiation: mjpegdec_common.c:init_get_bits8_le
Unexecuted instantiation: jpeglsdec.c:init_get_bits8_le
Unexecuted instantiation: jvdec.c:init_get_bits8_le
Unexecuted instantiation: rdt.c:init_get_bits8_le
Unexecuted instantiation: rtpdec_h261.c:init_get_bits8_le
Unexecuted instantiation: rtpdec_h263_rfc2190.c:init_get_bits8_le
Unexecuted instantiation: rtpdec_latm.c:init_get_bits8_le
Unexecuted instantiation: rtpdec_mpeg4.c:init_get_bits8_le
Unexecuted instantiation: rtpdec_qt.c:init_get_bits8_le
Unexecuted instantiation: h264_cavlc.c:init_get_bits8_le
Unexecuted instantiation: h264_direct.c:init_get_bits8_le
Unexecuted instantiation: h264_mb.c:init_get_bits8_le
Unexecuted instantiation: h264_picture.c:init_get_bits8_le
Unexecuted instantiation: h264_refs.c:init_get_bits8_le
Unexecuted instantiation: h264_slice.c:init_get_bits8_le
Unexecuted instantiation: h264_cabac.c:init_get_bits8_le
Unexecuted instantiation: h264_loopfilter.c:init_get_bits8_le
Unexecuted instantiation: alsdec.c:init_get_bits8_le
Unexecuted instantiation: bgmc.c:init_get_bits8_le
Unexecuted instantiation: mlz.c:init_get_bits8_le
Unexecuted instantiation: bonk.c:init_get_bits8_le
Unexecuted instantiation: mxpegdec.c:init_get_bits8_le
Unexecuted instantiation: rv30.c:init_get_bits8_le
Unexecuted instantiation: rv34.c:init_get_bits8_le
Unexecuted instantiation: indeo3.c:init_get_bits8_le
Unexecuted instantiation: eamad.c:init_get_bits8_le
Unexecuted instantiation: mpeg12.c:init_get_bits8_le
Unexecuted instantiation: g726.c:init_get_bits8_le
Unexecuted instantiation: vc1dec.c:init_get_bits8_le
Unexecuted instantiation: vc1_block.c:init_get_bits8_le
Unexecuted instantiation: vc1_loopfilter.c:init_get_bits8_le
Unexecuted instantiation: vc1_mc.c:init_get_bits8_le
Unexecuted instantiation: vc1_pred.c:init_get_bits8_le
Unexecuted instantiation: mpegaudiodec_float.c:init_get_bits8_le
Unexecuted instantiation: huffyuvdec.c:init_get_bits8_le
Unexecuted instantiation: speexdec.c:init_get_bits8_le
Unexecuted instantiation: atrac3plusdec.c:init_get_bits8_le
Unexecuted instantiation: atrac3plusdsp.c:init_get_bits8_le
Unexecuted instantiation: atrac3plus.c:init_get_bits8_le
Unexecuted instantiation: mss4.c:init_get_bits8_le
Unexecuted instantiation: tiff.c:init_get_bits8_le
Unexecuted instantiation: faxcompr.c:init_get_bits8_le
Unexecuted instantiation: ac3dec_float.c:init_get_bits8_le
Unexecuted instantiation: on2avc.c:init_get_bits8_le
Unexecuted instantiation: smacker.c:init_get_bits8_le
Unexecuted instantiation: dvbsubdec.c:init_get_bits8_le
Unexecuted instantiation: mss1.c:init_get_bits8_le
Unexecuted instantiation: mss12.c:init_get_bits8_le
Unexecuted instantiation: mss2.c:init_get_bits8_le
Unexecuted instantiation: mdec.c:init_get_bits8_le
Unexecuted instantiation: osq.c:init_get_bits8_le
Unexecuted instantiation: vp6.c:init_get_bits8_le
Unexecuted instantiation: vp56.c:init_get_bits8_le
Unexecuted instantiation: vp56data.c:init_get_bits8_le
Unexecuted instantiation: loco.c:init_get_bits8_le
Unexecuted instantiation: vp5.c:init_get_bits8_le
Unexecuted instantiation: ra144dec.c:init_get_bits8_le
Unexecuted instantiation: indeo5.c:init_get_bits8_le
Unexecuted instantiation: ivi.c:init_get_bits8_le
Unexecuted instantiation: ivi_dsp.c:init_get_bits8_le
Unexecuted instantiation: apac.c:init_get_bits8_le
Unexecuted instantiation: clearvideo.c:init_get_bits8_le
Unexecuted instantiation: dxtory.c:init_get_bits8_le
Unexecuted instantiation: mpegaudiodec_fixed.c:init_get_bits8_le
Unexecuted instantiation: ralf.c:init_get_bits8_le
Unexecuted instantiation: pixlet.c:init_get_bits8_le
Unexecuted instantiation: wnv1.c:init_get_bits8_le
Unexecuted instantiation: qoadec.c:init_get_bits8_le
Unexecuted instantiation: vima.c:init_get_bits8_le
Unexecuted instantiation: leaddec.c:init_get_bits8_le
Unexecuted instantiation: eatqi.c:init_get_bits8_le
Unexecuted instantiation: lagarith.c:init_get_bits8_le
Unexecuted instantiation: lagarithrac.c:init_get_bits8_le
Unexecuted instantiation: dss_sp.c:init_get_bits8_le
Unexecuted instantiation: siren.c:init_get_bits8_le
Unexecuted instantiation: cavsdec.c:init_get_bits8_le
Unexecuted instantiation: cavs.c:init_get_bits8_le
Unexecuted instantiation: cavsdata.c:init_get_bits8_le
Unexecuted instantiation: hcom.c:init_get_bits8_le
Unexecuted instantiation: vp3.c:init_get_bits8_le
Unexecuted instantiation: webp.c:init_get_bits8_le
Unexecuted instantiation: eatgv.c:init_get_bits8_le
Unexecuted instantiation: eatgq.c:init_get_bits8_le
Unexecuted instantiation: sga.c:init_get_bits8_le
Unexecuted instantiation: binkaudio.c:init_get_bits8_le
Unexecuted instantiation: mpeg12dec.c:init_get_bits8_le
Unexecuted instantiation: indeo2.c:init_get_bits8_le
Unexecuted instantiation: 4xm.c:init_get_bits8_le
Unexecuted instantiation: wmalosslessdec.c:init_get_bits8_le
Unexecuted instantiation: ilbcdec.c:init_get_bits8_le
Unexecuted instantiation: hevcdec.c:init_get_bits8_le
Unexecuted instantiation: mvs.c:init_get_bits8_le
Unexecuted instantiation: pred.c:init_get_bits8_le
Unexecuted instantiation: refs.c:init_get_bits8_le
Unexecuted instantiation: cabac.c:init_get_bits8_le
Unexecuted instantiation: dsp.c:init_get_bits8_le
Unexecuted instantiation: filter.c:init_get_bits8_le
Unexecuted instantiation: tscc2.c:init_get_bits8_le
Unexecuted instantiation: hqx.c:init_get_bits8_le
Unexecuted instantiation: mobiclip.c:init_get_bits8_le
Unexecuted instantiation: wmaprodec.c:init_get_bits8_le
Unexecuted instantiation: g729dec.c:init_get_bits8_le
Unexecuted instantiation: sipr.c:init_get_bits8_le
Unexecuted instantiation: g722dec.c:init_get_bits8_le
Unexecuted instantiation: nellymoserdec.c:init_get_bits8_le
Unexecuted instantiation: dcaenc.c:init_get_bits8_le
Unexecuted instantiation: dcaadpcm.c:init_get_bits8_le
Unexecuted instantiation: dcadata.c:init_get_bits8_le
Unexecuted instantiation: interplayvideo.c:init_get_bits8_le
Unexecuted instantiation: dec.c:init_get_bits8_le
Unexecuted instantiation: dec_celt.c:init_get_bits8_le
Unexecuted instantiation: silk.c:init_get_bits8_le
Unexecuted instantiation: mjpegbdec.c:init_get_bits8_le
Unexecuted instantiation: bink.c:init_get_bits8_le
Unexecuted instantiation: dvdsubdec.c:init_get_bits8_le
Unexecuted instantiation: rtjpeg.c:init_get_bits8_le
Unexecuted instantiation: truespeech.c:init_get_bits8_le
Unexecuted instantiation: metasound.c:init_get_bits8_le
Unexecuted instantiation: escape124.c:init_get_bits8_le
Unexecuted instantiation: cllc.c:init_get_bits8_le
Unexecuted instantiation: dvdec.c:init_get_bits8_le
Unexecuted instantiation: tta.c:init_get_bits8_le
Unexecuted instantiation: fraps.c:init_get_bits8_le
Unexecuted instantiation: motionpixels.c:init_get_bits8_le
Unexecuted instantiation: vp9.c:init_get_bits8_le
Unexecuted instantiation: vp9block.c:init_get_bits8_le
Unexecuted instantiation: vp9data.c:init_get_bits8_le
Unexecuted instantiation: vp9lpf.c:init_get_bits8_le
Unexecuted instantiation: vp9mvs.c:init_get_bits8_le
Unexecuted instantiation: vp9prob.c:init_get_bits8_le
Unexecuted instantiation: vp9recon.c:init_get_bits8_le
Unexecuted instantiation: ffv1dec.c:init_get_bits8_le
Unexecuted instantiation: intra_utils.c:init_get_bits8_le
Unexecuted instantiation: thread.c:init_get_bits8_le
Unexecuted instantiation: ctu.c:init_get_bits8_le
Unexecuted instantiation: inter.c:init_get_bits8_le
Unexecuted instantiation: intra.c:init_get_bits8_le
Unexecuted instantiation: wmavoice.c:init_get_bits8_le
Unexecuted instantiation: rawdec.c:init_get_bits8_le
Unexecuted instantiation: svq1dec.c:init_get_bits8_le
Unexecuted instantiation: mpc7.c:init_get_bits8_le
Unexecuted instantiation: truemotion2rt.c:init_get_bits8_le
Unexecuted instantiation: adxdec.c:init_get_bits8_le
Unexecuted instantiation: rv40.c:init_get_bits8_le
Unexecuted instantiation: xsubdec.c:init_get_bits8_le
Unexecuted instantiation: notchlc.c:init_get_bits8_le
Unexecuted instantiation: aic.c:init_get_bits8_le
Unexecuted instantiation: vqcdec.c:init_get_bits8_le
Unexecuted instantiation: dolby_e.c:init_get_bits8_le
Unexecuted instantiation: proresdec.c:init_get_bits8_le
Unexecuted instantiation: evrcdec.c:init_get_bits8_le
Unexecuted instantiation: dnxhddec.c:init_get_bits8_le
Unexecuted instantiation: dcadec.c:init_get_bits8_le
Unexecuted instantiation: dca_core.c:init_get_bits8_le
Unexecuted instantiation: dca_lbr.c:init_get_bits8_le
Unexecuted instantiation: dca_xll.c:init_get_bits8_le
Unexecuted instantiation: mlpenc.c:init_get_bits8_le
Unexecuted instantiation: atrac3.c:init_get_bits8_le
Unexecuted instantiation: vorbisdec.c:init_get_bits8_le
Unexecuted instantiation: flashsv.c:init_get_bits8_le
Unexecuted instantiation: wavpack.c:init_get_bits8_le
Unexecuted instantiation: speedhqdec.c:init_get_bits8_le
Unexecuted instantiation: g723_1dec.c:init_get_bits8_le
Unexecuted instantiation: g2meet.c:init_get_bits8_le
Unexecuted instantiation: shorten.c:init_get_bits8_le
Unexecuted instantiation: indeo4.c:init_get_bits8_le
Unexecuted instantiation: sp5xdec.c:init_get_bits8_le
Unexecuted instantiation: atrac1.c:init_get_bits8_le
Unexecuted instantiation: apv_decode.c:init_get_bits8_le
Unexecuted instantiation: apv_entropy.c:init_get_bits8_le
Unexecuted instantiation: avs.c:init_get_bits8_le
Unexecuted instantiation: rv60dec.c:init_get_bits8_le
Unexecuted instantiation: alac.c:init_get_bits8_le
Unexecuted instantiation: tiertexseqv.c:init_get_bits8_le
Unexecuted instantiation: ffv1enc.c:init_get_bits8_le
Unexecuted instantiation: hcadec.c:init_get_bits8_le
Unexecuted instantiation: pcx.c:init_get_bits8_le
Unexecuted instantiation: qcelpdec.c:init_get_bits8_le
Unexecuted instantiation: flacdec.c:init_get_bits8_le
Unexecuted instantiation: ac3dec_fixed.c:init_get_bits8_le
Unexecuted instantiation: midivid.c:init_get_bits8_le
Unexecuted instantiation: mimic.c:init_get_bits8_le
Unexecuted instantiation: fic.c:init_get_bits8_le
Unexecuted instantiation: qdmc.c:init_get_bits8_le
Unexecuted instantiation: ra288.c:init_get_bits8_le
Unexecuted instantiation: interplayacm.c:init_get_bits8_le
Unexecuted instantiation: ylc.c:init_get_bits8_le
Unexecuted instantiation: ftr.c:init_get_bits8_le
Unexecuted instantiation: agm.c:init_get_bits8_le
Unexecuted instantiation: xan.c:init_get_bits8_le
Unexecuted instantiation: svq3.c:init_get_bits8_le
Unexecuted instantiation: cri.c:init_get_bits8_le
Unexecuted instantiation: qdm2.c:init_get_bits8_le
Unexecuted instantiation: cljrdec.c:init_get_bits8_le
Unexecuted instantiation: g728dec.c:init_get_bits8_le
Unexecuted instantiation: cook.c:init_get_bits8_le
Unexecuted instantiation: twinvqdec.c:init_get_bits8_le
Unexecuted instantiation: hq_hqa.c:init_get_bits8_le
Unexecuted instantiation: cdxl.c:init_get_bits8_le
Unexecuted instantiation: vble.c:init_get_bits8_le
Unexecuted instantiation: mv30.c:init_get_bits8_le
Unexecuted instantiation: apedec.c:init_get_bits8_le
Unexecuted instantiation: h261dec.c:init_get_bits8_le
Unexecuted instantiation: dstdec.c:init_get_bits8_le
Unexecuted instantiation: jpeglsenc.c:init_get_bits8_le
Unexecuted instantiation: truemotion2.c:init_get_bits8_le
559
560
static inline const uint8_t *align_get_bits(GetBitContext *s)
561
27.1M
{
562
27.1M
    int n = -get_bits_count(s) & 7;
563
27.1M
    if (n)
564
16.3M
        skip_bits(s, n);
565
27.1M
    return s->buffer + (s->index >> 3);
566
27.1M
}
Unexecuted instantiation: mpegvideo_motion.c:align_get_bits
Unexecuted instantiation: wmv2dec.c:align_get_bits
aac_adtstoasc.c:align_get_bits
Line
Count
Source
561
579
{
562
579
    int n = -get_bits_count(s) & 7;
563
579
    if (n)
564
502
        skip_bits(s, n);
565
579
    return s->buffer + (s->index >> 3);
566
579
}
Unexecuted instantiation: dovi_rpu.c:align_get_bits
Unexecuted instantiation: dovi_split.c:align_get_bits
Unexecuted instantiation: dts2pts.c:align_get_bits
Unexecuted instantiation: eac3_core.c:align_get_bits
Unexecuted instantiation: evc_frame_merge.c:align_get_bits
Unexecuted instantiation: extract_extradata.c:align_get_bits
Unexecuted instantiation: h264_metadata.c:align_get_bits
Unexecuted instantiation: h264_redundant_pps.c:align_get_bits
Unexecuted instantiation: h265_metadata.c:align_get_bits
Unexecuted instantiation: h266_metadata.c:align_get_bits
Unexecuted instantiation: lcevc_merge.c:align_get_bits
Unexecuted instantiation: lcevc_metadata.c:align_get_bits
Unexecuted instantiation: remove_extradata.c:align_get_bits
Unexecuted instantiation: truehd_core.c:align_get_bits
Unexecuted instantiation: vp9_raw_reorder.c:align_get_bits
Unexecuted instantiation: vp9_superframe.c:align_get_bits
Unexecuted instantiation: vp9_superframe_split.c:align_get_bits
Unexecuted instantiation: cbs.c:align_get_bits
cbs_apv.c:align_get_bits
Line
Count
Source
561
30.3k
{
562
30.3k
    int n = -get_bits_count(s) & 7;
563
30.3k
    if (n)
564
0
        skip_bits(s, n);
565
30.3k
    return s->buffer + (s->index >> 3);
566
30.3k
}
Unexecuted instantiation: cbs_av1.c:align_get_bits
Unexecuted instantiation: cbs_h264.c:align_get_bits
Unexecuted instantiation: cbs_h2645.c:align_get_bits
Unexecuted instantiation: cbs_h265.c:align_get_bits
Unexecuted instantiation: cbs_h266.c:align_get_bits
Unexecuted instantiation: cbs_lcevc.c:align_get_bits
Unexecuted instantiation: cbs_mpeg2.c:align_get_bits
Unexecuted instantiation: cbs_sei.c:align_get_bits
Unexecuted instantiation: cbs_vp8.c:align_get_bits
Unexecuted instantiation: cbs_vp9.c:align_get_bits
dovi_rpudec.c:align_get_bits
Line
Count
Source
561
2.84k
{
562
2.84k
    int n = -get_bits_count(s) & 7;
563
2.84k
    if (n)
564
914
        skip_bits(s, n);
565
2.84k
    return s->buffer + (s->index >> 3);
566
2.84k
}
Unexecuted instantiation: evc_parse.c:align_get_bits
Unexecuted instantiation: evc_ps.c:align_get_bits
Unexecuted instantiation: h263dec.c:align_get_bits
Unexecuted instantiation: h2645_parse.c:align_get_bits
Unexecuted instantiation: h264_parse.c:align_get_bits
Unexecuted instantiation: h264_ps.c:align_get_bits
Unexecuted instantiation: h264data.c:align_get_bits
Unexecuted instantiation: h265_profile_level.c:align_get_bits
ps.c:align_get_bits
Line
Count
Source
561
403k
{
562
403k
    int n = -get_bits_count(s) & 7;
563
403k
    if (n)
564
362k
        skip_bits(s, n);
565
403k
    return s->buffer + (s->index >> 3);
566
403k
}
Unexecuted instantiation: intelh263dec.c:align_get_bits
Unexecuted instantiation: intrax8.c:align_get_bits
ituh263dec.c:align_get_bits
Line
Count
Source
561
1.86M
{
562
1.86M
    int n = -get_bits_count(s) & 7;
563
1.86M
    if (n)
564
1.06M
        skip_bits(s, n);
565
1.86M
    return s->buffer + (s->index >> 3);
566
1.86M
}
Unexecuted instantiation: mlp_parse.c:align_get_bits
Unexecuted instantiation: mpeg4audio.c:align_get_bits
mpeg4videodec.c:align_get_bits
Line
Count
Source
561
1.73M
{
562
1.73M
    int n = -get_bits_count(s) & 7;
563
1.73M
    if (n)
564
296k
        skip_bits(s, n);
565
1.73M
    return s->buffer + (s->index >> 3);
566
1.73M
}
Unexecuted instantiation: mpeg_er.c:align_get_bits
Unexecuted instantiation: mpegvideo_dec.c:align_get_bits
Unexecuted instantiation: msmpeg4dec.c:align_get_bits
Unexecuted instantiation: rv10.c:align_get_bits
Unexecuted instantiation: ac3_parser.c:align_get_bits
Unexecuted instantiation: adts_header.c:align_get_bits
Unexecuted instantiation: av1_parse.c:align_get_bits
Unexecuted instantiation: flvdec.c:align_get_bits
Unexecuted instantiation: h2645_vui.c:align_get_bits
Unexecuted instantiation: vc1_parser.c:align_get_bits
Unexecuted instantiation: vorbis_parser.c:align_get_bits
Unexecuted instantiation: vp9_parser.c:align_get_bits
Unexecuted instantiation: vvc_parser.c:align_get_bits
Unexecuted instantiation: aac_ac3_parser.c:align_get_bits
Unexecuted instantiation: av1_parser.c:align_get_bits
Unexecuted instantiation: avs2_parser.c:align_get_bits
Unexecuted instantiation: avs3_parser.c:align_get_bits
Unexecuted instantiation: cavs_parser.c:align_get_bits
Unexecuted instantiation: dca_parser.c:align_get_bits
Unexecuted instantiation: dolby_e_parser.c:align_get_bits
Unexecuted instantiation: evc_parser.c:align_get_bits
Unexecuted instantiation: ffv1_parser.c:align_get_bits
Unexecuted instantiation: flac_parser.c:align_get_bits
Unexecuted instantiation: ftr_parser.c:align_get_bits
Unexecuted instantiation: h264_parser.c:align_get_bits
Unexecuted instantiation: h264_sei.c:align_get_bits
Unexecuted instantiation: h264idct.c:align_get_bits
Unexecuted instantiation: parser.c:align_get_bits
Unexecuted instantiation: sei.c:align_get_bits
jpegxl_parser.c:align_get_bits
Line
Count
Source
561
5.84M
{
562
5.84M
    int n = -get_bits_count(s) & 7;
563
5.84M
    if (n)
564
5.84M
        skip_bits(s, n);
565
5.84M
    return s->buffer + (s->index >> 3);
566
5.84M
}
Unexecuted instantiation: jpegxs_parser.c:align_get_bits
Unexecuted instantiation: lcevc_parser.c:align_get_bits
Unexecuted instantiation: mlp_parser.c:align_get_bits
Unexecuted instantiation: mpeg4video_parser.c:align_get_bits
Unexecuted instantiation: vc1.c:align_get_bits
Unexecuted instantiation: vc1data.c:align_get_bits
Unexecuted instantiation: dca.c:align_get_bits
Unexecuted instantiation: dca_exss.c:align_get_bits
Unexecuted instantiation: dolby_e_parse.c:align_get_bits
Unexecuted instantiation: ffv1.c:align_get_bits
Unexecuted instantiation: ffv1_parse.c:align_get_bits
Unexecuted instantiation: flac.c:align_get_bits
Unexecuted instantiation: h2645_sei.c:align_get_bits
Unexecuted instantiation: parse.c:align_get_bits
Unexecuted instantiation: jpegxl_parse.c:align_get_bits
Unexecuted instantiation: aom_film_grain.c:align_get_bits
Unexecuted instantiation: dynamic_hdr_vivid.c:align_get_bits
Unexecuted instantiation: hdr_dynamic_metadata.c:align_get_bits
Unexecuted instantiation: av1dec.c:align_get_bits
Unexecuted instantiation: bit.c:align_get_bits
Unexecuted instantiation: dtsdec.c:align_get_bits
Unexecuted instantiation: dtshddec.c:align_get_bits
Unexecuted instantiation: h264dec.c:align_get_bits
Unexecuted instantiation: hls_sample_encryption.c:align_get_bits
Unexecuted instantiation: isom.c:align_get_bits
Unexecuted instantiation: matroskadec.c:align_get_bits
Unexecuted instantiation: mlpdec.c:align_get_bits
Unexecuted instantiation: mov.c:align_get_bits
Unexecuted instantiation: mpc8.c:align_get_bits
Unexecuted instantiation: mpegts.c:align_get_bits
Unexecuted instantiation: oggparsetheora.c:align_get_bits
Unexecuted instantiation: shortendec.c:align_get_bits
Unexecuted instantiation: swfdec.c:align_get_bits
Unexecuted instantiation: takdec.c:align_get_bits
Unexecuted instantiation: iamf_parse.c:align_get_bits
Unexecuted instantiation: dirac.c:align_get_bits
atrac9dec.c:align_get_bits
Line
Count
Source
561
2.73M
{
562
2.73M
    int n = -get_bits_count(s) & 7;
563
2.73M
    if (n)
564
2.60M
        skip_bits(s, n);
565
2.73M
    return s->buffer + (s->index >> 3);
566
2.73M
}
Unexecuted instantiation: enc.c:align_get_bits
Unexecuted instantiation: enc_psy.c:align_get_bits
Unexecuted instantiation: pvq.c:align_get_bits
Unexecuted instantiation: rc.c:align_get_bits
Unexecuted instantiation: celt.c:align_get_bits
Unexecuted instantiation: gsmdec.c:align_get_bits
Unexecuted instantiation: msgsmdec.c:align_get_bits
Unexecuted instantiation: imc.c:align_get_bits
adpcm.c:align_get_bits
Line
Count
Source
561
549k
{
562
549k
    int n = -get_bits_count(s) & 7;
563
549k
    if (n)
564
461k
        skip_bits(s, n);
565
549k
    return s->buffer + (s->index >> 3);
566
549k
}
Unexecuted instantiation: wmaenc.c:align_get_bits
Unexecuted instantiation: wma.c:align_get_bits
Unexecuted instantiation: cfhd.c:align_get_bits
Unexecuted instantiation: wavarc.c:align_get_bits
Unexecuted instantiation: escape130.c:align_get_bits
Unexecuted instantiation: asvdec.c:align_get_bits
diracdec.c:align_get_bits
Line
Count
Source
561
378k
{
562
378k
    int n = -get_bits_count(s) & 7;
563
378k
    if (n)
564
180k
        skip_bits(s, n);
565
378k
    return s->buffer + (s->index >> 3);
566
378k
}
dirac_arith.c:align_get_bits
Line
Count
Source
561
202k
{
562
202k
    int n = -get_bits_count(s) & 7;
563
202k
    if (n)
564
154k
        skip_bits(s, n);
565
202k
    return s->buffer + (s->index >> 3);
566
202k
}
wmadec.c:align_get_bits
Line
Count
Source
561
29.3k
{
562
29.3k
    int n = -get_bits_count(s) & 7;
563
29.3k
    if (n)
564
2.92k
        skip_bits(s, n);
565
29.3k
    return s->buffer + (s->index >> 3);
566
29.3k
}
Unexecuted instantiation: aacenc.c:align_get_bits
Unexecuted instantiation: imm4.c:align_get_bits
Unexecuted instantiation: exr.c:align_get_bits
aacdec.c:align_get_bits
Line
Count
Source
561
104k
{
562
104k
    int n = -get_bits_count(s) & 7;
563
104k
    if (n)
564
94.7k
        skip_bits(s, n);
565
104k
    return s->buffer + (s->index >> 3);
566
104k
}
Unexecuted instantiation: aacdec_fixed.c:align_get_bits
Unexecuted instantiation: aacdec_float.c:align_get_bits
Unexecuted instantiation: aacdec_tab.c:align_get_bits
Unexecuted instantiation: aacdec_usac.c:align_get_bits
Unexecuted instantiation: aacdec_usac_mps212.c:align_get_bits
Unexecuted instantiation: aacps_common.c:align_get_bits
Unexecuted instantiation: aacsbr.c:align_get_bits
Unexecuted instantiation: aacsbr_fixed.c:align_get_bits
Unexecuted instantiation: aacdec_ac.c:align_get_bits
Unexecuted instantiation: aacdec_lpd.c:align_get_bits
Unexecuted instantiation: aacps_fixed.c:align_get_bits
Unexecuted instantiation: aacps_float.c:align_get_bits
mjpegdec.c:align_get_bits
Line
Count
Source
561
58.8k
{
562
58.8k
    int n = -get_bits_count(s) & 7;
563
58.8k
    if (n)
564
37.0k
        skip_bits(s, n);
565
58.8k
    return s->buffer + (s->index >> 3);
566
58.8k
}
Unexecuted instantiation: mjpegdec_common.c:align_get_bits
Unexecuted instantiation: jpeglsdec.c:align_get_bits
Unexecuted instantiation: jvdec.c:align_get_bits
Unexecuted instantiation: rdt.c:align_get_bits
Unexecuted instantiation: rtpdec_h261.c:align_get_bits
Unexecuted instantiation: rtpdec_h263_rfc2190.c:align_get_bits
Unexecuted instantiation: rtpdec_latm.c:align_get_bits
Unexecuted instantiation: rtpdec_mpeg4.c:align_get_bits
Unexecuted instantiation: rtpdec_qt.c:align_get_bits
h264_cavlc.c:align_get_bits
Line
Count
Source
561
5.14k
{
562
5.14k
    int n = -get_bits_count(s) & 7;
563
5.14k
    if (n)
564
4.86k
        skip_bits(s, n);
565
5.14k
    return s->buffer + (s->index >> 3);
566
5.14k
}
Unexecuted instantiation: h264_direct.c:align_get_bits
Unexecuted instantiation: h264_mb.c:align_get_bits
Unexecuted instantiation: h264_picture.c:align_get_bits
Unexecuted instantiation: h264_refs.c:align_get_bits
h264_slice.c:align_get_bits
Line
Count
Source
561
1.62M
{
562
1.62M
    int n = -get_bits_count(s) & 7;
563
1.62M
    if (n)
564
1.48M
        skip_bits(s, n);
565
1.62M
    return s->buffer + (s->index >> 3);
566
1.62M
}
Unexecuted instantiation: h264_cabac.c:align_get_bits
Unexecuted instantiation: h264_loopfilter.c:align_get_bits
alsdec.c:align_get_bits
Line
Count
Source
561
1.26M
{
562
1.26M
    int n = -get_bits_count(s) & 7;
563
1.26M
    if (n)
564
421k
        skip_bits(s, n);
565
1.26M
    return s->buffer + (s->index >> 3);
566
1.26M
}
Unexecuted instantiation: bgmc.c:align_get_bits
Unexecuted instantiation: mlz.c:align_get_bits
Unexecuted instantiation: bonk.c:align_get_bits
Unexecuted instantiation: mxpegdec.c:align_get_bits
Unexecuted instantiation: rv30.c:align_get_bits
Unexecuted instantiation: rv34.c:align_get_bits
Unexecuted instantiation: indeo3.c:align_get_bits
Unexecuted instantiation: eamad.c:align_get_bits
Unexecuted instantiation: mpeg12.c:align_get_bits
Unexecuted instantiation: g726.c:align_get_bits
Unexecuted instantiation: vc1dec.c:align_get_bits
Unexecuted instantiation: vc1_block.c:align_get_bits
Unexecuted instantiation: vc1_loopfilter.c:align_get_bits
Unexecuted instantiation: vc1_mc.c:align_get_bits
Unexecuted instantiation: vc1_pred.c:align_get_bits
mpegaudiodec_float.c:align_get_bits
Line
Count
Source
561
2.19M
{
562
2.19M
    int n = -get_bits_count(s) & 7;
563
2.19M
    if (n)
564
546k
        skip_bits(s, n);
565
2.19M
    return s->buffer + (s->index >> 3);
566
2.19M
}
Unexecuted instantiation: huffyuvdec.c:align_get_bits
Unexecuted instantiation: speexdec.c:align_get_bits
Unexecuted instantiation: atrac3plusdec.c:align_get_bits
Unexecuted instantiation: atrac3plusdsp.c:align_get_bits
Unexecuted instantiation: atrac3plus.c:align_get_bits
Unexecuted instantiation: mss4.c:align_get_bits
Unexecuted instantiation: tiff.c:align_get_bits
faxcompr.c:align_get_bits
Line
Count
Source
561
1.53M
{
562
1.53M
    int n = -get_bits_count(s) & 7;
563
1.53M
    if (n)
564
14.4k
        skip_bits(s, n);
565
1.53M
    return s->buffer + (s->index >> 3);
566
1.53M
}
Unexecuted instantiation: ac3dec_float.c:align_get_bits
Unexecuted instantiation: on2avc.c:align_get_bits
Unexecuted instantiation: smacker.c:align_get_bits
Unexecuted instantiation: dvbsubdec.c:align_get_bits
Unexecuted instantiation: mss1.c:align_get_bits
Unexecuted instantiation: mss12.c:align_get_bits
mss2.c:align_get_bits
Line
Count
Source
561
143k
{
562
143k
    int n = -get_bits_count(s) & 7;
563
143k
    if (n)
564
135k
        skip_bits(s, n);
565
143k
    return s->buffer + (s->index >> 3);
566
143k
}
Unexecuted instantiation: mdec.c:align_get_bits
osq.c:align_get_bits
Line
Count
Source
561
27.2k
{
562
27.2k
    int n = -get_bits_count(s) & 7;
563
27.2k
    if (n)
564
14.8k
        skip_bits(s, n);
565
27.2k
    return s->buffer + (s->index >> 3);
566
27.2k
}
Unexecuted instantiation: vp6.c:align_get_bits
Unexecuted instantiation: vp56.c:align_get_bits
Unexecuted instantiation: vp56data.c:align_get_bits
Unexecuted instantiation: loco.c:align_get_bits
Unexecuted instantiation: vp5.c:align_get_bits
Unexecuted instantiation: ra144dec.c:align_get_bits
indeo5.c:align_get_bits
Line
Count
Source
561
233k
{
562
233k
    int n = -get_bits_count(s) & 7;
563
233k
    if (n)
564
104k
        skip_bits(s, n);
565
233k
    return s->buffer + (s->index >> 3);
566
233k
}
ivi.c:align_get_bits
Line
Count
Source
561
139k
{
562
139k
    int n = -get_bits_count(s) & 7;
563
139k
    if (n)
564
85.7k
        skip_bits(s, n);
565
139k
    return s->buffer + (s->index >> 3);
566
139k
}
Unexecuted instantiation: ivi_dsp.c:align_get_bits
Unexecuted instantiation: apac.c:align_get_bits
Unexecuted instantiation: clearvideo.c:align_get_bits
Unexecuted instantiation: dxtory.c:align_get_bits
mpegaudiodec_fixed.c:align_get_bits
Line
Count
Source
561
1.95M
{
562
1.95M
    int n = -get_bits_count(s) & 7;
563
1.95M
    if (n)
564
534k
        skip_bits(s, n);
565
1.95M
    return s->buffer + (s->index >> 3);
566
1.95M
}
Unexecuted instantiation: ralf.c:align_get_bits
pixlet.c:align_get_bits
Line
Count
Source
561
53.8k
{
562
53.8k
    int n = -get_bits_count(s) & 7;
563
53.8k
    if (n)
564
42.0k
        skip_bits(s, n);
565
53.8k
    return s->buffer + (s->index >> 3);
566
53.8k
}
Unexecuted instantiation: wnv1.c:align_get_bits
Unexecuted instantiation: qoadec.c:align_get_bits
Unexecuted instantiation: vima.c:align_get_bits
Unexecuted instantiation: leaddec.c:align_get_bits
Unexecuted instantiation: eatqi.c:align_get_bits
Unexecuted instantiation: lagarith.c:align_get_bits
lagarithrac.c:align_get_bits
Line
Count
Source
561
7.41k
{
562
7.41k
    int n = -get_bits_count(s) & 7;
563
7.41k
    if (n)
564
6.46k
        skip_bits(s, n);
565
7.41k
    return s->buffer + (s->index >> 3);
566
7.41k
}
Unexecuted instantiation: dss_sp.c:align_get_bits
Unexecuted instantiation: siren.c:align_get_bits
Unexecuted instantiation: cavsdec.c:align_get_bits
Unexecuted instantiation: cavs.c:align_get_bits
Unexecuted instantiation: cavsdata.c:align_get_bits
Unexecuted instantiation: hcom.c:align_get_bits
Unexecuted instantiation: vp3.c:align_get_bits
Unexecuted instantiation: webp.c:align_get_bits
Unexecuted instantiation: eatgv.c:align_get_bits
Unexecuted instantiation: eatgq.c:align_get_bits
Unexecuted instantiation: sga.c:align_get_bits
Unexecuted instantiation: binkaudio.c:align_get_bits
mpeg12dec.c:align_get_bits
Line
Count
Source
561
321k
{
562
321k
    int n = -get_bits_count(s) & 7;
563
321k
    if (n)
564
171k
        skip_bits(s, n);
565
321k
    return s->buffer + (s->index >> 3);
566
321k
}
Unexecuted instantiation: indeo2.c:align_get_bits
Unexecuted instantiation: 4xm.c:align_get_bits
Unexecuted instantiation: wmalosslessdec.c:align_get_bits
Unexecuted instantiation: ilbcdec.c:align_get_bits
hevcdec.c:align_get_bits
Line
Count
Source
561
109k
{
562
109k
    int n = -get_bits_count(s) & 7;
563
109k
    if (n)
564
89.3k
        skip_bits(s, n);
565
109k
    return s->buffer + (s->index >> 3);
566
109k
}
Unexecuted instantiation: mvs.c:align_get_bits
Unexecuted instantiation: pred.c:align_get_bits
Unexecuted instantiation: refs.c:align_get_bits
Unexecuted instantiation: cabac.c:align_get_bits
Unexecuted instantiation: dsp.c:align_get_bits
Unexecuted instantiation: filter.c:align_get_bits
Unexecuted instantiation: tscc2.c:align_get_bits
Unexecuted instantiation: hqx.c:align_get_bits
Unexecuted instantiation: mobiclip.c:align_get_bits
Unexecuted instantiation: wmaprodec.c:align_get_bits
Unexecuted instantiation: g729dec.c:align_get_bits
Unexecuted instantiation: sipr.c:align_get_bits
Unexecuted instantiation: g722dec.c:align_get_bits
Unexecuted instantiation: nellymoserdec.c:align_get_bits
Unexecuted instantiation: dcaenc.c:align_get_bits
Unexecuted instantiation: dcaadpcm.c:align_get_bits
Unexecuted instantiation: dcadata.c:align_get_bits
Unexecuted instantiation: interplayvideo.c:align_get_bits
Unexecuted instantiation: dec.c:align_get_bits
Unexecuted instantiation: dec_celt.c:align_get_bits
Unexecuted instantiation: silk.c:align_get_bits
Unexecuted instantiation: mjpegbdec.c:align_get_bits
Unexecuted instantiation: bink.c:align_get_bits
dvdsubdec.c:align_get_bits
Line
Count
Source
561
134k
{
562
134k
    int n = -get_bits_count(s) & 7;
563
134k
    if (n)
564
49.2k
        skip_bits(s, n);
565
134k
    return s->buffer + (s->index >> 3);
566
134k
}
Unexecuted instantiation: rtjpeg.c:align_get_bits
Unexecuted instantiation: truespeech.c:align_get_bits
Unexecuted instantiation: metasound.c:align_get_bits
Unexecuted instantiation: escape124.c:align_get_bits
Unexecuted instantiation: cllc.c:align_get_bits
Unexecuted instantiation: dvdec.c:align_get_bits
tta.c:align_get_bits
Line
Count
Source
561
107k
{
562
107k
    int n = -get_bits_count(s) & 7;
563
107k
    if (n)
564
20.5k
        skip_bits(s, n);
565
107k
    return s->buffer + (s->index >> 3);
566
107k
}
Unexecuted instantiation: fraps.c:align_get_bits
Unexecuted instantiation: motionpixels.c:align_get_bits
vp9.c:align_get_bits
Line
Count
Source
561
350k
{
562
350k
    int n = -get_bits_count(s) & 7;
563
350k
    if (n)
564
315k
        skip_bits(s, n);
565
350k
    return s->buffer + (s->index >> 3);
566
350k
}
Unexecuted instantiation: vp9block.c:align_get_bits
Unexecuted instantiation: vp9data.c:align_get_bits
Unexecuted instantiation: vp9lpf.c:align_get_bits
Unexecuted instantiation: vp9mvs.c:align_get_bits
Unexecuted instantiation: vp9prob.c:align_get_bits
Unexecuted instantiation: vp9recon.c:align_get_bits
Unexecuted instantiation: ffv1dec.c:align_get_bits
Unexecuted instantiation: intra_utils.c:align_get_bits
Unexecuted instantiation: thread.c:align_get_bits
Unexecuted instantiation: ctu.c:align_get_bits
Unexecuted instantiation: inter.c:align_get_bits
Unexecuted instantiation: intra.c:align_get_bits
Unexecuted instantiation: wmavoice.c:align_get_bits
Unexecuted instantiation: rawdec.c:align_get_bits
Unexecuted instantiation: svq1dec.c:align_get_bits
Unexecuted instantiation: mpc7.c:align_get_bits
Unexecuted instantiation: truemotion2rt.c:align_get_bits
Unexecuted instantiation: adxdec.c:align_get_bits
Unexecuted instantiation: rv40.c:align_get_bits
xsubdec.c:align_get_bits
Line
Count
Source
561
2.15M
{
562
2.15M
    int n = -get_bits_count(s) & 7;
563
2.15M
    if (n)
564
451k
        skip_bits(s, n);
565
2.15M
    return s->buffer + (s->index >> 3);
566
2.15M
}
Unexecuted instantiation: notchlc.c:align_get_bits
Unexecuted instantiation: aic.c:align_get_bits
Unexecuted instantiation: vqcdec.c:align_get_bits
Unexecuted instantiation: dolby_e.c:align_get_bits
Unexecuted instantiation: proresdec.c:align_get_bits
Unexecuted instantiation: evrcdec.c:align_get_bits
Unexecuted instantiation: dnxhddec.c:align_get_bits
Unexecuted instantiation: dcadec.c:align_get_bits
Unexecuted instantiation: dca_core.c:align_get_bits
Unexecuted instantiation: dca_lbr.c:align_get_bits
Unexecuted instantiation: dca_xll.c:align_get_bits
Unexecuted instantiation: mlpenc.c:align_get_bits
Unexecuted instantiation: atrac3.c:align_get_bits
Unexecuted instantiation: vorbisdec.c:align_get_bits
Unexecuted instantiation: flashsv.c:align_get_bits
Unexecuted instantiation: wavpack.c:align_get_bits
Unexecuted instantiation: speedhqdec.c:align_get_bits
Unexecuted instantiation: g723_1dec.c:align_get_bits
Unexecuted instantiation: g2meet.c:align_get_bits
Unexecuted instantiation: shorten.c:align_get_bits
indeo4.c:align_get_bits
Line
Count
Source
561
84.3k
{
562
84.3k
    int n = -get_bits_count(s) & 7;
563
84.3k
    if (n)
564
63.2k
        skip_bits(s, n);
565
84.3k
    return s->buffer + (s->index >> 3);
566
84.3k
}
Unexecuted instantiation: sp5xdec.c:align_get_bits
Unexecuted instantiation: atrac1.c:align_get_bits
Unexecuted instantiation: apv_decode.c:align_get_bits
Unexecuted instantiation: apv_entropy.c:align_get_bits
avs.c:align_get_bits
Line
Count
Source
561
422k
{
562
422k
    int n = -get_bits_count(s) & 7;
563
422k
    if (n)
564
422k
        skip_bits(s, n);
565
422k
    return s->buffer + (s->index >> 3);
566
422k
}
rv60dec.c:align_get_bits
Line
Count
Source
561
30.4k
{
562
30.4k
    int n = -get_bits_count(s) & 7;
563
30.4k
    if (n)
564
27.1k
        skip_bits(s, n);
565
30.4k
    return s->buffer + (s->index >> 3);
566
30.4k
}
Unexecuted instantiation: alac.c:align_get_bits
Unexecuted instantiation: tiertexseqv.c:align_get_bits
Unexecuted instantiation: ffv1enc.c:align_get_bits
Unexecuted instantiation: hcadec.c:align_get_bits
Unexecuted instantiation: pcx.c:align_get_bits
Unexecuted instantiation: qcelpdec.c:align_get_bits
flacdec.c:align_get_bits
Line
Count
Source
561
328k
{
562
328k
    int n = -get_bits_count(s) & 7;
563
328k
    if (n)
564
226k
        skip_bits(s, n);
565
328k
    return s->buffer + (s->index >> 3);
566
328k
}
Unexecuted instantiation: ac3dec_fixed.c:align_get_bits
Unexecuted instantiation: midivid.c:align_get_bits
Unexecuted instantiation: mimic.c:align_get_bits
Unexecuted instantiation: fic.c:align_get_bits
Unexecuted instantiation: qdmc.c:align_get_bits
Unexecuted instantiation: ra288.c:align_get_bits
Unexecuted instantiation: interplayacm.c:align_get_bits
Unexecuted instantiation: ylc.c:align_get_bits
Unexecuted instantiation: ftr.c:align_get_bits
agm.c:align_get_bits
Line
Count
Source
561
17.6k
{
562
17.6k
    int n = -get_bits_count(s) & 7;
563
17.6k
    if (n)
564
6.64k
        skip_bits(s, n);
565
17.6k
    return s->buffer + (s->index >> 3);
566
17.6k
}
Unexecuted instantiation: xan.c:align_get_bits
Unexecuted instantiation: svq3.c:align_get_bits
Unexecuted instantiation: cri.c:align_get_bits
Unexecuted instantiation: qdm2.c:align_get_bits
Unexecuted instantiation: cljrdec.c:align_get_bits
Unexecuted instantiation: g728dec.c:align_get_bits
Unexecuted instantiation: cook.c:align_get_bits
Unexecuted instantiation: twinvqdec.c:align_get_bits
Unexecuted instantiation: hq_hqa.c:align_get_bits
Unexecuted instantiation: cdxl.c:align_get_bits
Unexecuted instantiation: vble.c:align_get_bits
Unexecuted instantiation: mv30.c:align_get_bits
Unexecuted instantiation: apedec.c:align_get_bits
Unexecuted instantiation: h261dec.c:align_get_bits
Unexecuted instantiation: dstdec.c:align_get_bits
Unexecuted instantiation: jpeglsenc.c:align_get_bits
Unexecuted instantiation: truemotion2.c:align_get_bits
567
568
/**
569
 * If the vlc code is invalid and max_depth=1, then no bits will be removed.
570
 * If the vlc code is invalid and max_depth>1, then the number of bits removed
571
 * is undefined.
572
 */
573
#define GET_VLC(code, name, gb, table, bits, max_depth)         \
574
4.23G
    do {                                                        \
575
4.23G
        unsigned idx_ = SHOW_UBITS(name, gb, bits);             \
576
4.23G
        code          = table[idx_].sym;                        \
577
4.23G
        int        n_ = table[idx_].len;                        \
578
4.23G
                                                                \
579
4.23G
        if (max_depth > 1 && n_ < 0) {                          \
580
262M
            LAST_SKIP_BITS(name, gb, bits);                     \
581
262M
            UPDATE_CACHE(name, gb);                             \
582
262M
                                                                \
583
262M
            int nb__bits = -n_;                                 \
584
262M
                                                                \
585
262M
            idx_ = SHOW_UBITS(name, gb, nb__bits) + code;       \
586
262M
            code = table[idx_].sym;                             \
587
262M
            n_   = table[idx_].len;                             \
588
262M
            if (max_depth > 2 && n_ < 0) {                      \
589
43.5M
                LAST_SKIP_BITS(name, gb, nb__bits);             \
590
43.5M
                UPDATE_CACHE(name, gb);                         \
591
43.5M
                                                                \
592
43.5M
                nb__bits = -n_;                                 \
593
43.5M
                                                                \
594
43.5M
                idx_ = SHOW_UBITS(name, gb, nb__bits) + code;   \
595
43.5M
                code = table[idx_].sym;                         \
596
43.5M
                n_   = table[idx_].len;                         \
597
43.5M
            }                                                   \
598
262M
        }                                                       \
599
4.23G
        SKIP_BITS(name, gb, n_);                                \
600
4.23G
    } while (0)
601
602
#define GET_RL_VLC(level, run, name, gb, table, bits,  \
603
                   max_depth, need_update)                      \
604
1.11G
    do {                                                        \
605
1.11G
        unsigned idx_ = SHOW_UBITS(name, gb, bits);             \
606
1.11G
        level         = table[idx_].level;                      \
607
1.11G
        int        n_ = table[idx_].len8;                       \
608
1.11G
                                                                \
609
1.11G
        if (max_depth > 1 && n_ < 0) {                          \
610
17.2M
            SKIP_BITS(name, gb, bits);                          \
611
17.2M
            if (need_update) {                                  \
612
87.4k
                UPDATE_CACHE(name, gb);                         \
613
87.4k
            }                                                   \
614
17.2M
                                                                \
615
17.2M
            int nb__bits = -n_;                                 \
616
17.2M
                                                                \
617
17.2M
            idx_  = SHOW_UBITS(name, gb, nb__bits) + level;     \
618
17.2M
            level = table[idx_].level;                          \
619
17.2M
            n_    = table[idx_].len8;                           \
620
17.2M
            if (max_depth > 2 && n_ < 0) {                      \
621
10.9k
                LAST_SKIP_BITS(name, gb, nb__bits);             \
622
10.9k
                if (need_update) {                              \
623
10.9k
                    UPDATE_CACHE(name, gb);                     \
624
10.9k
                }                                               \
625
10.9k
                nb__bits = -n_;                                 \
626
10.9k
                                                                \
627
10.9k
                idx_  = SHOW_UBITS(name, gb, nb__bits) + level; \
628
10.9k
                level = table[idx_].level;                      \
629
10.9k
                n_    = table[idx_].len8;                       \
630
10.9k
            }                                                   \
631
17.2M
        }                                                       \
632
1.11G
        run = table[idx_].run;                                  \
633
1.11G
        SKIP_BITS(name, gb, n_);                                \
634
1.11G
    } while (0)
635
636
/**
637
 * Parse a vlc code.
638
 * @param bits is the number of bits which will be read at once, must be
639
 *             identical to nb_bits in vlc_init()
640
 * @param max_depth is the number of times bits bits must be read to completely
641
 *                  read the longest vlc code
642
 *                  = (max_vlc_length + bits - 1) / bits
643
 * @returns the code parsed or -1 if no vlc matches
644
 */
645
static av_always_inline int get_vlc2(GetBitContext *s, const VLCElem *table,
646
                                     int bits, int max_depth)
647
3.72G
{
648
3.72G
    int code;
649
650
3.72G
    OPEN_READER(re, s);
651
3.72G
    UPDATE_CACHE(re, s);
652
653
3.72G
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
3.72G
    CLOSE_READER(re, s);
656
657
3.72G
    return code;
658
3.72G
}
Unexecuted instantiation: mpegvideo_motion.c:get_vlc2
wmv2dec.c:get_vlc2
Line
Count
Source
647
5.94M
{
648
5.94M
    int code;
649
650
5.94M
    OPEN_READER(re, s);
651
5.94M
    UPDATE_CACHE(re, s);
652
653
5.94M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
5.94M
    CLOSE_READER(re, s);
656
657
5.94M
    return code;
658
5.94M
}
Unexecuted instantiation: aac_adtstoasc.c:get_vlc2
Unexecuted instantiation: dovi_rpu.c:get_vlc2
Unexecuted instantiation: dovi_split.c:get_vlc2
Unexecuted instantiation: dts2pts.c:get_vlc2
Unexecuted instantiation: eac3_core.c:get_vlc2
Unexecuted instantiation: evc_frame_merge.c:get_vlc2
Unexecuted instantiation: extract_extradata.c:get_vlc2
Unexecuted instantiation: h264_metadata.c:get_vlc2
Unexecuted instantiation: h264_redundant_pps.c:get_vlc2
Unexecuted instantiation: h265_metadata.c:get_vlc2
Unexecuted instantiation: h266_metadata.c:get_vlc2
Unexecuted instantiation: lcevc_merge.c:get_vlc2
Unexecuted instantiation: lcevc_metadata.c:get_vlc2
Unexecuted instantiation: remove_extradata.c:get_vlc2
Unexecuted instantiation: truehd_core.c:get_vlc2
Unexecuted instantiation: vp9_raw_reorder.c:get_vlc2
Unexecuted instantiation: vp9_superframe.c:get_vlc2
Unexecuted instantiation: vp9_superframe_split.c:get_vlc2
Unexecuted instantiation: cbs.c:get_vlc2
Unexecuted instantiation: cbs_apv.c:get_vlc2
Unexecuted instantiation: cbs_av1.c:get_vlc2
Unexecuted instantiation: cbs_h264.c:get_vlc2
Unexecuted instantiation: cbs_h2645.c:get_vlc2
Unexecuted instantiation: cbs_h265.c:get_vlc2
Unexecuted instantiation: cbs_h266.c:get_vlc2
Unexecuted instantiation: cbs_lcevc.c:get_vlc2
Unexecuted instantiation: cbs_mpeg2.c:get_vlc2
Unexecuted instantiation: cbs_sei.c:get_vlc2
Unexecuted instantiation: cbs_vp8.c:get_vlc2
Unexecuted instantiation: cbs_vp9.c:get_vlc2
Unexecuted instantiation: dovi_rpudec.c:get_vlc2
Unexecuted instantiation: evc_parse.c:get_vlc2
Unexecuted instantiation: evc_ps.c:get_vlc2
Unexecuted instantiation: h263dec.c:get_vlc2
Unexecuted instantiation: h2645_parse.c:get_vlc2
Unexecuted instantiation: h264_parse.c:get_vlc2
Unexecuted instantiation: h264_ps.c:get_vlc2
Unexecuted instantiation: h264data.c:get_vlc2
Unexecuted instantiation: h265_profile_level.c:get_vlc2
Unexecuted instantiation: ps.c:get_vlc2
Unexecuted instantiation: intelh263dec.c:get_vlc2
intrax8.c:get_vlc2
Line
Count
Source
647
26.0M
{
648
26.0M
    int code;
649
650
26.0M
    OPEN_READER(re, s);
651
26.0M
    UPDATE_CACHE(re, s);
652
653
26.0M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
26.0M
    CLOSE_READER(re, s);
656
657
26.0M
    return code;
658
26.0M
}
ituh263dec.c:get_vlc2
Line
Count
Source
647
25.4M
{
648
25.4M
    int code;
649
650
25.4M
    OPEN_READER(re, s);
651
25.4M
    UPDATE_CACHE(re, s);
652
653
25.4M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
25.4M
    CLOSE_READER(re, s);
656
657
25.4M
    return code;
658
25.4M
}
Unexecuted instantiation: mlp_parse.c:get_vlc2
Unexecuted instantiation: mpeg4audio.c:get_vlc2
mpeg4videodec.c:get_vlc2
Line
Count
Source
647
3.22M
{
648
3.22M
    int code;
649
650
3.22M
    OPEN_READER(re, s);
651
3.22M
    UPDATE_CACHE(re, s);
652
653
3.22M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
3.22M
    CLOSE_READER(re, s);
656
657
3.22M
    return code;
658
3.22M
}
Unexecuted instantiation: mpeg_er.c:get_vlc2
Unexecuted instantiation: mpegvideo_dec.c:get_vlc2
msmpeg4dec.c:get_vlc2
Line
Count
Source
647
52.7M
{
648
52.7M
    int code;
649
650
52.7M
    OPEN_READER(re, s);
651
52.7M
    UPDATE_CACHE(re, s);
652
653
52.7M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
52.7M
    CLOSE_READER(re, s);
656
657
52.7M
    return code;
658
52.7M
}
rv10.c:get_vlc2
Line
Count
Source
647
939k
{
648
939k
    int code;
649
650
939k
    OPEN_READER(re, s);
651
939k
    UPDATE_CACHE(re, s);
652
653
939k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
939k
    CLOSE_READER(re, s);
656
657
939k
    return code;
658
939k
}
Unexecuted instantiation: ac3_parser.c:get_vlc2
Unexecuted instantiation: adts_header.c:get_vlc2
Unexecuted instantiation: av1_parse.c:get_vlc2
Unexecuted instantiation: flvdec.c:get_vlc2
Unexecuted instantiation: h2645_vui.c:get_vlc2
Unexecuted instantiation: vc1_parser.c:get_vlc2
Unexecuted instantiation: vorbis_parser.c:get_vlc2
Unexecuted instantiation: vp9_parser.c:get_vlc2
Unexecuted instantiation: vvc_parser.c:get_vlc2
Unexecuted instantiation: aac_ac3_parser.c:get_vlc2
Unexecuted instantiation: av1_parser.c:get_vlc2
Unexecuted instantiation: avs2_parser.c:get_vlc2
Unexecuted instantiation: avs3_parser.c:get_vlc2
Unexecuted instantiation: cavs_parser.c:get_vlc2
Unexecuted instantiation: dca_parser.c:get_vlc2
Unexecuted instantiation: dolby_e_parser.c:get_vlc2
Unexecuted instantiation: evc_parser.c:get_vlc2
Unexecuted instantiation: ffv1_parser.c:get_vlc2
Unexecuted instantiation: flac_parser.c:get_vlc2
Unexecuted instantiation: ftr_parser.c:get_vlc2
Unexecuted instantiation: h264_parser.c:get_vlc2
Unexecuted instantiation: h264_sei.c:get_vlc2
Unexecuted instantiation: h264idct.c:get_vlc2
Unexecuted instantiation: parser.c:get_vlc2
Unexecuted instantiation: sei.c:get_vlc2
jpegxl_parser.c:get_vlc2
Line
Count
Source
647
335k
{
648
335k
    int code;
649
650
335k
    OPEN_READER(re, s);
651
335k
    UPDATE_CACHE(re, s);
652
653
335k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
335k
    CLOSE_READER(re, s);
656
657
335k
    return code;
658
335k
}
Unexecuted instantiation: jpegxs_parser.c:get_vlc2
Unexecuted instantiation: lcevc_parser.c:get_vlc2
Unexecuted instantiation: mlp_parser.c:get_vlc2
Unexecuted instantiation: mpeg4video_parser.c:get_vlc2
vc1.c:get_vlc2
Line
Count
Source
647
69.1M
{
648
69.1M
    int code;
649
650
69.1M
    OPEN_READER(re, s);
651
69.1M
    UPDATE_CACHE(re, s);
652
653
69.1M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
69.1M
    CLOSE_READER(re, s);
656
657
69.1M
    return code;
658
69.1M
}
Unexecuted instantiation: vc1data.c:get_vlc2
Unexecuted instantiation: dca.c:get_vlc2
Unexecuted instantiation: dca_exss.c:get_vlc2
Unexecuted instantiation: dolby_e_parse.c:get_vlc2
Unexecuted instantiation: ffv1.c:get_vlc2
Unexecuted instantiation: ffv1_parse.c:get_vlc2
Unexecuted instantiation: flac.c:get_vlc2
Unexecuted instantiation: h2645_sei.c:get_vlc2
Unexecuted instantiation: parse.c:get_vlc2
Unexecuted instantiation: jpegxl_parse.c:get_vlc2
Unexecuted instantiation: aom_film_grain.c:get_vlc2
Unexecuted instantiation: dynamic_hdr_vivid.c:get_vlc2
Unexecuted instantiation: hdr_dynamic_metadata.c:get_vlc2
Unexecuted instantiation: av1dec.c:get_vlc2
Unexecuted instantiation: bit.c:get_vlc2
Unexecuted instantiation: dtsdec.c:get_vlc2
Unexecuted instantiation: dtshddec.c:get_vlc2
Unexecuted instantiation: h264dec.c:get_vlc2
Unexecuted instantiation: hls_sample_encryption.c:get_vlc2
Unexecuted instantiation: isom.c:get_vlc2
Unexecuted instantiation: matroskadec.c:get_vlc2
Unexecuted instantiation: mov.c:get_vlc2
Unexecuted instantiation: mpegts.c:get_vlc2
Unexecuted instantiation: oggparsetheora.c:get_vlc2
Unexecuted instantiation: shortendec.c:get_vlc2
Unexecuted instantiation: swfdec.c:get_vlc2
Unexecuted instantiation: takdec.c:get_vlc2
Unexecuted instantiation: iamf_parse.c:get_vlc2
Unexecuted instantiation: dirac.c:get_vlc2
atrac9dec.c:get_vlc2
Line
Count
Source
647
103M
{
648
103M
    int code;
649
650
103M
    OPEN_READER(re, s);
651
103M
    UPDATE_CACHE(re, s);
652
653
103M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
103M
    CLOSE_READER(re, s);
656
657
103M
    return code;
658
103M
}
Unexecuted instantiation: enc.c:get_vlc2
Unexecuted instantiation: enc_psy.c:get_vlc2
Unexecuted instantiation: pvq.c:get_vlc2
Unexecuted instantiation: rc.c:get_vlc2
Unexecuted instantiation: celt.c:get_vlc2
Unexecuted instantiation: gsmdec.c:get_vlc2
Unexecuted instantiation: msgsmdec.c:get_vlc2
imc.c:get_vlc2
Line
Count
Source
647
7.47M
{
648
7.47M
    int code;
649
650
7.47M
    OPEN_READER(re, s);
651
7.47M
    UPDATE_CACHE(re, s);
652
653
7.47M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
7.47M
    CLOSE_READER(re, s);
656
657
7.47M
    return code;
658
7.47M
}
Unexecuted instantiation: adpcm.c:get_vlc2
Unexecuted instantiation: wmaenc.c:get_vlc2
wma.c:get_vlc2
Line
Count
Source
647
191M
{
648
191M
    int code;
649
650
191M
    OPEN_READER(re, s);
651
191M
    UPDATE_CACHE(re, s);
652
653
191M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
191M
    CLOSE_READER(re, s);
656
657
191M
    return code;
658
191M
}
Unexecuted instantiation: cfhd.c:get_vlc2
Unexecuted instantiation: wavarc.c:get_vlc2
Unexecuted instantiation: escape130.c:get_vlc2
asvdec.c:get_vlc2
Line
Count
Source
647
10.3M
{
648
10.3M
    int code;
649
650
10.3M
    OPEN_READER(re, s);
651
10.3M
    UPDATE_CACHE(re, s);
652
653
10.3M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
10.3M
    CLOSE_READER(re, s);
656
657
10.3M
    return code;
658
10.3M
}
Unexecuted instantiation: diracdec.c:get_vlc2
Unexecuted instantiation: dirac_arith.c:get_vlc2
wmadec.c:get_vlc2
Line
Count
Source
647
751k
{
648
751k
    int code;
649
650
751k
    OPEN_READER(re, s);
651
751k
    UPDATE_CACHE(re, s);
652
653
751k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
751k
    CLOSE_READER(re, s);
656
657
751k
    return code;
658
751k
}
Unexecuted instantiation: aacenc.c:get_vlc2
imm4.c:get_vlc2
Line
Count
Source
647
4.37M
{
648
4.37M
    int code;
649
650
4.37M
    OPEN_READER(re, s);
651
4.37M
    UPDATE_CACHE(re, s);
652
653
4.37M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
4.37M
    CLOSE_READER(re, s);
656
657
4.37M
    return code;
658
4.37M
}
exr.c:get_vlc2
Line
Count
Source
647
73.6M
{
648
73.6M
    int code;
649
650
73.6M
    OPEN_READER(re, s);
651
73.6M
    UPDATE_CACHE(re, s);
652
653
73.6M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
73.6M
    CLOSE_READER(re, s);
656
657
73.6M
    return code;
658
73.6M
}
aacdec.c:get_vlc2
Line
Count
Source
647
4.43M
{
648
4.43M
    int code;
649
650
4.43M
    OPEN_READER(re, s);
651
4.43M
    UPDATE_CACHE(re, s);
652
653
4.43M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
4.43M
    CLOSE_READER(re, s);
656
657
4.43M
    return code;
658
4.43M
}
aacdec_fixed.c:get_vlc2
Line
Count
Source
647
89.4k
{
648
89.4k
    int code;
649
650
89.4k
    OPEN_READER(re, s);
651
89.4k
    UPDATE_CACHE(re, s);
652
653
89.4k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
89.4k
    CLOSE_READER(re, s);
656
657
89.4k
    return code;
658
89.4k
}
aacdec_float.c:get_vlc2
Line
Count
Source
647
58.2k
{
648
58.2k
    int code;
649
650
58.2k
    OPEN_READER(re, s);
651
58.2k
    UPDATE_CACHE(re, s);
652
653
58.2k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
58.2k
    CLOSE_READER(re, s);
656
657
58.2k
    return code;
658
58.2k
}
Unexecuted instantiation: aacdec_tab.c:get_vlc2
aacdec_usac.c:get_vlc2
Line
Count
Source
647
5.48M
{
648
5.48M
    int code;
649
650
5.48M
    OPEN_READER(re, s);
651
5.48M
    UPDATE_CACHE(re, s);
652
653
5.48M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
5.48M
    CLOSE_READER(re, s);
656
657
5.48M
    return code;
658
5.48M
}
Unexecuted instantiation: aacdec_usac_mps212.c:get_vlc2
aacps_common.c:get_vlc2
Line
Count
Source
647
2.34M
{
648
2.34M
    int code;
649
650
2.34M
    OPEN_READER(re, s);
651
2.34M
    UPDATE_CACHE(re, s);
652
653
2.34M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
2.34M
    CLOSE_READER(re, s);
656
657
2.34M
    return code;
658
2.34M
}
aacsbr.c:get_vlc2
Line
Count
Source
647
12.5M
{
648
12.5M
    int code;
649
650
12.5M
    OPEN_READER(re, s);
651
12.5M
    UPDATE_CACHE(re, s);
652
653
12.5M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
12.5M
    CLOSE_READER(re, s);
656
657
12.5M
    return code;
658
12.5M
}
aacsbr_fixed.c:get_vlc2
Line
Count
Source
647
4.09M
{
648
4.09M
    int code;
649
650
4.09M
    OPEN_READER(re, s);
651
4.09M
    UPDATE_CACHE(re, s);
652
653
4.09M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
4.09M
    CLOSE_READER(re, s);
656
657
4.09M
    return code;
658
4.09M
}
Unexecuted instantiation: aacdec_ac.c:get_vlc2
Unexecuted instantiation: aacdec_lpd.c:get_vlc2
Unexecuted instantiation: aacps_fixed.c:get_vlc2
Unexecuted instantiation: aacps_float.c:get_vlc2
mjpegdec.c:get_vlc2
Line
Count
Source
647
222M
{
648
222M
    int code;
649
650
222M
    OPEN_READER(re, s);
651
222M
    UPDATE_CACHE(re, s);
652
653
222M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
222M
    CLOSE_READER(re, s);
656
657
222M
    return code;
658
222M
}
Unexecuted instantiation: mjpegdec_common.c:get_vlc2
Unexecuted instantiation: jpeglsdec.c:get_vlc2
Unexecuted instantiation: jvdec.c:get_vlc2
Unexecuted instantiation: rdt.c:get_vlc2
Unexecuted instantiation: rtpdec_h261.c:get_vlc2
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_vlc2
Unexecuted instantiation: rtpdec_latm.c:get_vlc2
Unexecuted instantiation: rtpdec_mpeg4.c:get_vlc2
Unexecuted instantiation: rtpdec_qt.c:get_vlc2
h264_cavlc.c:get_vlc2
Line
Count
Source
647
16.7M
{
648
16.7M
    int code;
649
650
16.7M
    OPEN_READER(re, s);
651
16.7M
    UPDATE_CACHE(re, s);
652
653
16.7M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
16.7M
    CLOSE_READER(re, s);
656
657
16.7M
    return code;
658
16.7M
}
Unexecuted instantiation: h264_direct.c:get_vlc2
Unexecuted instantiation: h264_mb.c:get_vlc2
Unexecuted instantiation: h264_picture.c:get_vlc2
Unexecuted instantiation: h264_refs.c:get_vlc2
Unexecuted instantiation: h264_slice.c:get_vlc2
Unexecuted instantiation: h264_cabac.c:get_vlc2
Unexecuted instantiation: h264_loopfilter.c:get_vlc2
Unexecuted instantiation: alsdec.c:get_vlc2
Unexecuted instantiation: bgmc.c:get_vlc2
Unexecuted instantiation: mlz.c:get_vlc2
Unexecuted instantiation: bonk.c:get_vlc2
Unexecuted instantiation: mxpegdec.c:get_vlc2
Unexecuted instantiation: rv30.c:get_vlc2
rv34.c:get_vlc2
Line
Count
Source
647
96.1M
{
648
96.1M
    int code;
649
650
96.1M
    OPEN_READER(re, s);
651
96.1M
    UPDATE_CACHE(re, s);
652
653
96.1M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
96.1M
    CLOSE_READER(re, s);
656
657
96.1M
    return code;
658
96.1M
}
Unexecuted instantiation: indeo3.c:get_vlc2
Unexecuted instantiation: eamad.c:get_vlc2
mpeg12.c:get_vlc2
Line
Count
Source
647
1.68M
{
648
1.68M
    int code;
649
650
1.68M
    OPEN_READER(re, s);
651
1.68M
    UPDATE_CACHE(re, s);
652
653
1.68M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
1.68M
    CLOSE_READER(re, s);
656
657
1.68M
    return code;
658
1.68M
}
Unexecuted instantiation: g726.c:get_vlc2
Unexecuted instantiation: vc1dec.c:get_vlc2
vc1_block.c:get_vlc2
Line
Count
Source
647
406M
{
648
406M
    int code;
649
650
406M
    OPEN_READER(re, s);
651
406M
    UPDATE_CACHE(re, s);
652
653
406M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
406M
    CLOSE_READER(re, s);
656
657
406M
    return code;
658
406M
}
Unexecuted instantiation: vc1_loopfilter.c:get_vlc2
Unexecuted instantiation: vc1_mc.c:get_vlc2
Unexecuted instantiation: vc1_pred.c:get_vlc2
mpegaudiodec_float.c:get_vlc2
Line
Count
Source
647
15.7M
{
648
15.7M
    int code;
649
650
15.7M
    OPEN_READER(re, s);
651
15.7M
    UPDATE_CACHE(re, s);
652
653
15.7M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
15.7M
    CLOSE_READER(re, s);
656
657
15.7M
    return code;
658
15.7M
}
huffyuvdec.c:get_vlc2
Line
Count
Source
647
2.98M
{
648
2.98M
    int code;
649
650
2.98M
    OPEN_READER(re, s);
651
2.98M
    UPDATE_CACHE(re, s);
652
653
2.98M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
2.98M
    CLOSE_READER(re, s);
656
657
2.98M
    return code;
658
2.98M
}
Unexecuted instantiation: speexdec.c:get_vlc2
Unexecuted instantiation: atrac3plusdec.c:get_vlc2
Unexecuted instantiation: atrac3plusdsp.c:get_vlc2
atrac3plus.c:get_vlc2
Line
Count
Source
647
14.9M
{
648
14.9M
    int code;
649
650
14.9M
    OPEN_READER(re, s);
651
14.9M
    UPDATE_CACHE(re, s);
652
653
14.9M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
14.9M
    CLOSE_READER(re, s);
656
657
14.9M
    return code;
658
14.9M
}
mss4.c:get_vlc2
Line
Count
Source
647
29.5M
{
648
29.5M
    int code;
649
650
29.5M
    OPEN_READER(re, s);
651
29.5M
    UPDATE_CACHE(re, s);
652
653
29.5M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
29.5M
    CLOSE_READER(re, s);
656
657
29.5M
    return code;
658
29.5M
}
Unexecuted instantiation: tiff.c:get_vlc2
faxcompr.c:get_vlc2
Line
Count
Source
647
4.24M
{
648
4.24M
    int code;
649
650
4.24M
    OPEN_READER(re, s);
651
4.24M
    UPDATE_CACHE(re, s);
652
653
4.24M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
4.24M
    CLOSE_READER(re, s);
656
657
4.24M
    return code;
658
4.24M
}
Unexecuted instantiation: ac3dec_float.c:get_vlc2
on2avc.c:get_vlc2
Line
Count
Source
647
926k
{
648
926k
    int code;
649
650
926k
    OPEN_READER(re, s);
651
926k
    UPDATE_CACHE(re, s);
652
653
926k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
926k
    CLOSE_READER(re, s);
656
657
926k
    return code;
658
926k
}
smacker.c:get_vlc2
Line
Count
Source
647
27.9M
{
648
27.9M
    int code;
649
650
27.9M
    OPEN_READER(re, s);
651
27.9M
    UPDATE_CACHE(re, s);
652
653
27.9M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
27.9M
    CLOSE_READER(re, s);
656
657
27.9M
    return code;
658
27.9M
}
Unexecuted instantiation: dvbsubdec.c:get_vlc2
Unexecuted instantiation: mss1.c:get_vlc2
Unexecuted instantiation: mss12.c:get_vlc2
mss2.c:get_vlc2
Line
Count
Source
647
40.7M
{
648
40.7M
    int code;
649
650
40.7M
    OPEN_READER(re, s);
651
40.7M
    UPDATE_CACHE(re, s);
652
653
40.7M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
40.7M
    CLOSE_READER(re, s);
656
657
40.7M
    return code;
658
40.7M
}
mdec.c:get_vlc2
Line
Count
Source
647
6.89M
{
648
6.89M
    int code;
649
650
6.89M
    OPEN_READER(re, s);
651
6.89M
    UPDATE_CACHE(re, s);
652
653
6.89M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
6.89M
    CLOSE_READER(re, s);
656
657
6.89M
    return code;
658
6.89M
}
Unexecuted instantiation: osq.c:get_vlc2
vp6.c:get_vlc2
Line
Count
Source
647
48.6M
{
648
48.6M
    int code;
649
650
48.6M
    OPEN_READER(re, s);
651
48.6M
    UPDATE_CACHE(re, s);
652
653
48.6M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
48.6M
    CLOSE_READER(re, s);
656
657
48.6M
    return code;
658
48.6M
}
Unexecuted instantiation: vp56.c:get_vlc2
Unexecuted instantiation: vp56data.c:get_vlc2
Unexecuted instantiation: loco.c:get_vlc2
Unexecuted instantiation: vp5.c:get_vlc2
Unexecuted instantiation: ra144dec.c:get_vlc2
indeo5.c:get_vlc2
Line
Count
Source
647
2.53M
{
648
2.53M
    int code;
649
650
2.53M
    OPEN_READER(re, s);
651
2.53M
    UPDATE_CACHE(re, s);
652
653
2.53M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
2.53M
    CLOSE_READER(re, s);
656
657
2.53M
    return code;
658
2.53M
}
ivi.c:get_vlc2
Line
Count
Source
647
614k
{
648
614k
    int code;
649
650
614k
    OPEN_READER(re, s);
651
614k
    UPDATE_CACHE(re, s);
652
653
614k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
614k
    CLOSE_READER(re, s);
656
657
614k
    return code;
658
614k
}
Unexecuted instantiation: ivi_dsp.c:get_vlc2
Unexecuted instantiation: apac.c:get_vlc2
clearvideo.c:get_vlc2
Line
Count
Source
647
90.3M
{
648
90.3M
    int code;
649
650
90.3M
    OPEN_READER(re, s);
651
90.3M
    UPDATE_CACHE(re, s);
652
653
90.3M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
90.3M
    CLOSE_READER(re, s);
656
657
90.3M
    return code;
658
90.3M
}
Unexecuted instantiation: dxtory.c:get_vlc2
mpegaudiodec_fixed.c:get_vlc2
Line
Count
Source
647
2.84M
{
648
2.84M
    int code;
649
650
2.84M
    OPEN_READER(re, s);
651
2.84M
    UPDATE_CACHE(re, s);
652
653
2.84M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
2.84M
    CLOSE_READER(re, s);
656
657
2.84M
    return code;
658
2.84M
}
ralf.c:get_vlc2
Line
Count
Source
647
154M
{
648
154M
    int code;
649
650
154M
    OPEN_READER(re, s);
651
154M
    UPDATE_CACHE(re, s);
652
653
154M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
154M
    CLOSE_READER(re, s);
656
657
154M
    return code;
658
154M
}
Unexecuted instantiation: pixlet.c:get_vlc2
wnv1.c:get_vlc2
Line
Count
Source
647
226M
{
648
226M
    int code;
649
650
226M
    OPEN_READER(re, s);
651
226M
    UPDATE_CACHE(re, s);
652
653
226M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
226M
    CLOSE_READER(re, s);
656
657
226M
    return code;
658
226M
}
Unexecuted instantiation: qoadec.c:get_vlc2
Unexecuted instantiation: vima.c:get_vlc2
leaddec.c:get_vlc2
Line
Count
Source
647
25.8M
{
648
25.8M
    int code;
649
650
25.8M
    OPEN_READER(re, s);
651
25.8M
    UPDATE_CACHE(re, s);
652
653
25.8M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
25.8M
    CLOSE_READER(re, s);
656
657
25.8M
    return code;
658
25.8M
}
Unexecuted instantiation: eatqi.c:get_vlc2
lagarith.c:get_vlc2
Line
Count
Source
647
169k
{
648
169k
    int code;
649
650
169k
    OPEN_READER(re, s);
651
169k
    UPDATE_CACHE(re, s);
652
653
169k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
169k
    CLOSE_READER(re, s);
656
657
169k
    return code;
658
169k
}
Unexecuted instantiation: lagarithrac.c:get_vlc2
Unexecuted instantiation: dss_sp.c:get_vlc2
Unexecuted instantiation: siren.c:get_vlc2
Unexecuted instantiation: cavsdec.c:get_vlc2
Unexecuted instantiation: cavs.c:get_vlc2
Unexecuted instantiation: cavsdata.c:get_vlc2
Unexecuted instantiation: hcom.c:get_vlc2
vp3.c:get_vlc2
Line
Count
Source
647
269M
{
648
269M
    int code;
649
650
269M
    OPEN_READER(re, s);
651
269M
    UPDATE_CACHE(re, s);
652
653
269M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
269M
    CLOSE_READER(re, s);
656
657
269M
    return code;
658
269M
}
webp.c:get_vlc2
Line
Count
Source
647
66.0M
{
648
66.0M
    int code;
649
650
66.0M
    OPEN_READER(re, s);
651
66.0M
    UPDATE_CACHE(re, s);
652
653
66.0M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
66.0M
    CLOSE_READER(re, s);
656
657
66.0M
    return code;
658
66.0M
}
mpc8.c:get_vlc2
Line
Count
Source
647
45.8M
{
648
45.8M
    int code;
649
650
45.8M
    OPEN_READER(re, s);
651
45.8M
    UPDATE_CACHE(re, s);
652
653
45.8M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
45.8M
    CLOSE_READER(re, s);
656
657
45.8M
    return code;
658
45.8M
}
Unexecuted instantiation: eatgv.c:get_vlc2
Unexecuted instantiation: eatgq.c:get_vlc2
Unexecuted instantiation: sga.c:get_vlc2
Unexecuted instantiation: binkaudio.c:get_vlc2
mpeg12dec.c:get_vlc2
Line
Count
Source
647
8.55M
{
648
8.55M
    int code;
649
650
8.55M
    OPEN_READER(re, s);
651
8.55M
    UPDATE_CACHE(re, s);
652
653
8.55M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
8.55M
    CLOSE_READER(re, s);
656
657
8.55M
    return code;
658
8.55M
}
indeo2.c:get_vlc2
Line
Count
Source
647
13.7M
{
648
13.7M
    int code;
649
650
13.7M
    OPEN_READER(re, s);
651
13.7M
    UPDATE_CACHE(re, s);
652
653
13.7M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
13.7M
    CLOSE_READER(re, s);
656
657
13.7M
    return code;
658
13.7M
}
4xm.c:get_vlc2
Line
Count
Source
647
979k
{
648
979k
    int code;
649
650
979k
    OPEN_READER(re, s);
651
979k
    UPDATE_CACHE(re, s);
652
653
979k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
979k
    CLOSE_READER(re, s);
656
657
979k
    return code;
658
979k
}
Unexecuted instantiation: wmalosslessdec.c:get_vlc2
Unexecuted instantiation: ilbcdec.c:get_vlc2
Unexecuted instantiation: hevcdec.c:get_vlc2
Unexecuted instantiation: mvs.c:get_vlc2
Unexecuted instantiation: pred.c:get_vlc2
Unexecuted instantiation: refs.c:get_vlc2
Unexecuted instantiation: cabac.c:get_vlc2
Unexecuted instantiation: dsp.c:get_vlc2
Unexecuted instantiation: filter.c:get_vlc2
tscc2.c:get_vlc2
Line
Count
Source
647
792k
{
648
792k
    int code;
649
650
792k
    OPEN_READER(re, s);
651
792k
    UPDATE_CACHE(re, s);
652
653
792k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
792k
    CLOSE_READER(re, s);
656
657
792k
    return code;
658
792k
}
hqx.c:get_vlc2
Line
Count
Source
647
7.95M
{
648
7.95M
    int code;
649
650
7.95M
    OPEN_READER(re, s);
651
7.95M
    UPDATE_CACHE(re, s);
652
653
7.95M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
7.95M
    CLOSE_READER(re, s);
656
657
7.95M
    return code;
658
7.95M
}
mobiclip.c:get_vlc2
Line
Count
Source
647
2.51M
{
648
2.51M
    int code;
649
650
2.51M
    OPEN_READER(re, s);
651
2.51M
    UPDATE_CACHE(re, s);
652
653
2.51M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
2.51M
    CLOSE_READER(re, s);
656
657
2.51M
    return code;
658
2.51M
}
wmaprodec.c:get_vlc2
Line
Count
Source
647
21.0M
{
648
21.0M
    int code;
649
650
21.0M
    OPEN_READER(re, s);
651
21.0M
    UPDATE_CACHE(re, s);
652
653
21.0M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
21.0M
    CLOSE_READER(re, s);
656
657
21.0M
    return code;
658
21.0M
}
Unexecuted instantiation: g729dec.c:get_vlc2
Unexecuted instantiation: sipr.c:get_vlc2
Unexecuted instantiation: g722dec.c:get_vlc2
Unexecuted instantiation: nellymoserdec.c:get_vlc2
Unexecuted instantiation: dcaenc.c:get_vlc2
Unexecuted instantiation: dcaadpcm.c:get_vlc2
Unexecuted instantiation: dcadata.c:get_vlc2
Unexecuted instantiation: interplayvideo.c:get_vlc2
Unexecuted instantiation: dec.c:get_vlc2
Unexecuted instantiation: dec_celt.c:get_vlc2
Unexecuted instantiation: silk.c:get_vlc2
Unexecuted instantiation: mjpegbdec.c:get_vlc2
bink.c:get_vlc2
Line
Count
Source
647
216M
{
648
216M
    int code;
649
650
216M
    OPEN_READER(re, s);
651
216M
    UPDATE_CACHE(re, s);
652
653
216M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
216M
    CLOSE_READER(re, s);
656
657
216M
    return code;
658
216M
}
Unexecuted instantiation: dvdsubdec.c:get_vlc2
Unexecuted instantiation: rtjpeg.c:get_vlc2
Unexecuted instantiation: truespeech.c:get_vlc2
Unexecuted instantiation: metasound.c:get_vlc2
Unexecuted instantiation: escape124.c:get_vlc2
Unexecuted instantiation: cllc.c:get_vlc2
Unexecuted instantiation: dvdec.c:get_vlc2
Unexecuted instantiation: tta.c:get_vlc2
fraps.c:get_vlc2
Line
Count
Source
647
567k
{
648
567k
    int code;
649
650
567k
    OPEN_READER(re, s);
651
567k
    UPDATE_CACHE(re, s);
652
653
567k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
567k
    CLOSE_READER(re, s);
656
657
567k
    return code;
658
567k
}
motionpixels.c:get_vlc2
Line
Count
Source
647
428M
{
648
428M
    int code;
649
650
428M
    OPEN_READER(re, s);
651
428M
    UPDATE_CACHE(re, s);
652
653
428M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
428M
    CLOSE_READER(re, s);
656
657
428M
    return code;
658
428M
}
Unexecuted instantiation: vp9.c:get_vlc2
Unexecuted instantiation: vp9block.c:get_vlc2
Unexecuted instantiation: vp9data.c:get_vlc2
Unexecuted instantiation: vp9lpf.c:get_vlc2
Unexecuted instantiation: vp9mvs.c:get_vlc2
Unexecuted instantiation: vp9prob.c:get_vlc2
Unexecuted instantiation: vp9recon.c:get_vlc2
Unexecuted instantiation: ffv1dec.c:get_vlc2
Unexecuted instantiation: intra_utils.c:get_vlc2
Unexecuted instantiation: thread.c:get_vlc2
Unexecuted instantiation: ctu.c:get_vlc2
Unexecuted instantiation: inter.c:get_vlc2
Unexecuted instantiation: intra.c:get_vlc2
wmavoice.c:get_vlc2
Line
Count
Source
647
1.36M
{
648
1.36M
    int code;
649
650
1.36M
    OPEN_READER(re, s);
651
1.36M
    UPDATE_CACHE(re, s);
652
653
1.36M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
1.36M
    CLOSE_READER(re, s);
656
657
1.36M
    return code;
658
1.36M
}
Unexecuted instantiation: rawdec.c:get_vlc2
svq1dec.c:get_vlc2
Line
Count
Source
647
891k
{
648
891k
    int code;
649
650
891k
    OPEN_READER(re, s);
651
891k
    UPDATE_CACHE(re, s);
652
653
891k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
891k
    CLOSE_READER(re, s);
656
657
891k
    return code;
658
891k
}
mpc7.c:get_vlc2
Line
Count
Source
647
2.40M
{
648
2.40M
    int code;
649
650
2.40M
    OPEN_READER(re, s);
651
2.40M
    UPDATE_CACHE(re, s);
652
653
2.40M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
2.40M
    CLOSE_READER(re, s);
656
657
2.40M
    return code;
658
2.40M
}
Unexecuted instantiation: truemotion2rt.c:get_vlc2
Unexecuted instantiation: adxdec.c:get_vlc2
rv40.c:get_vlc2
Line
Count
Source
647
29.0M
{
648
29.0M
    int code;
649
650
29.0M
    OPEN_READER(re, s);
651
29.0M
    UPDATE_CACHE(re, s);
652
653
29.0M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
29.0M
    CLOSE_READER(re, s);
656
657
29.0M
    return code;
658
29.0M
}
Unexecuted instantiation: xsubdec.c:get_vlc2
Unexecuted instantiation: notchlc.c:get_vlc2
Unexecuted instantiation: aic.c:get_vlc2
vqcdec.c:get_vlc2
Line
Count
Source
647
5.43M
{
648
5.43M
    int code;
649
650
5.43M
    OPEN_READER(re, s);
651
5.43M
    UPDATE_CACHE(re, s);
652
653
5.43M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
5.43M
    CLOSE_READER(re, s);
656
657
5.43M
    return code;
658
5.43M
}
Unexecuted instantiation: dolby_e.c:get_vlc2
Unexecuted instantiation: proresdec.c:get_vlc2
Unexecuted instantiation: evrcdec.c:get_vlc2
Unexecuted instantiation: dnxhddec.c:get_vlc2
Unexecuted instantiation: dcadec.c:get_vlc2
dca_core.c:get_vlc2
Line
Count
Source
647
13.8M
{
648
13.8M
    int code;
649
650
13.8M
    OPEN_READER(re, s);
651
13.8M
    UPDATE_CACHE(re, s);
652
653
13.8M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
13.8M
    CLOSE_READER(re, s);
656
657
13.8M
    return code;
658
13.8M
}
dca_lbr.c:get_vlc2
Line
Count
Source
647
3.48M
{
648
3.48M
    int code;
649
650
3.48M
    OPEN_READER(re, s);
651
3.48M
    UPDATE_CACHE(re, s);
652
653
3.48M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
3.48M
    CLOSE_READER(re, s);
656
657
3.48M
    return code;
658
3.48M
}
Unexecuted instantiation: dca_xll.c:get_vlc2
Unexecuted instantiation: mlpenc.c:get_vlc2
mlpdec.c:get_vlc2
Line
Count
Source
647
91.0k
{
648
91.0k
    int code;
649
650
91.0k
    OPEN_READER(re, s);
651
91.0k
    UPDATE_CACHE(re, s);
652
653
91.0k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
91.0k
    CLOSE_READER(re, s);
656
657
91.0k
    return code;
658
91.0k
}
atrac3.c:get_vlc2
Line
Count
Source
647
3.88M
{
648
3.88M
    int code;
649
650
3.88M
    OPEN_READER(re, s);
651
3.88M
    UPDATE_CACHE(re, s);
652
653
3.88M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
3.88M
    CLOSE_READER(re, s);
656
657
3.88M
    return code;
658
3.88M
}
vorbisdec.c:get_vlc2
Line
Count
Source
647
323k
{
648
323k
    int code;
649
650
323k
    OPEN_READER(re, s);
651
323k
    UPDATE_CACHE(re, s);
652
653
323k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
323k
    CLOSE_READER(re, s);
656
657
323k
    return code;
658
323k
}
Unexecuted instantiation: flashsv.c:get_vlc2
Unexecuted instantiation: wavpack.c:get_vlc2
speedhqdec.c:get_vlc2
Line
Count
Source
647
222k
{
648
222k
    int code;
649
650
222k
    OPEN_READER(re, s);
651
222k
    UPDATE_CACHE(re, s);
652
653
222k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
222k
    CLOSE_READER(re, s);
656
657
222k
    return code;
658
222k
}
Unexecuted instantiation: g723_1dec.c:get_vlc2
g2meet.c:get_vlc2
Line
Count
Source
647
761k
{
648
761k
    int code;
649
650
761k
    OPEN_READER(re, s);
651
761k
    UPDATE_CACHE(re, s);
652
653
761k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
761k
    CLOSE_READER(re, s);
656
657
761k
    return code;
658
761k
}
Unexecuted instantiation: shorten.c:get_vlc2
indeo4.c:get_vlc2
Line
Count
Source
647
5.48M
{
648
5.48M
    int code;
649
650
5.48M
    OPEN_READER(re, s);
651
5.48M
    UPDATE_CACHE(re, s);
652
653
5.48M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
5.48M
    CLOSE_READER(re, s);
656
657
5.48M
    return code;
658
5.48M
}
Unexecuted instantiation: sp5xdec.c:get_vlc2
Unexecuted instantiation: atrac1.c:get_vlc2
Unexecuted instantiation: apv_decode.c:get_vlc2
Unexecuted instantiation: apv_entropy.c:get_vlc2
Unexecuted instantiation: avs.c:get_vlc2
rv60dec.c:get_vlc2
Line
Count
Source
647
172M
{
648
172M
    int code;
649
650
172M
    OPEN_READER(re, s);
651
172M
    UPDATE_CACHE(re, s);
652
653
172M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
172M
    CLOSE_READER(re, s);
656
657
172M
    return code;
658
172M
}
Unexecuted instantiation: alac.c:get_vlc2
Unexecuted instantiation: tiertexseqv.c:get_vlc2
Unexecuted instantiation: ffv1enc.c:get_vlc2
Unexecuted instantiation: hcadec.c:get_vlc2
Unexecuted instantiation: pcx.c:get_vlc2
Unexecuted instantiation: qcelpdec.c:get_vlc2
Unexecuted instantiation: flacdec.c:get_vlc2
Unexecuted instantiation: ac3dec_fixed.c:get_vlc2
Unexecuted instantiation: midivid.c:get_vlc2
mimic.c:get_vlc2
Line
Count
Source
647
78.3M
{
648
78.3M
    int code;
649
650
78.3M
    OPEN_READER(re, s);
651
78.3M
    UPDATE_CACHE(re, s);
652
653
78.3M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
78.3M
    CLOSE_READER(re, s);
656
657
78.3M
    return code;
658
78.3M
}
Unexecuted instantiation: fic.c:get_vlc2
qdmc.c:get_vlc2
Line
Count
Source
647
7.63M
{
648
7.63M
    int code;
649
650
7.63M
    OPEN_READER(re, s);
651
7.63M
    UPDATE_CACHE(re, s);
652
653
7.63M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
7.63M
    CLOSE_READER(re, s);
656
657
7.63M
    return code;
658
7.63M
}
Unexecuted instantiation: ra288.c:get_vlc2
Unexecuted instantiation: interplayacm.c:get_vlc2
ylc.c:get_vlc2
Line
Count
Source
647
48.4M
{
648
48.4M
    int code;
649
650
48.4M
    OPEN_READER(re, s);
651
48.4M
    UPDATE_CACHE(re, s);
652
653
48.4M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
48.4M
    CLOSE_READER(re, s);
656
657
48.4M
    return code;
658
48.4M
}
Unexecuted instantiation: ftr.c:get_vlc2
agm.c:get_vlc2
Line
Count
Source
647
11.7M
{
648
11.7M
    int code;
649
650
11.7M
    OPEN_READER(re, s);
651
11.7M
    UPDATE_CACHE(re, s);
652
653
11.7M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
11.7M
    CLOSE_READER(re, s);
656
657
11.7M
    return code;
658
11.7M
}
Unexecuted instantiation: xan.c:get_vlc2
Unexecuted instantiation: svq3.c:get_vlc2
Unexecuted instantiation: cri.c:get_vlc2
qdm2.c:get_vlc2
Line
Count
Source
647
8.46M
{
648
8.46M
    int code;
649
650
8.46M
    OPEN_READER(re, s);
651
8.46M
    UPDATE_CACHE(re, s);
652
653
8.46M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
8.46M
    CLOSE_READER(re, s);
656
657
8.46M
    return code;
658
8.46M
}
Unexecuted instantiation: cljrdec.c:get_vlc2
Unexecuted instantiation: g728dec.c:get_vlc2
cook.c:get_vlc2
Line
Count
Source
647
9.11M
{
648
9.11M
    int code;
649
650
9.11M
    OPEN_READER(re, s);
651
9.11M
    UPDATE_CACHE(re, s);
652
653
9.11M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
9.11M
    CLOSE_READER(re, s);
656
657
9.11M
    return code;
658
9.11M
}
Unexecuted instantiation: twinvqdec.c:get_vlc2
hq_hqa.c:get_vlc2
Line
Count
Source
647
26.2k
{
648
26.2k
    int code;
649
650
26.2k
    OPEN_READER(re, s);
651
26.2k
    UPDATE_CACHE(re, s);
652
653
26.2k
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
26.2k
    CLOSE_READER(re, s);
656
657
26.2k
    return code;
658
26.2k
}
Unexecuted instantiation: cdxl.c:get_vlc2
Unexecuted instantiation: vble.c:get_vlc2
mv30.c:get_vlc2
Line
Count
Source
647
194M
{
648
194M
    int code;
649
650
194M
    OPEN_READER(re, s);
651
194M
    UPDATE_CACHE(re, s);
652
653
194M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
194M
    CLOSE_READER(re, s);
656
657
194M
    return code;
658
194M
}
Unexecuted instantiation: apedec.c:get_vlc2
h261dec.c:get_vlc2
Line
Count
Source
647
2.83M
{
648
2.83M
    int code;
649
650
2.83M
    OPEN_READER(re, s);
651
2.83M
    UPDATE_CACHE(re, s);
652
653
2.83M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
2.83M
    CLOSE_READER(re, s);
656
657
2.83M
    return code;
658
2.83M
}
Unexecuted instantiation: dstdec.c:get_vlc2
Unexecuted instantiation: jpeglsenc.c:get_vlc2
truemotion2.c:get_vlc2
Line
Count
Source
647
3.06M
{
648
3.06M
    int code;
649
650
3.06M
    OPEN_READER(re, s);
651
3.06M
    UPDATE_CACHE(re, s);
652
653
3.06M
    GET_VLC(code, re, s, table, bits, max_depth);
654
655
3.06M
    CLOSE_READER(re, s);
656
657
3.06M
    return code;
658
3.06M
}
659
660
static inline int get_vlc_multi(GetBitContext *s, uint8_t *dst,
661
                                av_unused const VLC_MULTI_ELEM *const Jtable,
662
                                const VLCElem *const table,
663
                                const int bits, const int max_depth,
664
                                av_unused const int symbols_size)
665
0
{
666
0
    dst[0] = get_vlc2(s, table, bits, max_depth);
667
0
    return 1;
668
0
}
Unexecuted instantiation: mpegvideo_motion.c:get_vlc_multi
Unexecuted instantiation: wmv2dec.c:get_vlc_multi
Unexecuted instantiation: aac_adtstoasc.c:get_vlc_multi
Unexecuted instantiation: dovi_rpu.c:get_vlc_multi
Unexecuted instantiation: dovi_split.c:get_vlc_multi
Unexecuted instantiation: dts2pts.c:get_vlc_multi
Unexecuted instantiation: eac3_core.c:get_vlc_multi
Unexecuted instantiation: evc_frame_merge.c:get_vlc_multi
Unexecuted instantiation: extract_extradata.c:get_vlc_multi
Unexecuted instantiation: h264_metadata.c:get_vlc_multi
Unexecuted instantiation: h264_redundant_pps.c:get_vlc_multi
Unexecuted instantiation: h265_metadata.c:get_vlc_multi
Unexecuted instantiation: h266_metadata.c:get_vlc_multi
Unexecuted instantiation: lcevc_merge.c:get_vlc_multi
Unexecuted instantiation: lcevc_metadata.c:get_vlc_multi
Unexecuted instantiation: remove_extradata.c:get_vlc_multi
Unexecuted instantiation: truehd_core.c:get_vlc_multi
Unexecuted instantiation: vp9_raw_reorder.c:get_vlc_multi
Unexecuted instantiation: vp9_superframe.c:get_vlc_multi
Unexecuted instantiation: vp9_superframe_split.c:get_vlc_multi
Unexecuted instantiation: cbs.c:get_vlc_multi
Unexecuted instantiation: cbs_apv.c:get_vlc_multi
Unexecuted instantiation: cbs_av1.c:get_vlc_multi
Unexecuted instantiation: cbs_h264.c:get_vlc_multi
Unexecuted instantiation: cbs_h2645.c:get_vlc_multi
Unexecuted instantiation: cbs_h265.c:get_vlc_multi
Unexecuted instantiation: cbs_h266.c:get_vlc_multi
Unexecuted instantiation: cbs_lcevc.c:get_vlc_multi
Unexecuted instantiation: cbs_mpeg2.c:get_vlc_multi
Unexecuted instantiation: cbs_sei.c:get_vlc_multi
Unexecuted instantiation: cbs_vp8.c:get_vlc_multi
Unexecuted instantiation: cbs_vp9.c:get_vlc_multi
Unexecuted instantiation: dovi_rpudec.c:get_vlc_multi
Unexecuted instantiation: evc_parse.c:get_vlc_multi
Unexecuted instantiation: evc_ps.c:get_vlc_multi
Unexecuted instantiation: h263dec.c:get_vlc_multi
Unexecuted instantiation: h2645_parse.c:get_vlc_multi
Unexecuted instantiation: h264_parse.c:get_vlc_multi
Unexecuted instantiation: h264_ps.c:get_vlc_multi
Unexecuted instantiation: h264data.c:get_vlc_multi
Unexecuted instantiation: h265_profile_level.c:get_vlc_multi
Unexecuted instantiation: ps.c:get_vlc_multi
Unexecuted instantiation: intelh263dec.c:get_vlc_multi
Unexecuted instantiation: intrax8.c:get_vlc_multi
Unexecuted instantiation: ituh263dec.c:get_vlc_multi
Unexecuted instantiation: mlp_parse.c:get_vlc_multi
Unexecuted instantiation: mpeg4audio.c:get_vlc_multi
Unexecuted instantiation: mpeg4videodec.c:get_vlc_multi
Unexecuted instantiation: mpeg_er.c:get_vlc_multi
Unexecuted instantiation: mpegvideo_dec.c:get_vlc_multi
Unexecuted instantiation: msmpeg4dec.c:get_vlc_multi
Unexecuted instantiation: rv10.c:get_vlc_multi
Unexecuted instantiation: ac3_parser.c:get_vlc_multi
Unexecuted instantiation: adts_header.c:get_vlc_multi
Unexecuted instantiation: av1_parse.c:get_vlc_multi
Unexecuted instantiation: flvdec.c:get_vlc_multi
Unexecuted instantiation: h2645_vui.c:get_vlc_multi
Unexecuted instantiation: vc1_parser.c:get_vlc_multi
Unexecuted instantiation: vorbis_parser.c:get_vlc_multi
Unexecuted instantiation: vp9_parser.c:get_vlc_multi
Unexecuted instantiation: vvc_parser.c:get_vlc_multi
Unexecuted instantiation: aac_ac3_parser.c:get_vlc_multi
Unexecuted instantiation: av1_parser.c:get_vlc_multi
Unexecuted instantiation: avs2_parser.c:get_vlc_multi
Unexecuted instantiation: avs3_parser.c:get_vlc_multi
Unexecuted instantiation: cavs_parser.c:get_vlc_multi
Unexecuted instantiation: dca_parser.c:get_vlc_multi
Unexecuted instantiation: dolby_e_parser.c:get_vlc_multi
Unexecuted instantiation: evc_parser.c:get_vlc_multi
Unexecuted instantiation: ffv1_parser.c:get_vlc_multi
Unexecuted instantiation: flac_parser.c:get_vlc_multi
Unexecuted instantiation: ftr_parser.c:get_vlc_multi
Unexecuted instantiation: h264_parser.c:get_vlc_multi
Unexecuted instantiation: h264_sei.c:get_vlc_multi
Unexecuted instantiation: h264idct.c:get_vlc_multi
Unexecuted instantiation: parser.c:get_vlc_multi
Unexecuted instantiation: sei.c:get_vlc_multi
Unexecuted instantiation: jpegxl_parser.c:get_vlc_multi
Unexecuted instantiation: jpegxs_parser.c:get_vlc_multi
Unexecuted instantiation: lcevc_parser.c:get_vlc_multi
Unexecuted instantiation: mlp_parser.c:get_vlc_multi
Unexecuted instantiation: mpeg4video_parser.c:get_vlc_multi
Unexecuted instantiation: vc1.c:get_vlc_multi
Unexecuted instantiation: vc1data.c:get_vlc_multi
Unexecuted instantiation: dca.c:get_vlc_multi
Unexecuted instantiation: dca_exss.c:get_vlc_multi
Unexecuted instantiation: dolby_e_parse.c:get_vlc_multi
Unexecuted instantiation: ffv1.c:get_vlc_multi
Unexecuted instantiation: ffv1_parse.c:get_vlc_multi
Unexecuted instantiation: flac.c:get_vlc_multi
Unexecuted instantiation: h2645_sei.c:get_vlc_multi
Unexecuted instantiation: parse.c:get_vlc_multi
Unexecuted instantiation: jpegxl_parse.c:get_vlc_multi
Unexecuted instantiation: aom_film_grain.c:get_vlc_multi
Unexecuted instantiation: dynamic_hdr_vivid.c:get_vlc_multi
Unexecuted instantiation: hdr_dynamic_metadata.c:get_vlc_multi
Unexecuted instantiation: av1dec.c:get_vlc_multi
Unexecuted instantiation: bit.c:get_vlc_multi
Unexecuted instantiation: dtsdec.c:get_vlc_multi
Unexecuted instantiation: dtshddec.c:get_vlc_multi
Unexecuted instantiation: h264dec.c:get_vlc_multi
Unexecuted instantiation: hls_sample_encryption.c:get_vlc_multi
Unexecuted instantiation: isom.c:get_vlc_multi
Unexecuted instantiation: matroskadec.c:get_vlc_multi
Unexecuted instantiation: mlpdec.c:get_vlc_multi
Unexecuted instantiation: mov.c:get_vlc_multi
Unexecuted instantiation: mpc8.c:get_vlc_multi
Unexecuted instantiation: mpegts.c:get_vlc_multi
Unexecuted instantiation: oggparsetheora.c:get_vlc_multi
Unexecuted instantiation: shortendec.c:get_vlc_multi
Unexecuted instantiation: swfdec.c:get_vlc_multi
Unexecuted instantiation: takdec.c:get_vlc_multi
Unexecuted instantiation: iamf_parse.c:get_vlc_multi
Unexecuted instantiation: dirac.c:get_vlc_multi
Unexecuted instantiation: atrac9dec.c:get_vlc_multi
Unexecuted instantiation: enc.c:get_vlc_multi
Unexecuted instantiation: enc_psy.c:get_vlc_multi
Unexecuted instantiation: pvq.c:get_vlc_multi
Unexecuted instantiation: rc.c:get_vlc_multi
Unexecuted instantiation: celt.c:get_vlc_multi
Unexecuted instantiation: gsmdec.c:get_vlc_multi
Unexecuted instantiation: msgsmdec.c:get_vlc_multi
Unexecuted instantiation: imc.c:get_vlc_multi
Unexecuted instantiation: adpcm.c:get_vlc_multi
Unexecuted instantiation: wmaenc.c:get_vlc_multi
Unexecuted instantiation: wma.c:get_vlc_multi
Unexecuted instantiation: cfhd.c:get_vlc_multi
Unexecuted instantiation: wavarc.c:get_vlc_multi
Unexecuted instantiation: escape130.c:get_vlc_multi
Unexecuted instantiation: asvdec.c:get_vlc_multi
Unexecuted instantiation: diracdec.c:get_vlc_multi
Unexecuted instantiation: dirac_arith.c:get_vlc_multi
Unexecuted instantiation: wmadec.c:get_vlc_multi
Unexecuted instantiation: aacenc.c:get_vlc_multi
Unexecuted instantiation: imm4.c:get_vlc_multi
Unexecuted instantiation: exr.c:get_vlc_multi
Unexecuted instantiation: aacdec.c:get_vlc_multi
Unexecuted instantiation: aacdec_fixed.c:get_vlc_multi
Unexecuted instantiation: aacdec_float.c:get_vlc_multi
Unexecuted instantiation: aacdec_tab.c:get_vlc_multi
Unexecuted instantiation: aacdec_usac.c:get_vlc_multi
Unexecuted instantiation: aacdec_usac_mps212.c:get_vlc_multi
Unexecuted instantiation: aacps_common.c:get_vlc_multi
Unexecuted instantiation: aacsbr.c:get_vlc_multi
Unexecuted instantiation: aacsbr_fixed.c:get_vlc_multi
Unexecuted instantiation: aacdec_ac.c:get_vlc_multi
Unexecuted instantiation: aacdec_lpd.c:get_vlc_multi
Unexecuted instantiation: aacps_fixed.c:get_vlc_multi
Unexecuted instantiation: aacps_float.c:get_vlc_multi
Unexecuted instantiation: mjpegdec.c:get_vlc_multi
Unexecuted instantiation: mjpegdec_common.c:get_vlc_multi
Unexecuted instantiation: jpeglsdec.c:get_vlc_multi
Unexecuted instantiation: jvdec.c:get_vlc_multi
Unexecuted instantiation: rdt.c:get_vlc_multi
Unexecuted instantiation: rtpdec_h261.c:get_vlc_multi
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_vlc_multi
Unexecuted instantiation: rtpdec_latm.c:get_vlc_multi
Unexecuted instantiation: rtpdec_mpeg4.c:get_vlc_multi
Unexecuted instantiation: rtpdec_qt.c:get_vlc_multi
Unexecuted instantiation: h264_cavlc.c:get_vlc_multi
Unexecuted instantiation: h264_direct.c:get_vlc_multi
Unexecuted instantiation: h264_mb.c:get_vlc_multi
Unexecuted instantiation: h264_picture.c:get_vlc_multi
Unexecuted instantiation: h264_refs.c:get_vlc_multi
Unexecuted instantiation: h264_slice.c:get_vlc_multi
Unexecuted instantiation: h264_cabac.c:get_vlc_multi
Unexecuted instantiation: h264_loopfilter.c:get_vlc_multi
Unexecuted instantiation: alsdec.c:get_vlc_multi
Unexecuted instantiation: bgmc.c:get_vlc_multi
Unexecuted instantiation: mlz.c:get_vlc_multi
Unexecuted instantiation: bonk.c:get_vlc_multi
Unexecuted instantiation: mxpegdec.c:get_vlc_multi
Unexecuted instantiation: rv30.c:get_vlc_multi
Unexecuted instantiation: rv34.c:get_vlc_multi
Unexecuted instantiation: indeo3.c:get_vlc_multi
Unexecuted instantiation: eamad.c:get_vlc_multi
Unexecuted instantiation: mpeg12.c:get_vlc_multi
Unexecuted instantiation: g726.c:get_vlc_multi
Unexecuted instantiation: vc1dec.c:get_vlc_multi
Unexecuted instantiation: vc1_block.c:get_vlc_multi
Unexecuted instantiation: vc1_loopfilter.c:get_vlc_multi
Unexecuted instantiation: vc1_mc.c:get_vlc_multi
Unexecuted instantiation: vc1_pred.c:get_vlc_multi
Unexecuted instantiation: mpegaudiodec_float.c:get_vlc_multi
Unexecuted instantiation: huffyuvdec.c:get_vlc_multi
Unexecuted instantiation: speexdec.c:get_vlc_multi
Unexecuted instantiation: atrac3plusdec.c:get_vlc_multi
Unexecuted instantiation: atrac3plusdsp.c:get_vlc_multi
Unexecuted instantiation: atrac3plus.c:get_vlc_multi
Unexecuted instantiation: mss4.c:get_vlc_multi
Unexecuted instantiation: tiff.c:get_vlc_multi
Unexecuted instantiation: faxcompr.c:get_vlc_multi
Unexecuted instantiation: ac3dec_float.c:get_vlc_multi
Unexecuted instantiation: on2avc.c:get_vlc_multi
Unexecuted instantiation: smacker.c:get_vlc_multi
Unexecuted instantiation: dvbsubdec.c:get_vlc_multi
Unexecuted instantiation: mss1.c:get_vlc_multi
Unexecuted instantiation: mss12.c:get_vlc_multi
Unexecuted instantiation: mss2.c:get_vlc_multi
Unexecuted instantiation: mdec.c:get_vlc_multi
Unexecuted instantiation: osq.c:get_vlc_multi
Unexecuted instantiation: vp6.c:get_vlc_multi
Unexecuted instantiation: vp56.c:get_vlc_multi
Unexecuted instantiation: vp56data.c:get_vlc_multi
Unexecuted instantiation: loco.c:get_vlc_multi
Unexecuted instantiation: vp5.c:get_vlc_multi
Unexecuted instantiation: ra144dec.c:get_vlc_multi
Unexecuted instantiation: indeo5.c:get_vlc_multi
Unexecuted instantiation: ivi.c:get_vlc_multi
Unexecuted instantiation: ivi_dsp.c:get_vlc_multi
Unexecuted instantiation: apac.c:get_vlc_multi
Unexecuted instantiation: clearvideo.c:get_vlc_multi
Unexecuted instantiation: dxtory.c:get_vlc_multi
Unexecuted instantiation: mpegaudiodec_fixed.c:get_vlc_multi
Unexecuted instantiation: ralf.c:get_vlc_multi
Unexecuted instantiation: pixlet.c:get_vlc_multi
Unexecuted instantiation: wnv1.c:get_vlc_multi
Unexecuted instantiation: qoadec.c:get_vlc_multi
Unexecuted instantiation: vima.c:get_vlc_multi
Unexecuted instantiation: leaddec.c:get_vlc_multi
Unexecuted instantiation: eatqi.c:get_vlc_multi
Unexecuted instantiation: lagarith.c:get_vlc_multi
Unexecuted instantiation: lagarithrac.c:get_vlc_multi
Unexecuted instantiation: dss_sp.c:get_vlc_multi
Unexecuted instantiation: siren.c:get_vlc_multi
Unexecuted instantiation: cavsdec.c:get_vlc_multi
Unexecuted instantiation: cavs.c:get_vlc_multi
Unexecuted instantiation: cavsdata.c:get_vlc_multi
Unexecuted instantiation: hcom.c:get_vlc_multi
Unexecuted instantiation: vp3.c:get_vlc_multi
Unexecuted instantiation: webp.c:get_vlc_multi
Unexecuted instantiation: eatgv.c:get_vlc_multi
Unexecuted instantiation: eatgq.c:get_vlc_multi
Unexecuted instantiation: sga.c:get_vlc_multi
Unexecuted instantiation: binkaudio.c:get_vlc_multi
Unexecuted instantiation: mpeg12dec.c:get_vlc_multi
Unexecuted instantiation: indeo2.c:get_vlc_multi
Unexecuted instantiation: 4xm.c:get_vlc_multi
Unexecuted instantiation: wmalosslessdec.c:get_vlc_multi
Unexecuted instantiation: ilbcdec.c:get_vlc_multi
Unexecuted instantiation: hevcdec.c:get_vlc_multi
Unexecuted instantiation: mvs.c:get_vlc_multi
Unexecuted instantiation: pred.c:get_vlc_multi
Unexecuted instantiation: refs.c:get_vlc_multi
Unexecuted instantiation: cabac.c:get_vlc_multi
Unexecuted instantiation: dsp.c:get_vlc_multi
Unexecuted instantiation: filter.c:get_vlc_multi
Unexecuted instantiation: tscc2.c:get_vlc_multi
Unexecuted instantiation: hqx.c:get_vlc_multi
Unexecuted instantiation: mobiclip.c:get_vlc_multi
Unexecuted instantiation: wmaprodec.c:get_vlc_multi
Unexecuted instantiation: g729dec.c:get_vlc_multi
Unexecuted instantiation: sipr.c:get_vlc_multi
Unexecuted instantiation: g722dec.c:get_vlc_multi
Unexecuted instantiation: nellymoserdec.c:get_vlc_multi
Unexecuted instantiation: dcaenc.c:get_vlc_multi
Unexecuted instantiation: dcaadpcm.c:get_vlc_multi
Unexecuted instantiation: dcadata.c:get_vlc_multi
Unexecuted instantiation: interplayvideo.c:get_vlc_multi
Unexecuted instantiation: dec.c:get_vlc_multi
Unexecuted instantiation: dec_celt.c:get_vlc_multi
Unexecuted instantiation: silk.c:get_vlc_multi
Unexecuted instantiation: mjpegbdec.c:get_vlc_multi
Unexecuted instantiation: bink.c:get_vlc_multi
Unexecuted instantiation: dvdsubdec.c:get_vlc_multi
Unexecuted instantiation: rtjpeg.c:get_vlc_multi
Unexecuted instantiation: truespeech.c:get_vlc_multi
Unexecuted instantiation: metasound.c:get_vlc_multi
Unexecuted instantiation: escape124.c:get_vlc_multi
Unexecuted instantiation: cllc.c:get_vlc_multi
Unexecuted instantiation: dvdec.c:get_vlc_multi
Unexecuted instantiation: tta.c:get_vlc_multi
Unexecuted instantiation: fraps.c:get_vlc_multi
Unexecuted instantiation: motionpixels.c:get_vlc_multi
Unexecuted instantiation: vp9.c:get_vlc_multi
Unexecuted instantiation: vp9block.c:get_vlc_multi
Unexecuted instantiation: vp9data.c:get_vlc_multi
Unexecuted instantiation: vp9lpf.c:get_vlc_multi
Unexecuted instantiation: vp9mvs.c:get_vlc_multi
Unexecuted instantiation: vp9prob.c:get_vlc_multi
Unexecuted instantiation: vp9recon.c:get_vlc_multi
Unexecuted instantiation: ffv1dec.c:get_vlc_multi
Unexecuted instantiation: intra_utils.c:get_vlc_multi
Unexecuted instantiation: thread.c:get_vlc_multi
Unexecuted instantiation: ctu.c:get_vlc_multi
Unexecuted instantiation: inter.c:get_vlc_multi
Unexecuted instantiation: intra.c:get_vlc_multi
Unexecuted instantiation: wmavoice.c:get_vlc_multi
Unexecuted instantiation: rawdec.c:get_vlc_multi
Unexecuted instantiation: svq1dec.c:get_vlc_multi
Unexecuted instantiation: mpc7.c:get_vlc_multi
Unexecuted instantiation: truemotion2rt.c:get_vlc_multi
Unexecuted instantiation: adxdec.c:get_vlc_multi
Unexecuted instantiation: rv40.c:get_vlc_multi
Unexecuted instantiation: xsubdec.c:get_vlc_multi
Unexecuted instantiation: notchlc.c:get_vlc_multi
Unexecuted instantiation: aic.c:get_vlc_multi
Unexecuted instantiation: vqcdec.c:get_vlc_multi
Unexecuted instantiation: dolby_e.c:get_vlc_multi
Unexecuted instantiation: proresdec.c:get_vlc_multi
Unexecuted instantiation: evrcdec.c:get_vlc_multi
Unexecuted instantiation: dnxhddec.c:get_vlc_multi
Unexecuted instantiation: dcadec.c:get_vlc_multi
Unexecuted instantiation: dca_core.c:get_vlc_multi
Unexecuted instantiation: dca_lbr.c:get_vlc_multi
Unexecuted instantiation: dca_xll.c:get_vlc_multi
Unexecuted instantiation: mlpenc.c:get_vlc_multi
Unexecuted instantiation: atrac3.c:get_vlc_multi
Unexecuted instantiation: vorbisdec.c:get_vlc_multi
Unexecuted instantiation: flashsv.c:get_vlc_multi
Unexecuted instantiation: wavpack.c:get_vlc_multi
Unexecuted instantiation: speedhqdec.c:get_vlc_multi
Unexecuted instantiation: g723_1dec.c:get_vlc_multi
Unexecuted instantiation: g2meet.c:get_vlc_multi
Unexecuted instantiation: shorten.c:get_vlc_multi
Unexecuted instantiation: indeo4.c:get_vlc_multi
Unexecuted instantiation: sp5xdec.c:get_vlc_multi
Unexecuted instantiation: atrac1.c:get_vlc_multi
Unexecuted instantiation: apv_decode.c:get_vlc_multi
Unexecuted instantiation: apv_entropy.c:get_vlc_multi
Unexecuted instantiation: avs.c:get_vlc_multi
Unexecuted instantiation: rv60dec.c:get_vlc_multi
Unexecuted instantiation: alac.c:get_vlc_multi
Unexecuted instantiation: tiertexseqv.c:get_vlc_multi
Unexecuted instantiation: ffv1enc.c:get_vlc_multi
Unexecuted instantiation: hcadec.c:get_vlc_multi
Unexecuted instantiation: pcx.c:get_vlc_multi
Unexecuted instantiation: qcelpdec.c:get_vlc_multi
Unexecuted instantiation: flacdec.c:get_vlc_multi
Unexecuted instantiation: ac3dec_fixed.c:get_vlc_multi
Unexecuted instantiation: midivid.c:get_vlc_multi
Unexecuted instantiation: mimic.c:get_vlc_multi
Unexecuted instantiation: fic.c:get_vlc_multi
Unexecuted instantiation: qdmc.c:get_vlc_multi
Unexecuted instantiation: ra288.c:get_vlc_multi
Unexecuted instantiation: interplayacm.c:get_vlc_multi
Unexecuted instantiation: ylc.c:get_vlc_multi
Unexecuted instantiation: ftr.c:get_vlc_multi
Unexecuted instantiation: agm.c:get_vlc_multi
Unexecuted instantiation: xan.c:get_vlc_multi
Unexecuted instantiation: svq3.c:get_vlc_multi
Unexecuted instantiation: cri.c:get_vlc_multi
Unexecuted instantiation: qdm2.c:get_vlc_multi
Unexecuted instantiation: cljrdec.c:get_vlc_multi
Unexecuted instantiation: g728dec.c:get_vlc_multi
Unexecuted instantiation: cook.c:get_vlc_multi
Unexecuted instantiation: twinvqdec.c:get_vlc_multi
Unexecuted instantiation: hq_hqa.c:get_vlc_multi
Unexecuted instantiation: cdxl.c:get_vlc_multi
Unexecuted instantiation: vble.c:get_vlc_multi
Unexecuted instantiation: mv30.c:get_vlc_multi
Unexecuted instantiation: apedec.c:get_vlc_multi
Unexecuted instantiation: h261dec.c:get_vlc_multi
Unexecuted instantiation: dstdec.c:get_vlc_multi
Unexecuted instantiation: jpeglsenc.c:get_vlc_multi
Unexecuted instantiation: truemotion2.c:get_vlc_multi
669
670
static inline int decode012(GetBitContext *gb)
671
31.9M
{
672
31.9M
    int n;
673
31.9M
    n = get_bits1(gb);
674
31.9M
    if (n == 0)
675
19.3M
        return 0;
676
12.6M
    else
677
12.6M
        return get_bits1(gb) + 1;
678
31.9M
}
Unexecuted instantiation: mpegvideo_motion.c:decode012
wmv2dec.c:decode012
Line
Count
Source
671
7.91M
{
672
7.91M
    int n;
673
7.91M
    n = get_bits1(gb);
674
7.91M
    if (n == 0)
675
4.80M
        return 0;
676
3.10M
    else
677
3.10M
        return get_bits1(gb) + 1;
678
7.91M
}
Unexecuted instantiation: aac_adtstoasc.c:decode012
Unexecuted instantiation: dovi_rpu.c:decode012
Unexecuted instantiation: dovi_split.c:decode012
Unexecuted instantiation: dts2pts.c:decode012
Unexecuted instantiation: eac3_core.c:decode012
Unexecuted instantiation: evc_frame_merge.c:decode012
Unexecuted instantiation: extract_extradata.c:decode012
Unexecuted instantiation: h264_metadata.c:decode012
Unexecuted instantiation: h264_redundant_pps.c:decode012
Unexecuted instantiation: h265_metadata.c:decode012
Unexecuted instantiation: h266_metadata.c:decode012
Unexecuted instantiation: lcevc_merge.c:decode012
Unexecuted instantiation: lcevc_metadata.c:decode012
Unexecuted instantiation: remove_extradata.c:decode012
Unexecuted instantiation: truehd_core.c:decode012
Unexecuted instantiation: vp9_raw_reorder.c:decode012
Unexecuted instantiation: vp9_superframe.c:decode012
Unexecuted instantiation: vp9_superframe_split.c:decode012
Unexecuted instantiation: cbs.c:decode012
Unexecuted instantiation: cbs_apv.c:decode012
Unexecuted instantiation: cbs_av1.c:decode012
Unexecuted instantiation: cbs_h264.c:decode012
Unexecuted instantiation: cbs_h2645.c:decode012
Unexecuted instantiation: cbs_h265.c:decode012
Unexecuted instantiation: cbs_h266.c:decode012
Unexecuted instantiation: cbs_lcevc.c:decode012
Unexecuted instantiation: cbs_mpeg2.c:decode012
Unexecuted instantiation: cbs_sei.c:decode012
Unexecuted instantiation: cbs_vp8.c:decode012
Unexecuted instantiation: cbs_vp9.c:decode012
Unexecuted instantiation: dovi_rpudec.c:decode012
Unexecuted instantiation: evc_parse.c:decode012
Unexecuted instantiation: evc_ps.c:decode012
Unexecuted instantiation: h263dec.c:decode012
Unexecuted instantiation: h2645_parse.c:decode012
Unexecuted instantiation: h264_parse.c:decode012
Unexecuted instantiation: h264_ps.c:decode012
Unexecuted instantiation: h264data.c:decode012
Unexecuted instantiation: h265_profile_level.c:decode012
Unexecuted instantiation: ps.c:decode012
Unexecuted instantiation: intelh263dec.c:decode012
Unexecuted instantiation: intrax8.c:decode012
Unexecuted instantiation: ituh263dec.c:decode012
Unexecuted instantiation: mlp_parse.c:decode012
Unexecuted instantiation: mpeg4audio.c:decode012
Unexecuted instantiation: mpeg4videodec.c:decode012
Unexecuted instantiation: mpeg_er.c:decode012
Unexecuted instantiation: mpegvideo_dec.c:decode012
msmpeg4dec.c:decode012
Line
Count
Source
671
533k
{
672
533k
    int n;
673
533k
    n = get_bits1(gb);
674
533k
    if (n == 0)
675
393k
        return 0;
676
140k
    else
677
140k
        return get_bits1(gb) + 1;
678
533k
}
Unexecuted instantiation: rv10.c:decode012
Unexecuted instantiation: ac3_parser.c:decode012
Unexecuted instantiation: adts_header.c:decode012
Unexecuted instantiation: av1_parse.c:decode012
Unexecuted instantiation: flvdec.c:decode012
Unexecuted instantiation: h2645_vui.c:decode012
Unexecuted instantiation: vc1_parser.c:decode012
Unexecuted instantiation: vorbis_parser.c:decode012
Unexecuted instantiation: vp9_parser.c:decode012
Unexecuted instantiation: vvc_parser.c:decode012
Unexecuted instantiation: aac_ac3_parser.c:decode012
Unexecuted instantiation: av1_parser.c:decode012
Unexecuted instantiation: avs2_parser.c:decode012
Unexecuted instantiation: avs3_parser.c:decode012
Unexecuted instantiation: cavs_parser.c:decode012
Unexecuted instantiation: dca_parser.c:decode012
Unexecuted instantiation: dolby_e_parser.c:decode012
Unexecuted instantiation: evc_parser.c:decode012
Unexecuted instantiation: ffv1_parser.c:decode012
Unexecuted instantiation: flac_parser.c:decode012
Unexecuted instantiation: ftr_parser.c:decode012
Unexecuted instantiation: h264_parser.c:decode012
Unexecuted instantiation: h264_sei.c:decode012
Unexecuted instantiation: h264idct.c:decode012
Unexecuted instantiation: parser.c:decode012
Unexecuted instantiation: sei.c:decode012
Unexecuted instantiation: jpegxl_parser.c:decode012
Unexecuted instantiation: jpegxs_parser.c:decode012
Unexecuted instantiation: lcevc_parser.c:decode012
Unexecuted instantiation: mlp_parser.c:decode012
Unexecuted instantiation: mpeg4video_parser.c:decode012
vc1.c:decode012
Line
Count
Source
671
1.70M
{
672
1.70M
    int n;
673
1.70M
    n = get_bits1(gb);
674
1.70M
    if (n == 0)
675
735k
        return 0;
676
972k
    else
677
972k
        return get_bits1(gb) + 1;
678
1.70M
}
Unexecuted instantiation: vc1data.c:decode012
Unexecuted instantiation: dca.c:decode012
Unexecuted instantiation: dca_exss.c:decode012
Unexecuted instantiation: dolby_e_parse.c:decode012
Unexecuted instantiation: ffv1.c:decode012
Unexecuted instantiation: ffv1_parse.c:decode012
Unexecuted instantiation: flac.c:decode012
Unexecuted instantiation: h2645_sei.c:decode012
Unexecuted instantiation: parse.c:decode012
Unexecuted instantiation: jpegxl_parse.c:decode012
Unexecuted instantiation: aom_film_grain.c:decode012
Unexecuted instantiation: dynamic_hdr_vivid.c:decode012
Unexecuted instantiation: hdr_dynamic_metadata.c:decode012
Unexecuted instantiation: av1dec.c:decode012
Unexecuted instantiation: bit.c:decode012
Unexecuted instantiation: dtsdec.c:decode012
Unexecuted instantiation: dtshddec.c:decode012
Unexecuted instantiation: h264dec.c:decode012
Unexecuted instantiation: hls_sample_encryption.c:decode012
Unexecuted instantiation: isom.c:decode012
Unexecuted instantiation: matroskadec.c:decode012
Unexecuted instantiation: mlpdec.c:decode012
Unexecuted instantiation: mov.c:decode012
Unexecuted instantiation: mpc8.c:decode012
Unexecuted instantiation: mpegts.c:decode012
Unexecuted instantiation: oggparsetheora.c:decode012
Unexecuted instantiation: shortendec.c:decode012
Unexecuted instantiation: swfdec.c:decode012
Unexecuted instantiation: takdec.c:decode012
Unexecuted instantiation: iamf_parse.c:decode012
Unexecuted instantiation: dirac.c:decode012
Unexecuted instantiation: atrac9dec.c:decode012
Unexecuted instantiation: enc.c:decode012
Unexecuted instantiation: enc_psy.c:decode012
Unexecuted instantiation: pvq.c:decode012
Unexecuted instantiation: rc.c:decode012
Unexecuted instantiation: celt.c:decode012
Unexecuted instantiation: gsmdec.c:decode012
Unexecuted instantiation: msgsmdec.c:decode012
Unexecuted instantiation: imc.c:decode012
Unexecuted instantiation: adpcm.c:decode012
Unexecuted instantiation: wmaenc.c:decode012
Unexecuted instantiation: wma.c:decode012
Unexecuted instantiation: cfhd.c:decode012
Unexecuted instantiation: wavarc.c:decode012
Unexecuted instantiation: escape130.c:decode012
Unexecuted instantiation: asvdec.c:decode012
Unexecuted instantiation: diracdec.c:decode012
Unexecuted instantiation: dirac_arith.c:decode012
Unexecuted instantiation: wmadec.c:decode012
Unexecuted instantiation: aacenc.c:decode012
Unexecuted instantiation: imm4.c:decode012
Unexecuted instantiation: exr.c:decode012
Unexecuted instantiation: aacdec.c:decode012
Unexecuted instantiation: aacdec_fixed.c:decode012
Unexecuted instantiation: aacdec_float.c:decode012
Unexecuted instantiation: aacdec_tab.c:decode012
Unexecuted instantiation: aacdec_usac.c:decode012
Unexecuted instantiation: aacdec_usac_mps212.c:decode012
Unexecuted instantiation: aacps_common.c:decode012
Unexecuted instantiation: aacsbr.c:decode012
Unexecuted instantiation: aacsbr_fixed.c:decode012
Unexecuted instantiation: aacdec_ac.c:decode012
Unexecuted instantiation: aacdec_lpd.c:decode012
Unexecuted instantiation: aacps_fixed.c:decode012
Unexecuted instantiation: aacps_float.c:decode012
Unexecuted instantiation: mjpegdec.c:decode012
Unexecuted instantiation: mjpegdec_common.c:decode012
Unexecuted instantiation: jpeglsdec.c:decode012
Unexecuted instantiation: jvdec.c:decode012
Unexecuted instantiation: rdt.c:decode012
Unexecuted instantiation: rtpdec_h261.c:decode012
Unexecuted instantiation: rtpdec_h263_rfc2190.c:decode012
Unexecuted instantiation: rtpdec_latm.c:decode012
Unexecuted instantiation: rtpdec_mpeg4.c:decode012
Unexecuted instantiation: rtpdec_qt.c:decode012
Unexecuted instantiation: h264_cavlc.c:decode012
Unexecuted instantiation: h264_direct.c:decode012
Unexecuted instantiation: h264_mb.c:decode012
Unexecuted instantiation: h264_picture.c:decode012
Unexecuted instantiation: h264_refs.c:decode012
Unexecuted instantiation: h264_slice.c:decode012
Unexecuted instantiation: h264_cabac.c:decode012
Unexecuted instantiation: h264_loopfilter.c:decode012
Unexecuted instantiation: alsdec.c:decode012
Unexecuted instantiation: bgmc.c:decode012
Unexecuted instantiation: mlz.c:decode012
Unexecuted instantiation: bonk.c:decode012
Unexecuted instantiation: mxpegdec.c:decode012
Unexecuted instantiation: rv30.c:decode012
Unexecuted instantiation: rv34.c:decode012
Unexecuted instantiation: indeo3.c:decode012
Unexecuted instantiation: eamad.c:decode012
Unexecuted instantiation: mpeg12.c:decode012
Unexecuted instantiation: g726.c:decode012
Unexecuted instantiation: vc1dec.c:decode012
vc1_block.c:decode012
Line
Count
Source
671
17.2M
{
672
17.2M
    int n;
673
17.2M
    n = get_bits1(gb);
674
17.2M
    if (n == 0)
675
9.63M
        return 0;
676
7.65M
    else
677
7.65M
        return get_bits1(gb) + 1;
678
17.2M
}
Unexecuted instantiation: vc1_loopfilter.c:decode012
Unexecuted instantiation: vc1_mc.c:decode012
Unexecuted instantiation: vc1_pred.c:decode012
Unexecuted instantiation: mpegaudiodec_float.c:decode012
Unexecuted instantiation: huffyuvdec.c:decode012
Unexecuted instantiation: speexdec.c:decode012
Unexecuted instantiation: atrac3plusdec.c:decode012
Unexecuted instantiation: atrac3plusdsp.c:decode012
Unexecuted instantiation: atrac3plus.c:decode012
mss4.c:decode012
Line
Count
Source
671
4.13M
{
672
4.13M
    int n;
673
4.13M
    n = get_bits1(gb);
674
4.13M
    if (n == 0)
675
3.41M
        return 0;
676
718k
    else
677
718k
        return get_bits1(gb) + 1;
678
4.13M
}
Unexecuted instantiation: tiff.c:decode012
Unexecuted instantiation: faxcompr.c:decode012
Unexecuted instantiation: ac3dec_float.c:decode012
Unexecuted instantiation: on2avc.c:decode012
Unexecuted instantiation: smacker.c:decode012
Unexecuted instantiation: dvbsubdec.c:decode012
Unexecuted instantiation: mss1.c:decode012
Unexecuted instantiation: mss12.c:decode012
Unexecuted instantiation: mss2.c:decode012
Unexecuted instantiation: mdec.c:decode012
Unexecuted instantiation: osq.c:decode012
Unexecuted instantiation: vp6.c:decode012
Unexecuted instantiation: vp56.c:decode012
Unexecuted instantiation: vp56data.c:decode012
Unexecuted instantiation: loco.c:decode012
Unexecuted instantiation: vp5.c:decode012
Unexecuted instantiation: ra144dec.c:decode012
Unexecuted instantiation: indeo5.c:decode012
Unexecuted instantiation: ivi.c:decode012
Unexecuted instantiation: ivi_dsp.c:decode012
Unexecuted instantiation: apac.c:decode012
Unexecuted instantiation: clearvideo.c:decode012
Unexecuted instantiation: dxtory.c:decode012
Unexecuted instantiation: mpegaudiodec_fixed.c:decode012
Unexecuted instantiation: ralf.c:decode012
Unexecuted instantiation: pixlet.c:decode012
Unexecuted instantiation: wnv1.c:decode012
Unexecuted instantiation: qoadec.c:decode012
Unexecuted instantiation: vima.c:decode012
Unexecuted instantiation: leaddec.c:decode012
Unexecuted instantiation: eatqi.c:decode012
Unexecuted instantiation: lagarith.c:decode012
Unexecuted instantiation: lagarithrac.c:decode012
Unexecuted instantiation: dss_sp.c:decode012
Unexecuted instantiation: siren.c:decode012
Unexecuted instantiation: cavsdec.c:decode012
Unexecuted instantiation: cavs.c:decode012
Unexecuted instantiation: cavsdata.c:decode012
Unexecuted instantiation: hcom.c:decode012
Unexecuted instantiation: vp3.c:decode012
Unexecuted instantiation: webp.c:decode012
Unexecuted instantiation: eatgv.c:decode012
Unexecuted instantiation: eatgq.c:decode012
Unexecuted instantiation: sga.c:decode012
Unexecuted instantiation: binkaudio.c:decode012
Unexecuted instantiation: mpeg12dec.c:decode012
Unexecuted instantiation: indeo2.c:decode012
Unexecuted instantiation: 4xm.c:decode012
Unexecuted instantiation: wmalosslessdec.c:decode012
Unexecuted instantiation: ilbcdec.c:decode012
Unexecuted instantiation: hevcdec.c:decode012
Unexecuted instantiation: mvs.c:decode012
Unexecuted instantiation: pred.c:decode012
Unexecuted instantiation: refs.c:decode012
Unexecuted instantiation: cabac.c:decode012
Unexecuted instantiation: dsp.c:decode012
Unexecuted instantiation: filter.c:decode012
Unexecuted instantiation: tscc2.c:decode012
Unexecuted instantiation: hqx.c:decode012
Unexecuted instantiation: mobiclip.c:decode012
Unexecuted instantiation: wmaprodec.c:decode012
Unexecuted instantiation: g729dec.c:decode012
Unexecuted instantiation: sipr.c:decode012
Unexecuted instantiation: g722dec.c:decode012
Unexecuted instantiation: nellymoserdec.c:decode012
Unexecuted instantiation: dcaenc.c:decode012
Unexecuted instantiation: dcaadpcm.c:decode012
Unexecuted instantiation: dcadata.c:decode012
Unexecuted instantiation: interplayvideo.c:decode012
Unexecuted instantiation: dec.c:decode012
Unexecuted instantiation: dec_celt.c:decode012
Unexecuted instantiation: silk.c:decode012
Unexecuted instantiation: mjpegbdec.c:decode012
Unexecuted instantiation: bink.c:decode012
Unexecuted instantiation: dvdsubdec.c:decode012
Unexecuted instantiation: rtjpeg.c:decode012
Unexecuted instantiation: truespeech.c:decode012
Unexecuted instantiation: metasound.c:decode012
Unexecuted instantiation: escape124.c:decode012
Unexecuted instantiation: cllc.c:decode012
Unexecuted instantiation: dvdec.c:decode012
Unexecuted instantiation: tta.c:decode012
Unexecuted instantiation: fraps.c:decode012
Unexecuted instantiation: motionpixels.c:decode012
vp9.c:decode012
Line
Count
Source
671
359k
{
672
359k
    int n;
673
359k
    n = get_bits1(gb);
674
359k
    if (n == 0)
675
352k
        return 0;
676
7.41k
    else
677
7.41k
        return get_bits1(gb) + 1;
678
359k
}
Unexecuted instantiation: vp9block.c:decode012
Unexecuted instantiation: vp9data.c:decode012
Unexecuted instantiation: vp9lpf.c:decode012
Unexecuted instantiation: vp9mvs.c:decode012
Unexecuted instantiation: vp9prob.c:decode012
Unexecuted instantiation: vp9recon.c:decode012
Unexecuted instantiation: ffv1dec.c:decode012
Unexecuted instantiation: intra_utils.c:decode012
Unexecuted instantiation: thread.c:decode012
Unexecuted instantiation: ctu.c:decode012
Unexecuted instantiation: inter.c:decode012
Unexecuted instantiation: intra.c:decode012
Unexecuted instantiation: wmavoice.c:decode012
Unexecuted instantiation: rawdec.c:decode012
Unexecuted instantiation: svq1dec.c:decode012
Unexecuted instantiation: mpc7.c:decode012
Unexecuted instantiation: truemotion2rt.c:decode012
Unexecuted instantiation: adxdec.c:decode012
Unexecuted instantiation: rv40.c:decode012
Unexecuted instantiation: xsubdec.c:decode012
Unexecuted instantiation: notchlc.c:decode012
Unexecuted instantiation: aic.c:decode012
Unexecuted instantiation: vqcdec.c:decode012
Unexecuted instantiation: dolby_e.c:decode012
Unexecuted instantiation: proresdec.c:decode012
Unexecuted instantiation: evrcdec.c:decode012
Unexecuted instantiation: dnxhddec.c:decode012
Unexecuted instantiation: dcadec.c:decode012
Unexecuted instantiation: dca_core.c:decode012
Unexecuted instantiation: dca_lbr.c:decode012
Unexecuted instantiation: dca_xll.c:decode012
Unexecuted instantiation: mlpenc.c:decode012
Unexecuted instantiation: atrac3.c:decode012
Unexecuted instantiation: vorbisdec.c:decode012
Unexecuted instantiation: flashsv.c:decode012
Unexecuted instantiation: wavpack.c:decode012
Unexecuted instantiation: speedhqdec.c:decode012
Unexecuted instantiation: g723_1dec.c:decode012
Unexecuted instantiation: g2meet.c:decode012
Unexecuted instantiation: shorten.c:decode012
Unexecuted instantiation: indeo4.c:decode012
Unexecuted instantiation: sp5xdec.c:decode012
Unexecuted instantiation: atrac1.c:decode012
Unexecuted instantiation: apv_decode.c:decode012
Unexecuted instantiation: apv_entropy.c:decode012
Unexecuted instantiation: avs.c:decode012
Unexecuted instantiation: rv60dec.c:decode012
Unexecuted instantiation: alac.c:decode012
Unexecuted instantiation: tiertexseqv.c:decode012
Unexecuted instantiation: ffv1enc.c:decode012
Unexecuted instantiation: hcadec.c:decode012
Unexecuted instantiation: pcx.c:decode012
Unexecuted instantiation: qcelpdec.c:decode012
Unexecuted instantiation: flacdec.c:decode012
Unexecuted instantiation: ac3dec_fixed.c:decode012
Unexecuted instantiation: midivid.c:decode012
Unexecuted instantiation: mimic.c:decode012
Unexecuted instantiation: fic.c:decode012
Unexecuted instantiation: qdmc.c:decode012
Unexecuted instantiation: ra288.c:decode012
Unexecuted instantiation: interplayacm.c:decode012
Unexecuted instantiation: ylc.c:decode012
Unexecuted instantiation: ftr.c:decode012
Unexecuted instantiation: agm.c:decode012
Unexecuted instantiation: xan.c:decode012
Unexecuted instantiation: svq3.c:decode012
Unexecuted instantiation: cri.c:decode012
Unexecuted instantiation: qdm2.c:decode012
Unexecuted instantiation: cljrdec.c:decode012
Unexecuted instantiation: g728dec.c:decode012
Unexecuted instantiation: cook.c:decode012
Unexecuted instantiation: twinvqdec.c:decode012
Unexecuted instantiation: hq_hqa.c:decode012
Unexecuted instantiation: cdxl.c:decode012
Unexecuted instantiation: vble.c:decode012
Unexecuted instantiation: mv30.c:decode012
Unexecuted instantiation: apedec.c:decode012
Unexecuted instantiation: h261dec.c:decode012
Unexecuted instantiation: dstdec.c:decode012
Unexecuted instantiation: jpeglsenc.c:decode012
Unexecuted instantiation: truemotion2.c:decode012
679
680
static inline int decode210(GetBitContext *gb)
681
3.04M
{
682
3.04M
    if (get_bits1(gb))
683
1.06M
        return 0;
684
1.97M
    else
685
1.97M
        return 2 - get_bits1(gb);
686
3.04M
}
Unexecuted instantiation: mpegvideo_motion.c:decode210
Unexecuted instantiation: wmv2dec.c:decode210
Unexecuted instantiation: aac_adtstoasc.c:decode210
Unexecuted instantiation: dovi_rpu.c:decode210
Unexecuted instantiation: dovi_split.c:decode210
Unexecuted instantiation: dts2pts.c:decode210
Unexecuted instantiation: eac3_core.c:decode210
Unexecuted instantiation: evc_frame_merge.c:decode210
Unexecuted instantiation: extract_extradata.c:decode210
Unexecuted instantiation: h264_metadata.c:decode210
Unexecuted instantiation: h264_redundant_pps.c:decode210
Unexecuted instantiation: h265_metadata.c:decode210
Unexecuted instantiation: h266_metadata.c:decode210
Unexecuted instantiation: lcevc_merge.c:decode210
Unexecuted instantiation: lcevc_metadata.c:decode210
Unexecuted instantiation: remove_extradata.c:decode210
Unexecuted instantiation: truehd_core.c:decode210
Unexecuted instantiation: vp9_raw_reorder.c:decode210
Unexecuted instantiation: vp9_superframe.c:decode210
Unexecuted instantiation: vp9_superframe_split.c:decode210
Unexecuted instantiation: cbs.c:decode210
Unexecuted instantiation: cbs_apv.c:decode210
Unexecuted instantiation: cbs_av1.c:decode210
Unexecuted instantiation: cbs_h264.c:decode210
Unexecuted instantiation: cbs_h2645.c:decode210
Unexecuted instantiation: cbs_h265.c:decode210
Unexecuted instantiation: cbs_h266.c:decode210
Unexecuted instantiation: cbs_lcevc.c:decode210
Unexecuted instantiation: cbs_mpeg2.c:decode210
Unexecuted instantiation: cbs_sei.c:decode210
Unexecuted instantiation: cbs_vp8.c:decode210
Unexecuted instantiation: cbs_vp9.c:decode210
Unexecuted instantiation: dovi_rpudec.c:decode210
Unexecuted instantiation: evc_parse.c:decode210
Unexecuted instantiation: evc_ps.c:decode210
Unexecuted instantiation: h263dec.c:decode210
Unexecuted instantiation: h2645_parse.c:decode210
Unexecuted instantiation: h264_parse.c:decode210
Unexecuted instantiation: h264_ps.c:decode210
Unexecuted instantiation: h264data.c:decode210
Unexecuted instantiation: h265_profile_level.c:decode210
Unexecuted instantiation: ps.c:decode210
Unexecuted instantiation: intelh263dec.c:decode210
Unexecuted instantiation: intrax8.c:decode210
Unexecuted instantiation: ituh263dec.c:decode210
Unexecuted instantiation: mlp_parse.c:decode210
Unexecuted instantiation: mpeg4audio.c:decode210
Unexecuted instantiation: mpeg4videodec.c:decode210
Unexecuted instantiation: mpeg_er.c:decode210
Unexecuted instantiation: mpegvideo_dec.c:decode210
Unexecuted instantiation: msmpeg4dec.c:decode210
Unexecuted instantiation: rv10.c:decode210
Unexecuted instantiation: ac3_parser.c:decode210
Unexecuted instantiation: adts_header.c:decode210
Unexecuted instantiation: av1_parse.c:decode210
Unexecuted instantiation: flvdec.c:decode210
Unexecuted instantiation: h2645_vui.c:decode210
Unexecuted instantiation: vc1_parser.c:decode210
Unexecuted instantiation: vorbis_parser.c:decode210
Unexecuted instantiation: vp9_parser.c:decode210
Unexecuted instantiation: vvc_parser.c:decode210
Unexecuted instantiation: aac_ac3_parser.c:decode210
Unexecuted instantiation: av1_parser.c:decode210
Unexecuted instantiation: avs2_parser.c:decode210
Unexecuted instantiation: avs3_parser.c:decode210
Unexecuted instantiation: cavs_parser.c:decode210
Unexecuted instantiation: dca_parser.c:decode210
Unexecuted instantiation: dolby_e_parser.c:decode210
Unexecuted instantiation: evc_parser.c:decode210
Unexecuted instantiation: ffv1_parser.c:decode210
Unexecuted instantiation: flac_parser.c:decode210
Unexecuted instantiation: ftr_parser.c:decode210
Unexecuted instantiation: h264_parser.c:decode210
Unexecuted instantiation: h264_sei.c:decode210
Unexecuted instantiation: h264idct.c:decode210
Unexecuted instantiation: parser.c:decode210
Unexecuted instantiation: sei.c:decode210
Unexecuted instantiation: jpegxl_parser.c:decode210
Unexecuted instantiation: jpegxs_parser.c:decode210
Unexecuted instantiation: lcevc_parser.c:decode210
Unexecuted instantiation: mlp_parser.c:decode210
Unexecuted instantiation: mpeg4video_parser.c:decode210
vc1.c:decode210
Line
Count
Source
681
21.1k
{
682
21.1k
    if (get_bits1(gb))
683
14.1k
        return 0;
684
6.96k
    else
685
6.96k
        return 2 - get_bits1(gb);
686
21.1k
}
Unexecuted instantiation: vc1data.c:decode210
Unexecuted instantiation: dca.c:decode210
Unexecuted instantiation: dca_exss.c:decode210
Unexecuted instantiation: dolby_e_parse.c:decode210
Unexecuted instantiation: ffv1.c:decode210
Unexecuted instantiation: ffv1_parse.c:decode210
Unexecuted instantiation: flac.c:decode210
Unexecuted instantiation: h2645_sei.c:decode210
Unexecuted instantiation: parse.c:decode210
Unexecuted instantiation: jpegxl_parse.c:decode210
Unexecuted instantiation: aom_film_grain.c:decode210
Unexecuted instantiation: dynamic_hdr_vivid.c:decode210
Unexecuted instantiation: hdr_dynamic_metadata.c:decode210
Unexecuted instantiation: av1dec.c:decode210
Unexecuted instantiation: bit.c:decode210
Unexecuted instantiation: dtsdec.c:decode210
Unexecuted instantiation: dtshddec.c:decode210
Unexecuted instantiation: h264dec.c:decode210
Unexecuted instantiation: hls_sample_encryption.c:decode210
Unexecuted instantiation: isom.c:decode210
Unexecuted instantiation: matroskadec.c:decode210
Unexecuted instantiation: mlpdec.c:decode210
Unexecuted instantiation: mov.c:decode210
Unexecuted instantiation: mpc8.c:decode210
Unexecuted instantiation: mpegts.c:decode210
Unexecuted instantiation: oggparsetheora.c:decode210
Unexecuted instantiation: shortendec.c:decode210
Unexecuted instantiation: swfdec.c:decode210
Unexecuted instantiation: takdec.c:decode210
Unexecuted instantiation: iamf_parse.c:decode210
Unexecuted instantiation: dirac.c:decode210
Unexecuted instantiation: atrac9dec.c:decode210
Unexecuted instantiation: enc.c:decode210
Unexecuted instantiation: enc_psy.c:decode210
Unexecuted instantiation: pvq.c:decode210
Unexecuted instantiation: rc.c:decode210
Unexecuted instantiation: celt.c:decode210
Unexecuted instantiation: gsmdec.c:decode210
Unexecuted instantiation: msgsmdec.c:decode210
Unexecuted instantiation: imc.c:decode210
Unexecuted instantiation: adpcm.c:decode210
Unexecuted instantiation: wmaenc.c:decode210
Unexecuted instantiation: wma.c:decode210
Unexecuted instantiation: cfhd.c:decode210
Unexecuted instantiation: wavarc.c:decode210
Unexecuted instantiation: escape130.c:decode210
Unexecuted instantiation: asvdec.c:decode210
Unexecuted instantiation: diracdec.c:decode210
Unexecuted instantiation: dirac_arith.c:decode210
Unexecuted instantiation: wmadec.c:decode210
Unexecuted instantiation: aacenc.c:decode210
Unexecuted instantiation: imm4.c:decode210
Unexecuted instantiation: exr.c:decode210
Unexecuted instantiation: aacdec.c:decode210
Unexecuted instantiation: aacdec_fixed.c:decode210
Unexecuted instantiation: aacdec_float.c:decode210
Unexecuted instantiation: aacdec_tab.c:decode210
Unexecuted instantiation: aacdec_usac.c:decode210
Unexecuted instantiation: aacdec_usac_mps212.c:decode210
Unexecuted instantiation: aacps_common.c:decode210
Unexecuted instantiation: aacsbr.c:decode210
Unexecuted instantiation: aacsbr_fixed.c:decode210
Unexecuted instantiation: aacdec_ac.c:decode210
Unexecuted instantiation: aacdec_lpd.c:decode210
Unexecuted instantiation: aacps_fixed.c:decode210
Unexecuted instantiation: aacps_float.c:decode210
Unexecuted instantiation: mjpegdec.c:decode210
Unexecuted instantiation: mjpegdec_common.c:decode210
Unexecuted instantiation: jpeglsdec.c:decode210
Unexecuted instantiation: jvdec.c:decode210
Unexecuted instantiation: rdt.c:decode210
Unexecuted instantiation: rtpdec_h261.c:decode210
Unexecuted instantiation: rtpdec_h263_rfc2190.c:decode210
Unexecuted instantiation: rtpdec_latm.c:decode210
Unexecuted instantiation: rtpdec_mpeg4.c:decode210
Unexecuted instantiation: rtpdec_qt.c:decode210
Unexecuted instantiation: h264_cavlc.c:decode210
Unexecuted instantiation: h264_direct.c:decode210
Unexecuted instantiation: h264_mb.c:decode210
Unexecuted instantiation: h264_picture.c:decode210
Unexecuted instantiation: h264_refs.c:decode210
Unexecuted instantiation: h264_slice.c:decode210
Unexecuted instantiation: h264_cabac.c:decode210
Unexecuted instantiation: h264_loopfilter.c:decode210
Unexecuted instantiation: alsdec.c:decode210
Unexecuted instantiation: bgmc.c:decode210
Unexecuted instantiation: mlz.c:decode210
Unexecuted instantiation: bonk.c:decode210
Unexecuted instantiation: mxpegdec.c:decode210
Unexecuted instantiation: rv30.c:decode210
Unexecuted instantiation: rv34.c:decode210
Unexecuted instantiation: indeo3.c:decode210
eamad.c:decode210
Line
Count
Source
681
1.05M
{
682
1.05M
    if (get_bits1(gb))
683
473k
        return 0;
684
578k
    else
685
578k
        return 2 - get_bits1(gb);
686
1.05M
}
Unexecuted instantiation: mpeg12.c:decode210
Unexecuted instantiation: g726.c:decode210
Unexecuted instantiation: vc1dec.c:decode210
vc1_block.c:decode210
Line
Count
Source
681
1.97M
{
682
1.97M
    if (get_bits1(gb))
683
578k
        return 0;
684
1.39M
    else
685
1.39M
        return 2 - get_bits1(gb);
686
1.97M
}
Unexecuted instantiation: vc1_loopfilter.c:decode210
Unexecuted instantiation: vc1_mc.c:decode210
Unexecuted instantiation: vc1_pred.c:decode210
Unexecuted instantiation: mpegaudiodec_float.c:decode210
Unexecuted instantiation: huffyuvdec.c:decode210
Unexecuted instantiation: speexdec.c:decode210
Unexecuted instantiation: atrac3plusdec.c:decode210
Unexecuted instantiation: atrac3plusdsp.c:decode210
Unexecuted instantiation: atrac3plus.c:decode210
Unexecuted instantiation: mss4.c:decode210
Unexecuted instantiation: tiff.c:decode210
Unexecuted instantiation: faxcompr.c:decode210
Unexecuted instantiation: ac3dec_float.c:decode210
Unexecuted instantiation: on2avc.c:decode210
Unexecuted instantiation: smacker.c:decode210
Unexecuted instantiation: dvbsubdec.c:decode210
Unexecuted instantiation: mss1.c:decode210
Unexecuted instantiation: mss12.c:decode210
Unexecuted instantiation: mss2.c:decode210
Unexecuted instantiation: mdec.c:decode210
Unexecuted instantiation: osq.c:decode210
Unexecuted instantiation: vp6.c:decode210
Unexecuted instantiation: vp56.c:decode210
Unexecuted instantiation: vp56data.c:decode210
Unexecuted instantiation: loco.c:decode210
Unexecuted instantiation: vp5.c:decode210
Unexecuted instantiation: ra144dec.c:decode210
Unexecuted instantiation: indeo5.c:decode210
Unexecuted instantiation: ivi.c:decode210
Unexecuted instantiation: ivi_dsp.c:decode210
Unexecuted instantiation: apac.c:decode210
Unexecuted instantiation: clearvideo.c:decode210
Unexecuted instantiation: dxtory.c:decode210
Unexecuted instantiation: mpegaudiodec_fixed.c:decode210
Unexecuted instantiation: ralf.c:decode210
Unexecuted instantiation: pixlet.c:decode210
Unexecuted instantiation: wnv1.c:decode210
Unexecuted instantiation: qoadec.c:decode210
Unexecuted instantiation: vima.c:decode210
Unexecuted instantiation: leaddec.c:decode210
Unexecuted instantiation: eatqi.c:decode210
Unexecuted instantiation: lagarith.c:decode210
Unexecuted instantiation: lagarithrac.c:decode210
Unexecuted instantiation: dss_sp.c:decode210
Unexecuted instantiation: siren.c:decode210
Unexecuted instantiation: cavsdec.c:decode210
Unexecuted instantiation: cavs.c:decode210
Unexecuted instantiation: cavsdata.c:decode210
Unexecuted instantiation: hcom.c:decode210
Unexecuted instantiation: vp3.c:decode210
Unexecuted instantiation: webp.c:decode210
Unexecuted instantiation: eatgv.c:decode210
Unexecuted instantiation: eatgq.c:decode210
Unexecuted instantiation: sga.c:decode210
Unexecuted instantiation: binkaudio.c:decode210
Unexecuted instantiation: mpeg12dec.c:decode210
Unexecuted instantiation: indeo2.c:decode210
Unexecuted instantiation: 4xm.c:decode210
Unexecuted instantiation: wmalosslessdec.c:decode210
Unexecuted instantiation: ilbcdec.c:decode210
Unexecuted instantiation: hevcdec.c:decode210
Unexecuted instantiation: mvs.c:decode210
Unexecuted instantiation: pred.c:decode210
Unexecuted instantiation: refs.c:decode210
Unexecuted instantiation: cabac.c:decode210
Unexecuted instantiation: dsp.c:decode210
Unexecuted instantiation: filter.c:decode210
Unexecuted instantiation: tscc2.c:decode210
Unexecuted instantiation: hqx.c:decode210
Unexecuted instantiation: mobiclip.c:decode210
Unexecuted instantiation: wmaprodec.c:decode210
Unexecuted instantiation: g729dec.c:decode210
Unexecuted instantiation: sipr.c:decode210
Unexecuted instantiation: g722dec.c:decode210
Unexecuted instantiation: nellymoserdec.c:decode210
Unexecuted instantiation: dcaenc.c:decode210
Unexecuted instantiation: dcaadpcm.c:decode210
Unexecuted instantiation: dcadata.c:decode210
Unexecuted instantiation: interplayvideo.c:decode210
Unexecuted instantiation: dec.c:decode210
Unexecuted instantiation: dec_celt.c:decode210
Unexecuted instantiation: silk.c:decode210
Unexecuted instantiation: mjpegbdec.c:decode210
Unexecuted instantiation: bink.c:decode210
Unexecuted instantiation: dvdsubdec.c:decode210
Unexecuted instantiation: rtjpeg.c:decode210
Unexecuted instantiation: truespeech.c:decode210
Unexecuted instantiation: metasound.c:decode210
Unexecuted instantiation: escape124.c:decode210
Unexecuted instantiation: cllc.c:decode210
Unexecuted instantiation: dvdec.c:decode210
Unexecuted instantiation: tta.c:decode210
Unexecuted instantiation: fraps.c:decode210
Unexecuted instantiation: motionpixels.c:decode210
Unexecuted instantiation: vp9.c:decode210
Unexecuted instantiation: vp9block.c:decode210
Unexecuted instantiation: vp9data.c:decode210
Unexecuted instantiation: vp9lpf.c:decode210
Unexecuted instantiation: vp9mvs.c:decode210
Unexecuted instantiation: vp9prob.c:decode210
Unexecuted instantiation: vp9recon.c:decode210
Unexecuted instantiation: ffv1dec.c:decode210
Unexecuted instantiation: intra_utils.c:decode210
Unexecuted instantiation: thread.c:decode210
Unexecuted instantiation: ctu.c:decode210
Unexecuted instantiation: inter.c:decode210
Unexecuted instantiation: intra.c:decode210
Unexecuted instantiation: wmavoice.c:decode210
Unexecuted instantiation: rawdec.c:decode210
Unexecuted instantiation: svq1dec.c:decode210
Unexecuted instantiation: mpc7.c:decode210
Unexecuted instantiation: truemotion2rt.c:decode210
Unexecuted instantiation: adxdec.c:decode210
Unexecuted instantiation: rv40.c:decode210
Unexecuted instantiation: xsubdec.c:decode210
Unexecuted instantiation: notchlc.c:decode210
Unexecuted instantiation: aic.c:decode210
Unexecuted instantiation: vqcdec.c:decode210
Unexecuted instantiation: dolby_e.c:decode210
Unexecuted instantiation: proresdec.c:decode210
Unexecuted instantiation: evrcdec.c:decode210
Unexecuted instantiation: dnxhddec.c:decode210
Unexecuted instantiation: dcadec.c:decode210
Unexecuted instantiation: dca_core.c:decode210
Unexecuted instantiation: dca_lbr.c:decode210
Unexecuted instantiation: dca_xll.c:decode210
Unexecuted instantiation: mlpenc.c:decode210
Unexecuted instantiation: atrac3.c:decode210
Unexecuted instantiation: vorbisdec.c:decode210
Unexecuted instantiation: flashsv.c:decode210
Unexecuted instantiation: wavpack.c:decode210
Unexecuted instantiation: speedhqdec.c:decode210
Unexecuted instantiation: g723_1dec.c:decode210
Unexecuted instantiation: g2meet.c:decode210
Unexecuted instantiation: shorten.c:decode210
Unexecuted instantiation: indeo4.c:decode210
Unexecuted instantiation: sp5xdec.c:decode210
Unexecuted instantiation: atrac1.c:decode210
Unexecuted instantiation: apv_decode.c:decode210
Unexecuted instantiation: apv_entropy.c:decode210
Unexecuted instantiation: avs.c:decode210
Unexecuted instantiation: rv60dec.c:decode210
Unexecuted instantiation: alac.c:decode210
Unexecuted instantiation: tiertexseqv.c:decode210
Unexecuted instantiation: ffv1enc.c:decode210
Unexecuted instantiation: hcadec.c:decode210
Unexecuted instantiation: pcx.c:decode210
Unexecuted instantiation: qcelpdec.c:decode210
Unexecuted instantiation: flacdec.c:decode210
Unexecuted instantiation: ac3dec_fixed.c:decode210
Unexecuted instantiation: midivid.c:decode210
Unexecuted instantiation: mimic.c:decode210
Unexecuted instantiation: fic.c:decode210
Unexecuted instantiation: qdmc.c:decode210
Unexecuted instantiation: ra288.c:decode210
Unexecuted instantiation: interplayacm.c:decode210
Unexecuted instantiation: ylc.c:decode210
Unexecuted instantiation: ftr.c:decode210
Unexecuted instantiation: agm.c:decode210
Unexecuted instantiation: xan.c:decode210
Unexecuted instantiation: svq3.c:decode210
Unexecuted instantiation: cri.c:decode210
Unexecuted instantiation: qdm2.c:decode210
Unexecuted instantiation: cljrdec.c:decode210
Unexecuted instantiation: g728dec.c:decode210
Unexecuted instantiation: cook.c:decode210
Unexecuted instantiation: twinvqdec.c:decode210
Unexecuted instantiation: hq_hqa.c:decode210
Unexecuted instantiation: cdxl.c:decode210
Unexecuted instantiation: vble.c:decode210
Unexecuted instantiation: mv30.c:decode210
Unexecuted instantiation: apedec.c:decode210
Unexecuted instantiation: h261dec.c:decode210
Unexecuted instantiation: dstdec.c:decode210
Unexecuted instantiation: jpeglsenc.c:decode210
Unexecuted instantiation: truemotion2.c:decode210
687
688
static inline int get_bits_left(GetBitContext *gb)
689
6.68G
{
690
6.68G
    return gb->size_in_bits - get_bits_count(gb);
691
6.68G
}
Unexecuted instantiation: mpegvideo_motion.c:get_bits_left
wmv2dec.c:get_bits_left
Line
Count
Source
689
7.65M
{
690
7.65M
    return gb->size_in_bits - get_bits_count(gb);
691
7.65M
}
Unexecuted instantiation: aac_adtstoasc.c:get_bits_left
Unexecuted instantiation: dovi_rpu.c:get_bits_left
Unexecuted instantiation: dovi_split.c:get_bits_left
Unexecuted instantiation: dts2pts.c:get_bits_left
Unexecuted instantiation: eac3_core.c:get_bits_left
Unexecuted instantiation: evc_frame_merge.c:get_bits_left
Unexecuted instantiation: extract_extradata.c:get_bits_left
Unexecuted instantiation: h264_metadata.c:get_bits_left
Unexecuted instantiation: h264_redundant_pps.c:get_bits_left
Unexecuted instantiation: h265_metadata.c:get_bits_left
Unexecuted instantiation: h266_metadata.c:get_bits_left
Unexecuted instantiation: lcevc_merge.c:get_bits_left
Unexecuted instantiation: lcevc_metadata.c:get_bits_left
Unexecuted instantiation: remove_extradata.c:get_bits_left
Unexecuted instantiation: truehd_core.c:get_bits_left
Unexecuted instantiation: vp9_raw_reorder.c:get_bits_left
Unexecuted instantiation: vp9_superframe.c:get_bits_left
Unexecuted instantiation: vp9_superframe_split.c:get_bits_left
cbs.c:get_bits_left
Line
Count
Source
689
1.81G
{
690
1.81G
    return gb->size_in_bits - get_bits_count(gb);
691
1.81G
}
cbs_apv.c:get_bits_left
Line
Count
Source
689
32.6k
{
690
32.6k
    return gb->size_in_bits - get_bits_count(gb);
691
32.6k
}
cbs_av1.c:get_bits_left
Line
Count
Source
689
111M
{
690
111M
    return gb->size_in_bits - get_bits_count(gb);
691
111M
}
Unexecuted instantiation: cbs_h264.c:get_bits_left
cbs_h2645.c:get_bits_left
Line
Count
Source
689
920M
{
690
920M
    return gb->size_in_bits - get_bits_count(gb);
691
920M
}
Unexecuted instantiation: cbs_h265.c:get_bits_left
Unexecuted instantiation: cbs_h266.c:get_bits_left
cbs_lcevc.c:get_bits_left
Line
Count
Source
689
9.84M
{
690
9.84M
    return gb->size_in_bits - get_bits_count(gb);
691
9.84M
}
cbs_mpeg2.c:get_bits_left
Line
Count
Source
689
7.81M
{
690
7.81M
    return gb->size_in_bits - get_bits_count(gb);
691
7.81M
}
cbs_sei.c:get_bits_left
Line
Count
Source
689
52.5M
{
690
52.5M
    return gb->size_in_bits - get_bits_count(gb);
691
52.5M
}
cbs_vp8.c:get_bits_left
Line
Count
Source
689
21.5M
{
690
21.5M
    return gb->size_in_bits - get_bits_count(gb);
691
21.5M
}
cbs_vp9.c:get_bits_left
Line
Count
Source
689
2.09M
{
690
2.09M
    return gb->size_in_bits - get_bits_count(gb);
691
2.09M
}
dovi_rpudec.c:get_bits_left
Line
Count
Source
689
1.08k
{
690
1.08k
    return gb->size_in_bits - get_bits_count(gb);
691
1.08k
}
Unexecuted instantiation: evc_parse.c:get_bits_left
Unexecuted instantiation: evc_ps.c:get_bits_left
h263dec.c:get_bits_left
Line
Count
Source
689
635k
{
690
635k
    return gb->size_in_bits - get_bits_count(gb);
691
635k
}
Unexecuted instantiation: h2645_parse.c:get_bits_left
Unexecuted instantiation: h264_parse.c:get_bits_left
h264_ps.c:get_bits_left
Line
Count
Source
689
5.26M
{
690
5.26M
    return gb->size_in_bits - get_bits_count(gb);
691
5.26M
}
Unexecuted instantiation: h264data.c:get_bits_left
Unexecuted instantiation: h265_profile_level.c:get_bits_left
ps.c:get_bits_left
Line
Count
Source
689
38.2M
{
690
38.2M
    return gb->size_in_bits - get_bits_count(gb);
691
38.2M
}
intelh263dec.c:get_bits_left
Line
Count
Source
689
222k
{
690
222k
    return gb->size_in_bits - get_bits_count(gb);
691
222k
}
intrax8.c:get_bits_left
Line
Count
Source
689
244k
{
690
244k
    return gb->size_in_bits - get_bits_count(gb);
691
244k
}
ituh263dec.c:get_bits_left
Line
Count
Source
689
43.8M
{
690
43.8M
    return gb->size_in_bits - get_bits_count(gb);
691
43.8M
}
Unexecuted instantiation: mlp_parse.c:get_bits_left
mpeg4audio.c:get_bits_left
Line
Count
Source
689
130M
{
690
130M
    return gb->size_in_bits - get_bits_count(gb);
691
130M
}
mpeg4videodec.c:get_bits_left
Line
Count
Source
689
6.65M
{
690
6.65M
    return gb->size_in_bits - get_bits_count(gb);
691
6.65M
}
Unexecuted instantiation: mpeg_er.c:get_bits_left
Unexecuted instantiation: mpegvideo_dec.c:get_bits_left
msmpeg4dec.c:get_bits_left
Line
Count
Source
689
18.8M
{
690
18.8M
    return gb->size_in_bits - get_bits_count(gb);
691
18.8M
}
Unexecuted instantiation: rv10.c:get_bits_left
Unexecuted instantiation: ac3_parser.c:get_bits_left
Unexecuted instantiation: adts_header.c:get_bits_left
av1_parse.c:get_bits_left
Line
Count
Source
689
1.25M
{
690
1.25M
    return gb->size_in_bits - get_bits_count(gb);
691
1.25M
}
flvdec.c:get_bits_left
Line
Count
Source
689
90.7k
{
690
90.7k
    return gb->size_in_bits - get_bits_count(gb);
691
90.7k
}
Unexecuted instantiation: h2645_vui.c:get_bits_left
Unexecuted instantiation: vc1_parser.c:get_bits_left
vorbis_parser.c:get_bits_left
Line
Count
Source
689
2.33M
{
690
2.33M
    return gb->size_in_bits - get_bits_count(gb);
691
2.33M
}
Unexecuted instantiation: vp9_parser.c:get_bits_left
Unexecuted instantiation: vvc_parser.c:get_bits_left
Unexecuted instantiation: aac_ac3_parser.c:get_bits_left
Unexecuted instantiation: av1_parser.c:get_bits_left
Unexecuted instantiation: avs2_parser.c:get_bits_left
Unexecuted instantiation: avs3_parser.c:get_bits_left
Unexecuted instantiation: cavs_parser.c:get_bits_left
Unexecuted instantiation: dca_parser.c:get_bits_left
Unexecuted instantiation: dolby_e_parser.c:get_bits_left
Unexecuted instantiation: evc_parser.c:get_bits_left
Unexecuted instantiation: ffv1_parser.c:get_bits_left
Unexecuted instantiation: flac_parser.c:get_bits_left
Unexecuted instantiation: ftr_parser.c:get_bits_left
h264_parser.c:get_bits_left
Line
Count
Source
689
15.7M
{
690
15.7M
    return gb->size_in_bits - get_bits_count(gb);
691
15.7M
}
h264_sei.c:get_bits_left
Line
Count
Source
689
7.32M
{
690
7.32M
    return gb->size_in_bits - get_bits_count(gb);
691
7.32M
}
Unexecuted instantiation: h264idct.c:get_bits_left
Unexecuted instantiation: parser.c:get_bits_left
sei.c:get_bits_left
Line
Count
Source
689
2.21M
{
690
2.21M
    return gb->size_in_bits - get_bits_count(gb);
691
2.21M
}
jpegxl_parser.c:get_bits_left
Line
Count
Source
689
166M
{
690
166M
    return gb->size_in_bits - get_bits_count(gb);
691
166M
}
Unexecuted instantiation: jpegxs_parser.c:get_bits_left
Unexecuted instantiation: lcevc_parser.c:get_bits_left
Unexecuted instantiation: mlp_parser.c:get_bits_left
Unexecuted instantiation: mpeg4video_parser.c:get_bits_left
vc1.c:get_bits_left
Line
Count
Source
689
724k
{
690
724k
    return gb->size_in_bits - get_bits_count(gb);
691
724k
}
Unexecuted instantiation: vc1data.c:get_bits_left
Unexecuted instantiation: dca.c:get_bits_left
dca_exss.c:get_bits_left
Line
Count
Source
689
52.8k
{
690
52.8k
    return gb->size_in_bits - get_bits_count(gb);
691
52.8k
}
dolby_e_parse.c:get_bits_left
Line
Count
Source
689
195k
{
690
195k
    return gb->size_in_bits - get_bits_count(gb);
691
195k
}
Unexecuted instantiation: ffv1.c:get_bits_left
Unexecuted instantiation: ffv1_parse.c:get_bits_left
Unexecuted instantiation: flac.c:get_bits_left
Unexecuted instantiation: h2645_sei.c:get_bits_left
Unexecuted instantiation: parse.c:get_bits_left
jpegxl_parse.c:get_bits_left
Line
Count
Source
689
21.2M
{
690
21.2M
    return gb->size_in_bits - get_bits_count(gb);
691
21.2M
}
Unexecuted instantiation: aom_film_grain.c:get_bits_left
dynamic_hdr_vivid.c:get_bits_left
Line
Count
Source
689
646k
{
690
646k
    return gb->size_in_bits - get_bits_count(gb);
691
646k
}
hdr_dynamic_metadata.c:get_bits_left
Line
Count
Source
689
5.11M
{
690
5.11M
    return gb->size_in_bits - get_bits_count(gb);
691
5.11M
}
av1dec.c:get_bits_left
Line
Count
Source
689
3.16M
{
690
3.16M
    return gb->size_in_bits - get_bits_count(gb);
691
3.16M
}
Unexecuted instantiation: bit.c:get_bits_left
Unexecuted instantiation: dtsdec.c:get_bits_left
Unexecuted instantiation: dtshddec.c:get_bits_left
Unexecuted instantiation: h264dec.c:get_bits_left
Unexecuted instantiation: hls_sample_encryption.c:get_bits_left
Unexecuted instantiation: isom.c:get_bits_left
Unexecuted instantiation: matroskadec.c:get_bits_left
Unexecuted instantiation: mlpdec.c:get_bits_left
Unexecuted instantiation: mov.c:get_bits_left
mpc8.c:get_bits_left
Line
Count
Source
689
1.95M
{
690
1.95M
    return gb->size_in_bits - get_bits_count(gb);
691
1.95M
}
Unexecuted instantiation: mpegts.c:get_bits_left
Unexecuted instantiation: oggparsetheora.c:get_bits_left
Unexecuted instantiation: shortendec.c:get_bits_left
Unexecuted instantiation: swfdec.c:get_bits_left
Unexecuted instantiation: takdec.c:get_bits_left
iamf_parse.c:get_bits_left
Line
Count
Source
689
1.39M
{
690
1.39M
    return gb->size_in_bits - get_bits_count(gb);
691
1.39M
}
Unexecuted instantiation: dirac.c:get_bits_left
Unexecuted instantiation: atrac9dec.c:get_bits_left
Unexecuted instantiation: enc.c:get_bits_left
Unexecuted instantiation: enc_psy.c:get_bits_left
Unexecuted instantiation: pvq.c:get_bits_left
Unexecuted instantiation: rc.c:get_bits_left
Unexecuted instantiation: celt.c:get_bits_left
Unexecuted instantiation: gsmdec.c:get_bits_left
Unexecuted instantiation: msgsmdec.c:get_bits_left
Unexecuted instantiation: imc.c:get_bits_left
Unexecuted instantiation: adpcm.c:get_bits_left
Unexecuted instantiation: wmaenc.c:get_bits_left
Unexecuted instantiation: wma.c:get_bits_left
Unexecuted instantiation: cfhd.c:get_bits_left
wavarc.c:get_bits_left
Line
Count
Source
689
16.4M
{
690
16.4M
    return gb->size_in_bits - get_bits_count(gb);
691
16.4M
}
escape130.c:get_bits_left
Line
Count
Source
689
8.73M
{
690
8.73M
    return gb->size_in_bits - get_bits_count(gb);
691
8.73M
}
Unexecuted instantiation: asvdec.c:get_bits_left
diracdec.c:get_bits_left
Line
Count
Source
689
4.27M
{
690
4.27M
    return gb->size_in_bits - get_bits_count(gb);
691
4.27M
}
dirac_arith.c:get_bits_left
Line
Count
Source
689
345k
{
690
345k
    return gb->size_in_bits - get_bits_count(gb);
691
345k
}
wmadec.c:get_bits_left
Line
Count
Source
689
412k
{
690
412k
    return gb->size_in_bits - get_bits_count(gb);
691
412k
}
Unexecuted instantiation: aacenc.c:get_bits_left
imm4.c:get_bits_left
Line
Count
Source
689
108k
{
690
108k
    return gb->size_in_bits - get_bits_count(gb);
691
108k
}
exr.c:get_bits_left
Line
Count
Source
689
74.2M
{
690
74.2M
    return gb->size_in_bits - get_bits_count(gb);
691
74.2M
}
aacdec.c:get_bits_left
Line
Count
Source
689
6.32M
{
690
6.32M
    return gb->size_in_bits - get_bits_count(gb);
691
6.32M
}
Unexecuted instantiation: aacdec_fixed.c:get_bits_left
Unexecuted instantiation: aacdec_float.c:get_bits_left
Unexecuted instantiation: aacdec_tab.c:get_bits_left
Unexecuted instantiation: aacdec_usac.c:get_bits_left
Unexecuted instantiation: aacdec_usac_mps212.c:get_bits_left
Unexecuted instantiation: aacps_common.c:get_bits_left
Unexecuted instantiation: aacsbr.c:get_bits_left
Unexecuted instantiation: aacsbr_fixed.c:get_bits_left
Unexecuted instantiation: aacdec_ac.c:get_bits_left
Unexecuted instantiation: aacdec_lpd.c:get_bits_left
Unexecuted instantiation: aacps_fixed.c:get_bits_left
Unexecuted instantiation: aacps_float.c:get_bits_left
mjpegdec.c:get_bits_left
Line
Count
Source
689
189M
{
690
189M
    return gb->size_in_bits - get_bits_count(gb);
691
189M
}
Unexecuted instantiation: mjpegdec_common.c:get_bits_left
jpeglsdec.c:get_bits_left
Line
Count
Source
689
46.6M
{
690
46.6M
    return gb->size_in_bits - get_bits_count(gb);
691
46.6M
}
Unexecuted instantiation: jvdec.c:get_bits_left
Unexecuted instantiation: rdt.c:get_bits_left
Unexecuted instantiation: rtpdec_h261.c:get_bits_left
Unexecuted instantiation: rtpdec_h263_rfc2190.c:get_bits_left
Unexecuted instantiation: rtpdec_latm.c:get_bits_left
Unexecuted instantiation: rtpdec_mpeg4.c:get_bits_left
Unexecuted instantiation: rtpdec_qt.c:get_bits_left
h264_cavlc.c:get_bits_left
Line
Count
Source
689
5.14k
{
690
5.14k
    return gb->size_in_bits - get_bits_count(gb);
691
5.14k
}
Unexecuted instantiation: h264_direct.c:get_bits_left
Unexecuted instantiation: h264_mb.c:get_bits_left
Unexecuted instantiation: h264_picture.c:get_bits_left
Unexecuted instantiation: h264_refs.c:get_bits_left
h264_slice.c:get_bits_left
Line
Count
Source
689
7.23M
{
690
7.23M
    return gb->size_in_bits - get_bits_count(gb);
691
7.23M
}
Unexecuted instantiation: h264_cabac.c:get_bits_left
Unexecuted instantiation: h264_loopfilter.c:get_bits_left
alsdec.c:get_bits_left
Line
Count
Source
689
64.0M
{
690
64.0M
    return gb->size_in_bits - get_bits_count(gb);
691
64.0M
}
bgmc.c:get_bits_left
Line
Count
Source
689
29.6k
{
690
29.6k
    return gb->size_in_bits - get_bits_count(gb);
691
29.6k
}
Unexecuted instantiation: mlz.c:get_bits_left
bonk.c:get_bits_left
Line
Count
Source
689
1.38M
{
690
1.38M
    return gb->size_in_bits - get_bits_count(gb);
691
1.38M
}
Unexecuted instantiation: mxpegdec.c:get_bits_left
Unexecuted instantiation: rv30.c:get_bits_left
rv34.c:get_bits_left
Line
Count
Source
689
7.69M
{
690
7.69M
    return gb->size_in_bits - get_bits_count(gb);
691
7.69M
}
indeo3.c:get_bits_left
Line
Count
Source
689
89.0k
{
690
89.0k
    return gb->size_in_bits - get_bits_count(gb);
691
89.0k
}
Unexecuted instantiation: eamad.c:get_bits_left
Unexecuted instantiation: mpeg12.c:get_bits_left
g726.c:get_bits_left
Line
Count
Source
689
273k
{
690
273k
    return gb->size_in_bits - get_bits_count(gb);
691
273k
}
Unexecuted instantiation: vc1dec.c:get_bits_left
vc1_block.c:get_bits_left
Line
Count
Source
689
291M
{
690
291M
    return gb->size_in_bits - get_bits_count(gb);
691
291M
}
Unexecuted instantiation: vc1_loopfilter.c:get_bits_left
Unexecuted instantiation: vc1_mc.c:get_bits_left
Unexecuted instantiation: vc1_pred.c:get_bits_left
mpegaudiodec_float.c:get_bits_left
Line
Count
Source
689
3.68M
{
690
3.68M
    return gb->size_in_bits - get_bits_count(gb);
691
3.68M
}
huffyuvdec.c:get_bits_left
Line
Count
Source
689
20.2M
{
690
20.2M
    return gb->size_in_bits - get_bits_count(gb);
691
20.2M
}
speexdec.c:get_bits_left
Line
Count
Source
689
4.40M
{
690
4.40M
    return gb->size_in_bits - get_bits_count(gb);
691
4.40M
}
atrac3plusdec.c:get_bits_left
Line
Count
Source
689
2.37M
{
690
2.37M
    return gb->size_in_bits - get_bits_count(gb);
691
2.37M
}
Unexecuted instantiation: atrac3plusdsp.c:get_bits_left
Unexecuted instantiation: atrac3plus.c:get_bits_left
Unexecuted instantiation: mss4.c:get_bits_left
Unexecuted instantiation: tiff.c:get_bits_left
faxcompr.c:get_bits_left
Line
Count
Source
689
9.35M
{
690
9.35M
    return gb->size_in_bits - get_bits_count(gb);
691
9.35M
}
Unexecuted instantiation: ac3dec_float.c:get_bits_left
Unexecuted instantiation: on2avc.c:get_bits_left
smacker.c:get_bits_left
Line
Count
Source
689
712M
{
690
712M
    return gb->size_in_bits - get_bits_count(gb);
691
712M
}
Unexecuted instantiation: dvbsubdec.c:get_bits_left
mss1.c:get_bits_left
Line
Count
Source
689
164M
{
690
164M
    return gb->size_in_bits - get_bits_count(gb);
691
164M
}
Unexecuted instantiation: mss12.c:get_bits_left
Unexecuted instantiation: mss2.c:get_bits_left
mdec.c:get_bits_left
Line
Count
Source
689
6.99M
{
690
6.99M
    return gb->size_in_bits - get_bits_count(gb);
691
6.99M
}
osq.c:get_bits_left
Line
Count
Source
689
7.65M
{
690
7.65M
    return gb->size_in_bits - get_bits_count(gb);
691
7.65M
}
vp6.c:get_bits_left
Line
Count
Source
689
35.4M
{
690
35.4M
    return gb->size_in_bits - get_bits_count(gb);
691
35.4M
}
Unexecuted instantiation: vp56.c:get_bits_left
Unexecuted instantiation: vp56data.c:get_bits_left
loco.c:get_bits_left
Line
Count
Source
689
3.32M
{
690
3.32M
    return gb->size_in_bits - get_bits_count(gb);
691
3.32M
}
Unexecuted instantiation: vp5.c:get_bits_left
Unexecuted instantiation: ra144dec.c:get_bits_left
indeo5.c:get_bits_left
Line
Count
Source
689
1.47M
{
690
1.47M
    return gb->size_in_bits - get_bits_count(gb);
691
1.47M
}
ivi.c:get_bits_left
Line
Count
Source
689
3.30M
{
690
3.30M
    return gb->size_in_bits - get_bits_count(gb);
691
3.30M
}
Unexecuted instantiation: ivi_dsp.c:get_bits_left
apac.c:get_bits_left
Line
Count
Source
689
350M
{
690
350M
    return gb->size_in_bits - get_bits_count(gb);
691
350M
}
clearvideo.c:get_bits_left
Line
Count
Source
689
3.72M
{
690
3.72M
    return gb->size_in_bits - get_bits_count(gb);
691
3.72M
}
dxtory.c:get_bits_left
Line
Count
Source
689
3.72M
{
690
3.72M
    return gb->size_in_bits - get_bits_count(gb);
691
3.72M
}
mpegaudiodec_fixed.c:get_bits_left
Line
Count
Source
689
3.24M
{
690
3.24M
    return gb->size_in_bits - get_bits_count(gb);
691
3.24M
}
ralf.c:get_bits_left
Line
Count
Source
689
1.05M
{
690
1.05M
    return gb->size_in_bits - get_bits_count(gb);
691
1.05M
}
Unexecuted instantiation: pixlet.c:get_bits_left
Unexecuted instantiation: wnv1.c:get_bits_left
Unexecuted instantiation: qoadec.c:get_bits_left
Unexecuted instantiation: vima.c:get_bits_left
leaddec.c:get_bits_left
Line
Count
Source
689
1.42M
{
690
1.42M
    return gb->size_in_bits - get_bits_count(gb);
691
1.42M
}
Unexecuted instantiation: eatqi.c:get_bits_left
Unexecuted instantiation: lagarith.c:get_bits_left
lagarithrac.c:get_bits_left
Line
Count
Source
689
7.41k
{
690
7.41k
    return gb->size_in_bits - get_bits_count(gb);
691
7.41k
}
Unexecuted instantiation: dss_sp.c:get_bits_left
siren.c:get_bits_left
Line
Count
Source
689
59.8M
{
690
59.8M
    return gb->size_in_bits - get_bits_count(gb);
691
59.8M
}
cavsdec.c:get_bits_left
Line
Count
Source
689
2.36M
{
690
2.36M
    return gb->size_in_bits - get_bits_count(gb);
691
2.36M
}
Unexecuted instantiation: cavs.c:get_bits_left
Unexecuted instantiation: cavsdata.c:get_bits_left
hcom.c:get_bits_left
Line
Count
Source
689
23.0M
{
690
23.0M
    return gb->size_in_bits - get_bits_count(gb);
691
23.0M
}
vp3.c:get_bits_left
Line
Count
Source
689
247M
{
690
247M
    return gb->size_in_bits - get_bits_count(gb);
691
247M
}
webp.c:get_bits_left
Line
Count
Source
689
411M
{
690
411M
    return gb->size_in_bits - get_bits_count(gb);
691
411M
}
eatgv.c:get_bits_left
Line
Count
Source
689
3.32k
{
690
3.32k
    return gb->size_in_bits - get_bits_count(gb);
691
3.32k
}
Unexecuted instantiation: eatgq.c:get_bits_left
Unexecuted instantiation: sga.c:get_bits_left
binkaudio.c:get_bits_left
Line
Count
Source
689
2.78M
{
690
2.78M
    return gb->size_in_bits - get_bits_count(gb);
691
2.78M
}
mpeg12dec.c:get_bits_left
Line
Count
Source
689
4.46M
{
690
4.46M
    return gb->size_in_bits - get_bits_count(gb);
691
4.46M
}
indeo2.c:get_bits_left
Line
Count
Source
689
10.1M
{
690
10.1M
    return gb->size_in_bits - get_bits_count(gb);
691
10.1M
}
4xm.c:get_bits_left
Line
Count
Source
689
613k
{
690
613k
    return gb->size_in_bits - get_bits_count(gb);
691
613k
}
wmalosslessdec.c:get_bits_left
Line
Count
Source
689
28.2M
{
690
28.2M
    return gb->size_in_bits - get_bits_count(gb);
691
28.2M
}
Unexecuted instantiation: ilbcdec.c:get_bits_left
hevcdec.c:get_bits_left
Line
Count
Source
689
637k
{
690
637k
    return gb->size_in_bits - get_bits_count(gb);
691
637k
}
Unexecuted instantiation: mvs.c:get_bits_left
Unexecuted instantiation: pred.c:get_bits_left
Unexecuted instantiation: refs.c:get_bits_left
Unexecuted instantiation: cabac.c:get_bits_left
Unexecuted instantiation: dsp.c:get_bits_left
Unexecuted instantiation: filter.c:get_bits_left
tscc2.c:get_bits_left
Line
Count
Source
689
1.10k
{
690
1.10k
    return gb->size_in_bits - get_bits_count(gb);
691
1.10k
}
Unexecuted instantiation: hqx.c:get_bits_left
mobiclip.c:get_bits_left
Line
Count
Source
689
2.37M
{
690
2.37M
    return gb->size_in_bits - get_bits_count(gb);
691
2.37M
}
wmaprodec.c:get_bits_left
Line
Count
Source
689
1.15M
{
690
1.15M
    return gb->size_in_bits - get_bits_count(gb);
691
1.15M
}
Unexecuted instantiation: g729dec.c:get_bits_left
Unexecuted instantiation: sipr.c:get_bits_left
Unexecuted instantiation: g722dec.c:get_bits_left
Unexecuted instantiation: nellymoserdec.c:get_bits_left
Unexecuted instantiation: dcaenc.c:get_bits_left
Unexecuted instantiation: dcaadpcm.c:get_bits_left
Unexecuted instantiation: dcadata.c:get_bits_left
interplayvideo.c:get_bits_left
Line
Count
Source
689
379k
{
690
379k
    return gb->size_in_bits - get_bits_count(gb);
691
379k
}
Unexecuted instantiation: dec.c:get_bits_left
Unexecuted instantiation: dec_celt.c:get_bits_left
Unexecuted instantiation: silk.c:get_bits_left
Unexecuted instantiation: mjpegbdec.c:get_bits_left
bink.c:get_bits_left
Line
Count
Source
689
30.1M
{
690
30.1M
    return gb->size_in_bits - get_bits_count(gb);
691
30.1M
}
Unexecuted instantiation: dvdsubdec.c:get_bits_left
rtjpeg.c:get_bits_left
Line
Count
Source
689
38.6M
{
690
38.6M
    return gb->size_in_bits - get_bits_count(gb);
691
38.6M
}
Unexecuted instantiation: truespeech.c:get_bits_left
Unexecuted instantiation: metasound.c:get_bits_left
escape124.c:get_bits_left
Line
Count
Source
689
10.7M
{
690
10.7M
    return gb->size_in_bits - get_bits_count(gb);
691
10.7M
}
cllc.c:get_bits_left
Line
Count
Source
689
195k
{
690
195k
    return gb->size_in_bits - get_bits_count(gb);
691
195k
}
dvdec.c:get_bits_left
Line
Count
Source
689
41.2M
{
690
41.2M
    return gb->size_in_bits - get_bits_count(gb);
691
41.2M
}
tta.c:get_bits_left
Line
Count
Source
689
130M
{
690
130M
    return gb->size_in_bits - get_bits_count(gb);
691
130M
}
fraps.c:get_bits_left
Line
Count
Source
689
567k
{
690
567k
    return gb->size_in_bits - get_bits_count(gb);
691
567k
}
Unexecuted instantiation: motionpixels.c:get_bits_left
Unexecuted instantiation: vp9.c:get_bits_left
Unexecuted instantiation: vp9block.c:get_bits_left
Unexecuted instantiation: vp9data.c:get_bits_left
Unexecuted instantiation: vp9lpf.c:get_bits_left
Unexecuted instantiation: vp9mvs.c:get_bits_left
Unexecuted instantiation: vp9prob.c:get_bits_left
Unexecuted instantiation: vp9recon.c:get_bits_left
ffv1dec.c:get_bits_left
Line
Count
Source
689
10.5M
{
690
10.5M
    return gb->size_in_bits - get_bits_count(gb);
691
10.5M
}
Unexecuted instantiation: intra_utils.c:get_bits_left
Unexecuted instantiation: thread.c:get_bits_left
Unexecuted instantiation: ctu.c:get_bits_left
Unexecuted instantiation: inter.c:get_bits_left
Unexecuted instantiation: intra.c:get_bits_left
wmavoice.c:get_bits_left
Line
Count
Source
689
3.24M
{
690
3.24M
    return gb->size_in_bits - get_bits_count(gb);
691
3.24M
}
Unexecuted instantiation: rawdec.c:get_bits_left
svq1dec.c:get_bits_left
Line
Count
Source
689
151k
{
690
151k
    return gb->size_in_bits - get_bits_count(gb);
691
151k
}
Unexecuted instantiation: mpc7.c:get_bits_left
Unexecuted instantiation: truemotion2rt.c:get_bits_left
Unexecuted instantiation: adxdec.c:get_bits_left
rv40.c:get_bits_left
Line
Count
Source
689
966k
{
690
966k
    return gb->size_in_bits - get_bits_count(gb);
691
966k
}
Unexecuted instantiation: xsubdec.c:get_bits_left
Unexecuted instantiation: notchlc.c:get_bits_left
aic.c:get_bits_left
Line
Count
Source
689
456k
{
690
456k
    return gb->size_in_bits - get_bits_count(gb);
691
456k
}
vqcdec.c:get_bits_left
Line
Count
Source
689
16.6M
{
690
16.6M
    return gb->size_in_bits - get_bits_count(gb);
691
16.6M
}
dolby_e.c:get_bits_left
Line
Count
Source
689
9.65k
{
690
9.65k
    return gb->size_in_bits - get_bits_count(gb);
691
9.65k
}
proresdec.c:get_bits_left
Line
Count
Source
689
880k
{
690
880k
    return gb->size_in_bits - get_bits_count(gb);
691
880k
}
Unexecuted instantiation: evrcdec.c:get_bits_left
Unexecuted instantiation: dnxhddec.c:get_bits_left
Unexecuted instantiation: dcadec.c:get_bits_left
dca_core.c:get_bits_left
Line
Count
Source
689
940k
{
690
940k
    return gb->size_in_bits - get_bits_count(gb);
691
940k
}
dca_lbr.c:get_bits_left
Line
Count
Source
689
5.14M
{
690
5.14M
    return gb->size_in_bits - get_bits_count(gb);
691
5.14M
}
dca_xll.c:get_bits_left
Line
Count
Source
689
4.97M
{
690
4.97M
    return gb->size_in_bits - get_bits_count(gb);
691
4.97M
}
Unexecuted instantiation: mlpenc.c:get_bits_left
atrac3.c:get_bits_left
Line
Count
Source
689
6.15M
{
690
6.15M
    return gb->size_in_bits - get_bits_count(gb);
691
6.15M
}
Unexecuted instantiation: vorbisdec.c:get_bits_left
flashsv.c:get_bits_left
Line
Count
Source
689
869k
{
690
869k
    return gb->size_in_bits - get_bits_count(gb);
691
869k
}
wavpack.c:get_bits_left
Line
Count
Source
689
10.9M
{
690
10.9M
    return gb->size_in_bits - get_bits_count(gb);
691
10.9M
}
Unexecuted instantiation: speedhqdec.c:get_bits_left
Unexecuted instantiation: g723_1dec.c:get_bits_left
g2meet.c:get_bits_left
Line
Count
Source
689
50.3k
{
690
50.3k
    return gb->size_in_bits - get_bits_count(gb);
691
50.3k
}
shorten.c:get_bits_left
Line
Count
Source
689
49.5k
{
690
49.5k
    return gb->size_in_bits - get_bits_count(gb);
691
49.5k
}
indeo4.c:get_bits_left
Line
Count
Source
689
3.15M
{
690
3.15M
    return gb->size_in_bits - get_bits_count(gb);
691
3.15M
}
Unexecuted instantiation: sp5xdec.c:get_bits_left
Unexecuted instantiation: atrac1.c:get_bits_left
Unexecuted instantiation: apv_decode.c:get_bits_left
Unexecuted instantiation: apv_entropy.c:get_bits_left
Unexecuted instantiation: avs.c:get_bits_left
Unexecuted instantiation: rv60dec.c:get_bits_left
alac.c:get_bits_left
Line
Count
Source
689
22.2M
{
690
22.2M
    return gb->size_in_bits - get_bits_count(gb);
691
22.2M
}
tiertexseqv.c:get_bits_left
Line
Count
Source
689
53.4k
{
690
53.4k
    return gb->size_in_bits - get_bits_count(gb);
691
53.4k
}
Unexecuted instantiation: ffv1enc.c:get_bits_left
Unexecuted instantiation: hcadec.c:get_bits_left
Unexecuted instantiation: pcx.c:get_bits_left
Unexecuted instantiation: qcelpdec.c:get_bits_left
flacdec.c:get_bits_left
Line
Count
Source
689
548k
{
690
548k
    return gb->size_in_bits - get_bits_count(gb);
691
548k
}
Unexecuted instantiation: ac3dec_fixed.c:get_bits_left
Unexecuted instantiation: midivid.c:get_bits_left
Unexecuted instantiation: mimic.c:get_bits_left
fic.c:get_bits_left
Line
Count
Source
689
3.22M
{
690
3.22M
    return gb->size_in_bits - get_bits_count(gb);
691
3.22M
}
qdmc.c:get_bits_left
Line
Count
Source
689
7.63M
{
690
7.63M
    return gb->size_in_bits - get_bits_count(gb);
691
7.63M
}
Unexecuted instantiation: ra288.c:get_bits_left
interplayacm.c:get_bits_left
Line
Count
Source
689
109k
{
690
109k
    return gb->size_in_bits - get_bits_count(gb);
691
109k
}
ylc.c:get_bits_left
Line
Count
Source
689
19.5M
{
690
19.5M
    return gb->size_in_bits - get_bits_count(gb);
691
19.5M
}
Unexecuted instantiation: ftr.c:get_bits_left
agm.c:get_bits_left
Line
Count
Source
689
14.6M
{
690
14.6M
    return gb->size_in_bits - get_bits_count(gb);
691
14.6M
}
xan.c:get_bits_left
Line
Count
Source
689
4.09M
{
690
4.09M
    return gb->size_in_bits - get_bits_count(gb);
691
4.09M
}
svq3.c:get_bits_left
Line
Count
Source
689
2.62M
{
690
2.62M
    return gb->size_in_bits - get_bits_count(gb);
691
2.62M
}
cri.c:get_bits_left
Line
Count
Source
689
194k
{
690
194k
    return gb->size_in_bits - get_bits_count(gb);
691
194k
}
qdm2.c:get_bits_left
Line
Count
Source
689
7.40M
{
690
7.40M
    return gb->size_in_bits - get_bits_count(gb);
691
7.40M
}
Unexecuted instantiation: cljrdec.c:get_bits_left
Unexecuted instantiation: g728dec.c:get_bits_left
cook.c:get_bits_left
Line
Count
Source
689
252k
{
690
252k
    return gb->size_in_bits - get_bits_count(gb);
691
252k
}
Unexecuted instantiation: twinvqdec.c:get_bits_left
hq_hqa.c:get_bits_left
Line
Count
Source
689
27.0k
{
690
27.0k
    return gb->size_in_bits - get_bits_count(gb);
691
27.0k
}
Unexecuted instantiation: cdxl.c:get_bits_left
vble.c:get_bits_left
Line
Count
Source
689
110k
{
690
110k
    return gb->size_in_bits - get_bits_count(gb);
691
110k
}
mv30.c:get_bits_left
Line
Count
Source
689
910k
{
690
910k
    return gb->size_in_bits - get_bits_count(gb);
691
910k
}
apedec.c:get_bits_left
Line
Count
Source
689
2.64M
{
690
2.64M
    return gb->size_in_bits - get_bits_count(gb);
691
2.64M
}
h261dec.c:get_bits_left
Line
Count
Source
689
1.91M
{
690
1.91M
    return gb->size_in_bits - get_bits_count(gb);
691
1.91M
}
dstdec.c:get_bits_left
Line
Count
Source
689
309k
{
690
309k
    return gb->size_in_bits - get_bits_count(gb);
691
309k
}
Unexecuted instantiation: jpeglsenc.c:get_bits_left
truemotion2.c:get_bits_left
Line
Count
Source
689
3.06M
{
690
3.06M
    return gb->size_in_bits - get_bits_count(gb);
691
3.06M
}
692
693
static inline int skip_1stop_8data_bits(GetBitContext *gb)
694
2.03M
{
695
2.03M
    if (get_bits_left(gb) <= 0)
696
33.3k
        return AVERROR_INVALIDDATA;
697
698
3.54M
    while (get_bits1(gb)) {
699
1.55M
        skip_bits(gb, 8);
700
1.55M
        if (get_bits_left(gb) <= 0)
701
12.7k
            return AVERROR_INVALIDDATA;
702
1.55M
    }
703
704
1.98M
    return 0;
705
1.99M
}
Unexecuted instantiation: mpegvideo_motion.c:skip_1stop_8data_bits
Unexecuted instantiation: wmv2dec.c:skip_1stop_8data_bits
Unexecuted instantiation: aac_adtstoasc.c:skip_1stop_8data_bits
Unexecuted instantiation: dovi_rpu.c:skip_1stop_8data_bits
Unexecuted instantiation: dovi_split.c:skip_1stop_8data_bits
Unexecuted instantiation: dts2pts.c:skip_1stop_8data_bits
Unexecuted instantiation: eac3_core.c:skip_1stop_8data_bits
Unexecuted instantiation: evc_frame_merge.c:skip_1stop_8data_bits
Unexecuted instantiation: extract_extradata.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_metadata.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_redundant_pps.c:skip_1stop_8data_bits
Unexecuted instantiation: h265_metadata.c:skip_1stop_8data_bits
Unexecuted instantiation: h266_metadata.c:skip_1stop_8data_bits
Unexecuted instantiation: lcevc_merge.c:skip_1stop_8data_bits
Unexecuted instantiation: lcevc_metadata.c:skip_1stop_8data_bits
Unexecuted instantiation: remove_extradata.c:skip_1stop_8data_bits
Unexecuted instantiation: truehd_core.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9_raw_reorder.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9_superframe.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9_superframe_split.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_apv.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_av1.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_h264.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_h2645.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_h265.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_h266.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_lcevc.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_mpeg2.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_sei.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_vp8.c:skip_1stop_8data_bits
Unexecuted instantiation: cbs_vp9.c:skip_1stop_8data_bits
Unexecuted instantiation: dovi_rpudec.c:skip_1stop_8data_bits
Unexecuted instantiation: evc_parse.c:skip_1stop_8data_bits
Unexecuted instantiation: evc_ps.c:skip_1stop_8data_bits
Unexecuted instantiation: h263dec.c:skip_1stop_8data_bits
Unexecuted instantiation: h2645_parse.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_parse.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_ps.c:skip_1stop_8data_bits
Unexecuted instantiation: h264data.c:skip_1stop_8data_bits
Unexecuted instantiation: h265_profile_level.c:skip_1stop_8data_bits
Unexecuted instantiation: ps.c:skip_1stop_8data_bits
intelh263dec.c:skip_1stop_8data_bits
Line
Count
Source
694
35.3k
{
695
35.3k
    if (get_bits_left(gb) <= 0)
696
3.36k
        return AVERROR_INVALIDDATA;
697
698
37.8k
    while (get_bits1(gb)) {
699
6.63k
        skip_bits(gb, 8);
700
6.63k
        if (get_bits_left(gb) <= 0)
701
738
            return AVERROR_INVALIDDATA;
702
6.63k
    }
703
704
31.1k
    return 0;
705
31.9k
}
Unexecuted instantiation: intrax8.c:skip_1stop_8data_bits
ituh263dec.c:skip_1stop_8data_bits
Line
Count
Source
694
305k
{
695
305k
    if (get_bits_left(gb) <= 0)
696
769
        return AVERROR_INVALIDDATA;
697
698
745k
    while (get_bits1(gb)) {
699
444k
        skip_bits(gb, 8);
700
444k
        if (get_bits_left(gb) <= 0)
701
2.92k
            return AVERROR_INVALIDDATA;
702
444k
    }
703
704
301k
    return 0;
705
304k
}
Unexecuted instantiation: mlp_parse.c:skip_1stop_8data_bits
Unexecuted instantiation: mpeg4audio.c:skip_1stop_8data_bits
Unexecuted instantiation: mpeg4videodec.c:skip_1stop_8data_bits
Unexecuted instantiation: mpeg_er.c:skip_1stop_8data_bits
Unexecuted instantiation: mpegvideo_dec.c:skip_1stop_8data_bits
Unexecuted instantiation: msmpeg4dec.c:skip_1stop_8data_bits
Unexecuted instantiation: rv10.c:skip_1stop_8data_bits
Unexecuted instantiation: ac3_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: adts_header.c:skip_1stop_8data_bits
Unexecuted instantiation: av1_parse.c:skip_1stop_8data_bits
flvdec.c:skip_1stop_8data_bits
Line
Count
Source
694
77.7k
{
695
77.7k
    if (get_bits_left(gb) <= 0)
696
2.22k
        return AVERROR_INVALIDDATA;
697
698
88.1k
    while (get_bits1(gb)) {
699
12.9k
        skip_bits(gb, 8);
700
12.9k
        if (get_bits_left(gb) <= 0)
701
393
            return AVERROR_INVALIDDATA;
702
12.9k
    }
703
704
75.1k
    return 0;
705
75.5k
}
Unexecuted instantiation: h2645_vui.c:skip_1stop_8data_bits
Unexecuted instantiation: vc1_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: vorbis_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: vvc_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: aac_ac3_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: av1_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: avs2_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: avs3_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: cavs_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: dca_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: dolby_e_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: evc_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: ffv1_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: flac_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: ftr_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_sei.c:skip_1stop_8data_bits
Unexecuted instantiation: h264idct.c:skip_1stop_8data_bits
Unexecuted instantiation: parser.c:skip_1stop_8data_bits
Unexecuted instantiation: sei.c:skip_1stop_8data_bits
Unexecuted instantiation: jpegxl_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: jpegxs_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: lcevc_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: mlp_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: mpeg4video_parser.c:skip_1stop_8data_bits
Unexecuted instantiation: vc1.c:skip_1stop_8data_bits
Unexecuted instantiation: vc1data.c:skip_1stop_8data_bits
Unexecuted instantiation: dca.c:skip_1stop_8data_bits
Unexecuted instantiation: dca_exss.c:skip_1stop_8data_bits
Unexecuted instantiation: dolby_e_parse.c:skip_1stop_8data_bits
Unexecuted instantiation: ffv1.c:skip_1stop_8data_bits
Unexecuted instantiation: ffv1_parse.c:skip_1stop_8data_bits
Unexecuted instantiation: flac.c:skip_1stop_8data_bits
Unexecuted instantiation: h2645_sei.c:skip_1stop_8data_bits
Unexecuted instantiation: parse.c:skip_1stop_8data_bits
Unexecuted instantiation: jpegxl_parse.c:skip_1stop_8data_bits
Unexecuted instantiation: aom_film_grain.c:skip_1stop_8data_bits
Unexecuted instantiation: dynamic_hdr_vivid.c:skip_1stop_8data_bits
Unexecuted instantiation: hdr_dynamic_metadata.c:skip_1stop_8data_bits
Unexecuted instantiation: av1dec.c:skip_1stop_8data_bits
Unexecuted instantiation: bit.c:skip_1stop_8data_bits
Unexecuted instantiation: dtsdec.c:skip_1stop_8data_bits
Unexecuted instantiation: dtshddec.c:skip_1stop_8data_bits
Unexecuted instantiation: h264dec.c:skip_1stop_8data_bits
Unexecuted instantiation: hls_sample_encryption.c:skip_1stop_8data_bits
Unexecuted instantiation: isom.c:skip_1stop_8data_bits
Unexecuted instantiation: matroskadec.c:skip_1stop_8data_bits
Unexecuted instantiation: mlpdec.c:skip_1stop_8data_bits
Unexecuted instantiation: mov.c:skip_1stop_8data_bits
Unexecuted instantiation: mpc8.c:skip_1stop_8data_bits
Unexecuted instantiation: mpegts.c:skip_1stop_8data_bits
Unexecuted instantiation: oggparsetheora.c:skip_1stop_8data_bits
Unexecuted instantiation: shortendec.c:skip_1stop_8data_bits
Unexecuted instantiation: swfdec.c:skip_1stop_8data_bits
Unexecuted instantiation: takdec.c:skip_1stop_8data_bits
Unexecuted instantiation: iamf_parse.c:skip_1stop_8data_bits
Unexecuted instantiation: dirac.c:skip_1stop_8data_bits
Unexecuted instantiation: atrac9dec.c:skip_1stop_8data_bits
Unexecuted instantiation: enc.c:skip_1stop_8data_bits
Unexecuted instantiation: enc_psy.c:skip_1stop_8data_bits
Unexecuted instantiation: pvq.c:skip_1stop_8data_bits
Unexecuted instantiation: rc.c:skip_1stop_8data_bits
Unexecuted instantiation: celt.c:skip_1stop_8data_bits
Unexecuted instantiation: gsmdec.c:skip_1stop_8data_bits
Unexecuted instantiation: msgsmdec.c:skip_1stop_8data_bits
Unexecuted instantiation: imc.c:skip_1stop_8data_bits
Unexecuted instantiation: adpcm.c:skip_1stop_8data_bits
Unexecuted instantiation: wmaenc.c:skip_1stop_8data_bits
Unexecuted instantiation: wma.c:skip_1stop_8data_bits
Unexecuted instantiation: cfhd.c:skip_1stop_8data_bits
Unexecuted instantiation: wavarc.c:skip_1stop_8data_bits
Unexecuted instantiation: escape130.c:skip_1stop_8data_bits
Unexecuted instantiation: asvdec.c:skip_1stop_8data_bits
Unexecuted instantiation: diracdec.c:skip_1stop_8data_bits
Unexecuted instantiation: dirac_arith.c:skip_1stop_8data_bits
Unexecuted instantiation: wmadec.c:skip_1stop_8data_bits
Unexecuted instantiation: aacenc.c:skip_1stop_8data_bits
Unexecuted instantiation: imm4.c:skip_1stop_8data_bits
Unexecuted instantiation: exr.c:skip_1stop_8data_bits
Unexecuted instantiation: aacdec.c:skip_1stop_8data_bits
Unexecuted instantiation: aacdec_fixed.c:skip_1stop_8data_bits
Unexecuted instantiation: aacdec_float.c:skip_1stop_8data_bits
Unexecuted instantiation: aacdec_tab.c:skip_1stop_8data_bits
Unexecuted instantiation: aacdec_usac.c:skip_1stop_8data_bits
Unexecuted instantiation: aacdec_usac_mps212.c:skip_1stop_8data_bits
Unexecuted instantiation: aacps_common.c:skip_1stop_8data_bits
Unexecuted instantiation: aacsbr.c:skip_1stop_8data_bits
Unexecuted instantiation: aacsbr_fixed.c:skip_1stop_8data_bits
Unexecuted instantiation: aacdec_ac.c:skip_1stop_8data_bits
Unexecuted instantiation: aacdec_lpd.c:skip_1stop_8data_bits
Unexecuted instantiation: aacps_fixed.c:skip_1stop_8data_bits
Unexecuted instantiation: aacps_float.c:skip_1stop_8data_bits
Unexecuted instantiation: mjpegdec.c:skip_1stop_8data_bits
Unexecuted instantiation: mjpegdec_common.c:skip_1stop_8data_bits
Unexecuted instantiation: jpeglsdec.c:skip_1stop_8data_bits
Unexecuted instantiation: jvdec.c:skip_1stop_8data_bits
Unexecuted instantiation: rdt.c:skip_1stop_8data_bits
Unexecuted instantiation: rtpdec_h261.c:skip_1stop_8data_bits
Unexecuted instantiation: rtpdec_h263_rfc2190.c:skip_1stop_8data_bits
Unexecuted instantiation: rtpdec_latm.c:skip_1stop_8data_bits
Unexecuted instantiation: rtpdec_mpeg4.c:skip_1stop_8data_bits
Unexecuted instantiation: rtpdec_qt.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_cavlc.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_direct.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_mb.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_picture.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_refs.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_slice.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_cabac.c:skip_1stop_8data_bits
Unexecuted instantiation: h264_loopfilter.c:skip_1stop_8data_bits
Unexecuted instantiation: alsdec.c:skip_1stop_8data_bits
Unexecuted instantiation: bgmc.c:skip_1stop_8data_bits
Unexecuted instantiation: mlz.c:skip_1stop_8data_bits
Unexecuted instantiation: bonk.c:skip_1stop_8data_bits
Unexecuted instantiation: mxpegdec.c:skip_1stop_8data_bits
Unexecuted instantiation: rv30.c:skip_1stop_8data_bits
Unexecuted instantiation: rv34.c:skip_1stop_8data_bits
Unexecuted instantiation: indeo3.c:skip_1stop_8data_bits
Unexecuted instantiation: eamad.c:skip_1stop_8data_bits
Unexecuted instantiation: mpeg12.c:skip_1stop_8data_bits
Unexecuted instantiation: g726.c:skip_1stop_8data_bits
Unexecuted instantiation: vc1dec.c:skip_1stop_8data_bits
Unexecuted instantiation: vc1_block.c:skip_1stop_8data_bits
Unexecuted instantiation: vc1_loopfilter.c:skip_1stop_8data_bits
Unexecuted instantiation: vc1_mc.c:skip_1stop_8data_bits
Unexecuted instantiation: vc1_pred.c:skip_1stop_8data_bits
Unexecuted instantiation: mpegaudiodec_float.c:skip_1stop_8data_bits
Unexecuted instantiation: huffyuvdec.c:skip_1stop_8data_bits
Unexecuted instantiation: speexdec.c:skip_1stop_8data_bits
Unexecuted instantiation: atrac3plusdec.c:skip_1stop_8data_bits
Unexecuted instantiation: atrac3plusdsp.c:skip_1stop_8data_bits
Unexecuted instantiation: atrac3plus.c:skip_1stop_8data_bits
Unexecuted instantiation: mss4.c:skip_1stop_8data_bits
Unexecuted instantiation: tiff.c:skip_1stop_8data_bits
Unexecuted instantiation: faxcompr.c:skip_1stop_8data_bits
Unexecuted instantiation: ac3dec_float.c:skip_1stop_8data_bits
Unexecuted instantiation: on2avc.c:skip_1stop_8data_bits
Unexecuted instantiation: smacker.c:skip_1stop_8data_bits
Unexecuted instantiation: dvbsubdec.c:skip_1stop_8data_bits
Unexecuted instantiation: mss1.c:skip_1stop_8data_bits
Unexecuted instantiation: mss12.c:skip_1stop_8data_bits
Unexecuted instantiation: mss2.c:skip_1stop_8data_bits
Unexecuted instantiation: mdec.c:skip_1stop_8data_bits
Unexecuted instantiation: osq.c:skip_1stop_8data_bits
Unexecuted instantiation: vp6.c:skip_1stop_8data_bits
Unexecuted instantiation: vp56.c:skip_1stop_8data_bits
Unexecuted instantiation: vp56data.c:skip_1stop_8data_bits
Unexecuted instantiation: loco.c:skip_1stop_8data_bits
Unexecuted instantiation: vp5.c:skip_1stop_8data_bits
Unexecuted instantiation: ra144dec.c:skip_1stop_8data_bits
Unexecuted instantiation: indeo5.c:skip_1stop_8data_bits
Unexecuted instantiation: ivi.c:skip_1stop_8data_bits
Unexecuted instantiation: ivi_dsp.c:skip_1stop_8data_bits
Unexecuted instantiation: apac.c:skip_1stop_8data_bits
Unexecuted instantiation: clearvideo.c:skip_1stop_8data_bits
Unexecuted instantiation: dxtory.c:skip_1stop_8data_bits
Unexecuted instantiation: mpegaudiodec_fixed.c:skip_1stop_8data_bits
Unexecuted instantiation: ralf.c:skip_1stop_8data_bits
Unexecuted instantiation: pixlet.c:skip_1stop_8data_bits
Unexecuted instantiation: wnv1.c:skip_1stop_8data_bits
Unexecuted instantiation: qoadec.c:skip_1stop_8data_bits
Unexecuted instantiation: vima.c:skip_1stop_8data_bits
Unexecuted instantiation: leaddec.c:skip_1stop_8data_bits
Unexecuted instantiation: eatqi.c:skip_1stop_8data_bits
Unexecuted instantiation: lagarith.c:skip_1stop_8data_bits
Unexecuted instantiation: lagarithrac.c:skip_1stop_8data_bits
Unexecuted instantiation: dss_sp.c:skip_1stop_8data_bits
Unexecuted instantiation: siren.c:skip_1stop_8data_bits
Unexecuted instantiation: cavsdec.c:skip_1stop_8data_bits
Unexecuted instantiation: cavs.c:skip_1stop_8data_bits
Unexecuted instantiation: cavsdata.c:skip_1stop_8data_bits
Unexecuted instantiation: hcom.c:skip_1stop_8data_bits
Unexecuted instantiation: vp3.c:skip_1stop_8data_bits
Unexecuted instantiation: webp.c:skip_1stop_8data_bits
Unexecuted instantiation: eatgv.c:skip_1stop_8data_bits
Unexecuted instantiation: eatgq.c:skip_1stop_8data_bits
Unexecuted instantiation: sga.c:skip_1stop_8data_bits
Unexecuted instantiation: binkaudio.c:skip_1stop_8data_bits
mpeg12dec.c:skip_1stop_8data_bits
Line
Count
Source
694
772k
{
695
772k
    if (get_bits_left(gb) <= 0)
696
0
        return AVERROR_INVALIDDATA;
697
698
1.11M
    while (get_bits1(gb)) {
699
345k
        skip_bits(gb, 8);
700
345k
        if (get_bits_left(gb) <= 0)
701
1.59k
            return AVERROR_INVALIDDATA;
702
345k
    }
703
704
771k
    return 0;
705
772k
}
Unexecuted instantiation: indeo2.c:skip_1stop_8data_bits
Unexecuted instantiation: 4xm.c:skip_1stop_8data_bits
Unexecuted instantiation: wmalosslessdec.c:skip_1stop_8data_bits
Unexecuted instantiation: ilbcdec.c:skip_1stop_8data_bits
Unexecuted instantiation: hevcdec.c:skip_1stop_8data_bits
Unexecuted instantiation: mvs.c:skip_1stop_8data_bits
Unexecuted instantiation: pred.c:skip_1stop_8data_bits
Unexecuted instantiation: refs.c:skip_1stop_8data_bits
Unexecuted instantiation: cabac.c:skip_1stop_8data_bits
Unexecuted instantiation: dsp.c:skip_1stop_8data_bits
Unexecuted instantiation: filter.c:skip_1stop_8data_bits
Unexecuted instantiation: tscc2.c:skip_1stop_8data_bits
Unexecuted instantiation: hqx.c:skip_1stop_8data_bits
Unexecuted instantiation: mobiclip.c:skip_1stop_8data_bits
Unexecuted instantiation: wmaprodec.c:skip_1stop_8data_bits
Unexecuted instantiation: g729dec.c:skip_1stop_8data_bits
Unexecuted instantiation: sipr.c:skip_1stop_8data_bits
Unexecuted instantiation: g722dec.c:skip_1stop_8data_bits
Unexecuted instantiation: nellymoserdec.c:skip_1stop_8data_bits
Unexecuted instantiation: dcaenc.c:skip_1stop_8data_bits
Unexecuted instantiation: dcaadpcm.c:skip_1stop_8data_bits
Unexecuted instantiation: dcadata.c:skip_1stop_8data_bits
Unexecuted instantiation: interplayvideo.c:skip_1stop_8data_bits
Unexecuted instantiation: dec.c:skip_1stop_8data_bits
Unexecuted instantiation: dec_celt.c:skip_1stop_8data_bits
Unexecuted instantiation: silk.c:skip_1stop_8data_bits
Unexecuted instantiation: mjpegbdec.c:skip_1stop_8data_bits
Unexecuted instantiation: bink.c:skip_1stop_8data_bits
Unexecuted instantiation: dvdsubdec.c:skip_1stop_8data_bits
Unexecuted instantiation: rtjpeg.c:skip_1stop_8data_bits
Unexecuted instantiation: truespeech.c:skip_1stop_8data_bits
Unexecuted instantiation: metasound.c:skip_1stop_8data_bits
Unexecuted instantiation: escape124.c:skip_1stop_8data_bits
Unexecuted instantiation: cllc.c:skip_1stop_8data_bits
Unexecuted instantiation: dvdec.c:skip_1stop_8data_bits
Unexecuted instantiation: tta.c:skip_1stop_8data_bits
Unexecuted instantiation: fraps.c:skip_1stop_8data_bits
Unexecuted instantiation: motionpixels.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9block.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9data.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9lpf.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9mvs.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9prob.c:skip_1stop_8data_bits
Unexecuted instantiation: vp9recon.c:skip_1stop_8data_bits
Unexecuted instantiation: ffv1dec.c:skip_1stop_8data_bits
Unexecuted instantiation: intra_utils.c:skip_1stop_8data_bits
Unexecuted instantiation: thread.c:skip_1stop_8data_bits
Unexecuted instantiation: ctu.c:skip_1stop_8data_bits
Unexecuted instantiation: inter.c:skip_1stop_8data_bits
Unexecuted instantiation: intra.c:skip_1stop_8data_bits
Unexecuted instantiation: wmavoice.c:skip_1stop_8data_bits
Unexecuted instantiation: rawdec.c:skip_1stop_8data_bits
svq1dec.c:skip_1stop_8data_bits
Line
Count
Source
694
8.94k
{
695
8.94k
    if (get_bits_left(gb) <= 0)
696
212
        return AVERROR_INVALIDDATA;
697
698
12.4k
    while (get_bits1(gb)) {
699
4.54k
        skip_bits(gb, 8);
700
4.54k
        if (get_bits_left(gb) <= 0)
701
803
            return AVERROR_INVALIDDATA;
702
4.54k
    }
703
704
7.93k
    return 0;
705
8.73k
}
Unexecuted instantiation: mpc7.c:skip_1stop_8data_bits
Unexecuted instantiation: truemotion2rt.c:skip_1stop_8data_bits
Unexecuted instantiation: adxdec.c:skip_1stop_8data_bits
Unexecuted instantiation: rv40.c:skip_1stop_8data_bits
Unexecuted instantiation: xsubdec.c:skip_1stop_8data_bits
Unexecuted instantiation: notchlc.c:skip_1stop_8data_bits
Unexecuted instantiation: aic.c:skip_1stop_8data_bits
Unexecuted instantiation: vqcdec.c:skip_1stop_8data_bits
Unexecuted instantiation: dolby_e.c:skip_1stop_8data_bits
Unexecuted instantiation: proresdec.c:skip_1stop_8data_bits
Unexecuted instantiation: evrcdec.c:skip_1stop_8data_bits
Unexecuted instantiation: dnxhddec.c:skip_1stop_8data_bits
Unexecuted instantiation: dcadec.c:skip_1stop_8data_bits
Unexecuted instantiation: dca_core.c:skip_1stop_8data_bits
Unexecuted instantiation: dca_lbr.c:skip_1stop_8data_bits
Unexecuted instantiation: dca_xll.c:skip_1stop_8data_bits
Unexecuted instantiation: mlpenc.c:skip_1stop_8data_bits
Unexecuted instantiation: atrac3.c:skip_1stop_8data_bits
Unexecuted instantiation: vorbisdec.c:skip_1stop_8data_bits
Unexecuted instantiation: flashsv.c:skip_1stop_8data_bits
Unexecuted instantiation: wavpack.c:skip_1stop_8data_bits
Unexecuted instantiation: speedhqdec.c:skip_1stop_8data_bits
Unexecuted instantiation: g723_1dec.c:skip_1stop_8data_bits
Unexecuted instantiation: g2meet.c:skip_1stop_8data_bits
Unexecuted instantiation: shorten.c:skip_1stop_8data_bits
Unexecuted instantiation: indeo4.c:skip_1stop_8data_bits
Unexecuted instantiation: sp5xdec.c:skip_1stop_8data_bits
Unexecuted instantiation: atrac1.c:skip_1stop_8data_bits
Unexecuted instantiation: apv_decode.c:skip_1stop_8data_bits
Unexecuted instantiation: apv_entropy.c:skip_1stop_8data_bits
Unexecuted instantiation: avs.c:skip_1stop_8data_bits
Unexecuted instantiation: rv60dec.c:skip_1stop_8data_bits
Unexecuted instantiation: alac.c:skip_1stop_8data_bits
Unexecuted instantiation: tiertexseqv.c:skip_1stop_8data_bits
Unexecuted instantiation: ffv1enc.c:skip_1stop_8data_bits
Unexecuted instantiation: hcadec.c:skip_1stop_8data_bits
Unexecuted instantiation: pcx.c:skip_1stop_8data_bits
Unexecuted instantiation: qcelpdec.c:skip_1stop_8data_bits
Unexecuted instantiation: flacdec.c:skip_1stop_8data_bits
Unexecuted instantiation: ac3dec_fixed.c:skip_1stop_8data_bits
Unexecuted instantiation: midivid.c:skip_1stop_8data_bits
Unexecuted instantiation: mimic.c:skip_1stop_8data_bits
Unexecuted instantiation: fic.c:skip_1stop_8data_bits
Unexecuted instantiation: qdmc.c:skip_1stop_8data_bits
Unexecuted instantiation: ra288.c:skip_1stop_8data_bits
Unexecuted instantiation: interplayacm.c:skip_1stop_8data_bits
Unexecuted instantiation: ylc.c:skip_1stop_8data_bits
Unexecuted instantiation: ftr.c:skip_1stop_8data_bits
Unexecuted instantiation: agm.c:skip_1stop_8data_bits
Unexecuted instantiation: xan.c:skip_1stop_8data_bits
svq3.c:skip_1stop_8data_bits
Line
Count
Source
694
196k
{
695
196k
    if (get_bits_left(gb) <= 0)
696
26.2k
        return AVERROR_INVALIDDATA;
697
698
221k
    while (get_bits1(gb)) {
699
55.0k
        skip_bits(gb, 8);
700
55.0k
        if (get_bits_left(gb) <= 0)
701
3.52k
            return AVERROR_INVALIDDATA;
702
55.0k
    }
703
704
166k
    return 0;
705
170k
}
Unexecuted instantiation: cri.c:skip_1stop_8data_bits
Unexecuted instantiation: qdm2.c:skip_1stop_8data_bits
Unexecuted instantiation: cljrdec.c:skip_1stop_8data_bits
Unexecuted instantiation: g728dec.c:skip_1stop_8data_bits
Unexecuted instantiation: cook.c:skip_1stop_8data_bits
Unexecuted instantiation: twinvqdec.c:skip_1stop_8data_bits
Unexecuted instantiation: hq_hqa.c:skip_1stop_8data_bits
Unexecuted instantiation: cdxl.c:skip_1stop_8data_bits
Unexecuted instantiation: vble.c:skip_1stop_8data_bits
Unexecuted instantiation: mv30.c:skip_1stop_8data_bits
Unexecuted instantiation: apedec.c:skip_1stop_8data_bits
h261dec.c:skip_1stop_8data_bits
Line
Count
Source
694
634k
{
695
634k
    if (get_bits_left(gb) <= 0)
696
552
        return AVERROR_INVALIDDATA;
697
698
1.32M
    while (get_bits1(gb)) {
699
689k
        skip_bits(gb, 8);
700
689k
        if (get_bits_left(gb) <= 0)
701
2.74k
            return AVERROR_INVALIDDATA;
702
689k
    }
703
704
630k
    return 0;
705
633k
}
Unexecuted instantiation: dstdec.c:skip_1stop_8data_bits
Unexecuted instantiation: jpeglsenc.c:skip_1stop_8data_bits
Unexecuted instantiation: truemotion2.c:skip_1stop_8data_bits
706
707
#endif // CACHED_BITSTREAM_READER
708
709
#endif /* AVCODEC_GET_BITS_H */