Coverage Report

Created: 2026-07-30 06:27

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/dav1d/src/getbits.c
Line
Count
Source
1
/*
2
 * Copyright © 2018, VideoLAN and dav1d authors
3
 * Copyright © 2018, Two Orioles, LLC
4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions are met:
8
 *
9
 * 1. Redistributions of source code must retain the above copyright notice, this
10
 *    list of conditions and the following disclaimer.
11
 *
12
 * 2. Redistributions in binary form must reproduce the above copyright notice,
13
 *    this list of conditions and the following disclaimer in the documentation
14
 *    and/or other materials provided with the distribution.
15
 *
16
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
20
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 */
27
28
#include "config.h"
29
30
#include <limits.h>
31
32
#include "common/intops.h"
33
34
#include "src/getbits.h"
35
36
void dav1d_init_get_bits(GetBits *const c, const uint8_t *const data,
37
                         const size_t sz)
38
399k
{
39
399k
    assert(sz);
40
399k
    c->ptr = c->ptr_start = data;
41
399k
    c->ptr_end = &c->ptr_start[sz];
42
399k
    c->state = 0;
43
399k
    c->bits_left = 0;
44
399k
    c->error = 0;
45
399k
}
46
47
16.0M
unsigned dav1d_get_bit(GetBits *const c) {
48
16.0M
    if (!c->bits_left) {
49
2.67M
        if (c->ptr >= c->ptr_end) {
50
1.39k
            c->error = 1;
51
2.67M
        } else {
52
2.67M
            const unsigned state = *c->ptr++;
53
2.67M
            c->bits_left = 7;
54
2.67M
            c->state = (uint64_t) state << 57;
55
2.67M
            return state >> 7;
56
2.67M
        }
57
2.67M
    }
58
59
13.3M
    const uint64_t state = c->state;
60
13.3M
    c->bits_left--;
61
13.3M
    c->state = state << 1;
62
13.3M
    return (unsigned) (state >> 63);
63
16.0M
}
64
65
5.17M
static inline void refill(GetBits *const c, const int n) {
66
5.17M
    assert(c->bits_left >= 0 && c->bits_left < 32);
67
5.17M
    unsigned state = 0;
68
5.47M
    do {
69
5.47M
        if (c->ptr >= c->ptr_end) {
70
2.60k
            c->error = 1;
71
2.60k
            if (state) break;
72
2.39k
            return;
73
2.60k
        }
74
5.46M
        state = (state << 8) | *c->ptr++;
75
5.46M
        c->bits_left += 8;
76
5.46M
    } while (n > c->bits_left);
77
5.17M
    c->state |= (uint64_t) state << (64 - c->bits_left);
78
5.17M
}
79
80
#define GET_BITS(name, type, type64)            \
81
10.3M
type name(GetBits *const c, const int n) {      \
82
10.3M
    assert(n > 0 && n <= 32);                   \
83
10.3M
    /* Unsigned cast avoids refill after eob */ \
84
10.3M
    if ((unsigned) n > (unsigned) c->bits_left) \
85
10.3M
        refill(c, n);                           \
86
10.3M
    const uint64_t state = c->state;            \
87
10.3M
    c->bits_left -= n;                          \
88
10.3M
    c->state = state << n;                      \
89
10.3M
    return (type) ((type64) state >> (64 - n)); \
90
10.3M
}
dav1d_get_bits
Line
Count
Source
81
9.35M
type name(GetBits *const c, const int n) {      \
82
9.35M
    assert(n > 0 && n <= 32);                   \
83
9.35M
    /* Unsigned cast avoids refill after eob */ \
84
9.35M
    if ((unsigned) n > (unsigned) c->bits_left) \
85
9.35M
        refill(c, n);                           \
86
9.35M
    const uint64_t state = c->state;            \
87
9.35M
    c->bits_left -= n;                          \
88
9.35M
    c->state = state << n;                      \
89
9.35M
    return (type) ((type64) state >> (64 - n)); \
90
9.35M
}
dav1d_get_sbits
Line
Count
Source
81
983k
type name(GetBits *const c, const int n) {      \
82
983k
    assert(n > 0 && n <= 32);                   \
83
983k
    /* Unsigned cast avoids refill after eob */ \
84
983k
    if ((unsigned) n > (unsigned) c->bits_left) \
85
983k
        refill(c, n);                           \
86
983k
    const uint64_t state = c->state;            \
87
983k
    c->bits_left -= n;                          \
88
983k
    c->state = state << n;                      \
89
983k
    return (type) ((type64) state >> (64 - n)); \
90
983k
}
91
92
GET_BITS(dav1d_get_bits,  unsigned, uint64_t)
93
GET_BITS(dav1d_get_sbits, int,      int64_t)
94
95
325k
unsigned dav1d_get_uleb128(GetBits *const c) {
96
325k
    uint64_t val = 0;
97
325k
    unsigned i = 0, more;
98
99
331k
    do {
100
331k
        const int v = dav1d_get_bits(c, 8);
101
331k
        more = v & 0x80;
102
331k
        val |= ((uint64_t) (v & 0x7F)) << i;
103
331k
        i += 7;
104
331k
    } while (more && i < 56);
105
106
325k
    if (val > UINT32_MAX || more) {
107
356
        c->error = 1;
108
356
        return 0;
109
356
    }
110
111
324k
    return (unsigned) val;
112
325k
}
113
114
89.4k
unsigned dav1d_get_uniform(GetBits *const c, const unsigned max) {
115
    // Output in range [0..max-1]
116
    // max must be > 1, or else nothing is read from the bitstream
117
89.4k
    assert(max > 1);
118
89.4k
    const int l = ulog2(max) + 1;
119
89.4k
    assert(l > 1);
120
89.4k
    const unsigned m = (1U << l) - max;
121
89.4k
    const unsigned v = dav1d_get_bits(c, l - 1);
122
89.4k
    return v < m ? v : (v << 1) - m + dav1d_get_bit(c);
123
89.4k
}
124
125
2.55k
unsigned dav1d_get_vlc(GetBits *const c) {
126
2.55k
    if (dav1d_get_bit(c))
127
112
        return 0;
128
129
2.44k
    int n_bits = 0;
130
8.71k
    do {
131
8.71k
        if (++n_bits == 32)
132
22
            return UINT32_MAX;
133
8.71k
    } while (!dav1d_get_bit(c));
134
135
2.41k
    return ((1U << n_bits) - 1) + dav1d_get_bits(c, n_bits);
136
2.44k
}
137
138
static unsigned get_bits_subexp_u(GetBits *const c, const unsigned ref,
139
                                  const unsigned n)
140
1.98M
{
141
1.98M
    unsigned v = 0;
142
143
2.38M
    for (int i = 0;; i++) {
144
2.38M
        const int b = i ? 3 + i - 1 : 3;
145
146
2.38M
        if (n < v + 3 * (1 << b)) {
147
17.7k
            v += dav1d_get_uniform(c, n - v + 1);
148
17.7k
            break;
149
17.7k
        }
150
151
2.37M
        if (!dav1d_get_bit(c)) {
152
1.97M
            v += dav1d_get_bits(c, b);
153
1.97M
            break;
154
1.97M
        }
155
156
400k
        v += 1 << b;
157
400k
    }
158
159
1.98M
    return ref * 2 <= n ? inv_recenter(ref, v) : n - inv_recenter(n - ref, v);
160
1.98M
}
161
162
1.98M
int dav1d_get_bits_subexp(GetBits *const c, const int ref, const unsigned n) {
163
1.98M
    return (int) get_bits_subexp_u(c, ref + (1 << n), 2 << n) - (1 << n);
164
1.98M
}