Coverage Report

Created: 2026-05-30 06:08

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/dav1d/src/obu.c
Line
Count
Source
1
/*
2
 * Copyright © 2018-2021, 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 <errno.h>
31
#include <limits.h>
32
#include <stdio.h>
33
34
#include "dav1d/data.h"
35
36
#include "common/frame.h"
37
#include "common/intops.h"
38
#include "common/validate.h"
39
40
#include "src/decode.h"
41
#include "src/getbits.h"
42
#include "src/levels.h"
43
#include "src/log.h"
44
#include "src/obu.h"
45
#include "src/ref.h"
46
#include "src/thread_task.h"
47
48
static int check_trailing_bits(GetBits *const gb,
49
                               const int strict_std_compliance)
50
48.5k
{
51
48.5k
    const int trailing_one_bit = dav1d_get_bit(gb);
52
53
48.5k
    if (gb->error)
54
288
        return DAV1D_ERR(EINVAL);
55
56
48.2k
    if (!strict_std_compliance)
57
48.2k
        return 0;
58
59
0
    if (!trailing_one_bit || gb->state)
60
0
        return DAV1D_ERR(EINVAL);
61
62
0
    ptrdiff_t size = gb->ptr_end - gb->ptr;
63
0
    while (size > 0 && gb->ptr[size - 1] == 0)
64
0
        size--;
65
66
0
    if (size)
67
0
        return DAV1D_ERR(EINVAL);
68
69
0
    return 0;
70
0
}
71
72
static NOINLINE int parse_seq_hdr(Dav1dSequenceHeader *const hdr,
73
                                  GetBits *const gb,
74
                                  const int strict_std_compliance)
75
39.7k
{
76
39.7k
#define DEBUG_SEQ_HDR 0
77
78
#if DEBUG_SEQ_HDR
79
    const unsigned init_bit_pos = dav1d_get_bits_pos(gb);
80
#endif
81
82
39.7k
    memset(hdr, 0, sizeof(*hdr));
83
39.7k
    hdr->profile = dav1d_get_bits(gb, 3);
84
39.7k
    if (hdr->profile > 2) goto error;
85
#if DEBUG_SEQ_HDR
86
    printf("SEQHDR: post-profile: off=%u\n",
87
           dav1d_get_bits_pos(gb) - init_bit_pos);
88
#endif
89
90
39.6k
    hdr->still_picture = dav1d_get_bit(gb);
91
39.6k
    hdr->reduced_still_picture_header = dav1d_get_bit(gb);
92
39.6k
    if (hdr->reduced_still_picture_header && !hdr->still_picture) goto error;
93
#if DEBUG_SEQ_HDR
94
    printf("SEQHDR: post-stillpicture_flags: off=%u\n",
95
           dav1d_get_bits_pos(gb) - init_bit_pos);
96
#endif
97
98
39.6k
    if (hdr->reduced_still_picture_header) {
99
25.7k
        hdr->num_operating_points = 1;
100
25.7k
        hdr->operating_points[0].major_level = dav1d_get_bits(gb, 3);
101
25.7k
        hdr->operating_points[0].minor_level = dav1d_get_bits(gb, 2);
102
25.7k
        hdr->operating_points[0].initial_display_delay = 10;
103
25.7k
    } else {
104
13.9k
        hdr->timing_info_present = dav1d_get_bit(gb);
105
13.9k
        if (hdr->timing_info_present) {
106
6.97k
            hdr->num_units_in_tick = dav1d_get_bits(gb, 32);
107
6.97k
            hdr->time_scale = dav1d_get_bits(gb, 32);
108
6.97k
            if (strict_std_compliance && (!hdr->num_units_in_tick || !hdr->time_scale))
109
0
                goto error;
110
6.97k
            hdr->equal_picture_interval = dav1d_get_bit(gb);
111
6.97k
            if (hdr->equal_picture_interval) {
112
2.80k
                const unsigned num_ticks_per_picture = dav1d_get_vlc(gb);
113
2.80k
                if (num_ticks_per_picture == UINT32_MAX)
114
6
                    goto error;
115
2.80k
                hdr->num_ticks_per_picture = num_ticks_per_picture + 1;
116
2.80k
            }
117
118
6.96k
            hdr->decoder_model_info_present = dav1d_get_bit(gb);
119
6.96k
            if (hdr->decoder_model_info_present) {
120
2.81k
                hdr->encoder_decoder_buffer_delay_length = dav1d_get_bits(gb, 5) + 1;
121
2.81k
                hdr->num_units_in_decoding_tick = dav1d_get_bits(gb, 32);
122
2.81k
                if (strict_std_compliance && !hdr->num_units_in_decoding_tick)
123
0
                    goto error;
124
2.81k
                hdr->buffer_removal_delay_length = dav1d_get_bits(gb, 5) + 1;
125
2.81k
                hdr->frame_presentation_delay_length = dav1d_get_bits(gb, 5) + 1;
126
2.81k
            }
127
6.96k
        }
128
#if DEBUG_SEQ_HDR
129
        printf("SEQHDR: post-timinginfo: off=%u\n",
130
               dav1d_get_bits_pos(gb) - init_bit_pos);
131
#endif
132
133
13.8k
        hdr->display_model_info_present = dav1d_get_bit(gb);
134
13.8k
        hdr->num_operating_points = dav1d_get_bits(gb, 5) + 1;
135
41.3k
        for (int i = 0; i < hdr->num_operating_points; i++) {
136
27.5k
            struct Dav1dSequenceHeaderOperatingPoint *const op =
137
27.5k
                &hdr->operating_points[i];
138
27.5k
            op->idc = dav1d_get_bits(gb, 12);
139
27.5k
            if (op->idc && (!(op->idc & 0xff) || !(op->idc & 0xf00)))
140
48
                goto error;
141
27.4k
            op->major_level = 2 + dav1d_get_bits(gb, 3);
142
27.4k
            op->minor_level = dav1d_get_bits(gb, 2);
143
27.4k
            if (op->major_level > 3)
144
11.4k
                op->tier = dav1d_get_bit(gb);
145
27.4k
            if (hdr->decoder_model_info_present) {
146
8.98k
                op->decoder_model_param_present = dav1d_get_bit(gb);
147
8.98k
                if (op->decoder_model_param_present) {
148
2.88k
                    struct Dav1dSequenceHeaderOperatingParameterInfo *const opi =
149
2.88k
                        &hdr->operating_parameter_info[i];
150
2.88k
                    opi->decoder_buffer_delay =
151
2.88k
                        dav1d_get_bits(gb, hdr->encoder_decoder_buffer_delay_length);
152
2.88k
                    opi->encoder_buffer_delay =
153
2.88k
                        dav1d_get_bits(gb, hdr->encoder_decoder_buffer_delay_length);
154
2.88k
                    opi->low_delay_mode = dav1d_get_bit(gb);
155
2.88k
                }
156
8.98k
            }
157
27.4k
            if (hdr->display_model_info_present)
158
20.1k
                op->display_model_param_present = dav1d_get_bit(gb);
159
27.4k
            op->initial_display_delay =
160
27.4k
                op->display_model_param_present ? dav1d_get_bits(gb, 4) + 1 : 10;
161
27.4k
        }
162
#if DEBUG_SEQ_HDR
163
        printf("SEQHDR: post-operating-points: off=%u\n",
164
               dav1d_get_bits_pos(gb) - init_bit_pos);
165
#endif
166
13.8k
    }
167
168
39.6k
    hdr->width_n_bits = dav1d_get_bits(gb, 4) + 1;
169
39.6k
    hdr->height_n_bits = dav1d_get_bits(gb, 4) + 1;
170
39.6k
    hdr->max_width = dav1d_get_bits(gb, hdr->width_n_bits) + 1;
171
39.6k
    hdr->max_height = dav1d_get_bits(gb, hdr->height_n_bits) + 1;
172
#if DEBUG_SEQ_HDR
173
    printf("SEQHDR: post-size: off=%u\n",
174
           dav1d_get_bits_pos(gb) - init_bit_pos);
175
#endif
176
39.6k
    if (!hdr->reduced_still_picture_header) {
177
13.8k
        hdr->frame_id_numbers_present = dav1d_get_bit(gb);
178
13.8k
        if (hdr->frame_id_numbers_present) {
179
420
            hdr->delta_frame_id_n_bits = dav1d_get_bits(gb, 4) + 2;
180
420
            hdr->frame_id_n_bits = dav1d_get_bits(gb, 3) + hdr->delta_frame_id_n_bits + 1;
181
420
        }
182
13.8k
    }
183
#if DEBUG_SEQ_HDR
184
    printf("SEQHDR: post-frame-id-numbers-present: off=%u\n",
185
           dav1d_get_bits_pos(gb) - init_bit_pos);
186
#endif
187
188
39.6k
    hdr->sb128 = dav1d_get_bit(gb);
189
39.6k
    hdr->filter_intra = dav1d_get_bit(gb);
190
39.6k
    hdr->intra_edge_filter = dav1d_get_bit(gb);
191
39.6k
    if (hdr->reduced_still_picture_header) {
192
25.7k
        hdr->screen_content_tools = DAV1D_ADAPTIVE;
193
25.7k
        hdr->force_integer_mv = DAV1D_ADAPTIVE;
194
25.7k
    } else {
195
13.8k
        hdr->inter_intra = dav1d_get_bit(gb);
196
13.8k
        hdr->masked_compound = dav1d_get_bit(gb);
197
13.8k
        hdr->warped_motion = dav1d_get_bit(gb);
198
13.8k
        hdr->dual_filter = dav1d_get_bit(gb);
199
13.8k
        hdr->order_hint = dav1d_get_bit(gb);
200
13.8k
        if (hdr->order_hint) {
201
7.33k
            hdr->jnt_comp = dav1d_get_bit(gb);
202
7.33k
            hdr->ref_frame_mvs = dav1d_get_bit(gb);
203
7.33k
        }
204
13.8k
        hdr->screen_content_tools = dav1d_get_bit(gb) ? DAV1D_ADAPTIVE : dav1d_get_bit(gb);
205
    #if DEBUG_SEQ_HDR
206
        printf("SEQHDR: post-screentools: off=%u\n",
207
               dav1d_get_bits_pos(gb) - init_bit_pos);
208
    #endif
209
13.8k
        hdr->force_integer_mv = hdr->screen_content_tools ?
210
7.55k
                                dav1d_get_bit(gb) ? DAV1D_ADAPTIVE : dav1d_get_bit(gb) : 2;
211
13.8k
        if (hdr->order_hint)
212
7.33k
            hdr->order_hint_n_bits = dav1d_get_bits(gb, 3) + 1;
213
13.8k
    }
214
39.6k
    hdr->super_res = dav1d_get_bit(gb);
215
39.6k
    hdr->cdef = dav1d_get_bit(gb);
216
39.6k
    hdr->restoration = dav1d_get_bit(gb);
217
#if DEBUG_SEQ_HDR
218
    printf("SEQHDR: post-featurebits: off=%u\n",
219
           dav1d_get_bits_pos(gb) - init_bit_pos);
220
#endif
221
222
39.6k
    hdr->hbd = dav1d_get_bit(gb);
223
39.6k
    if (hdr->profile == 2 && hdr->hbd)
224
2.65k
        hdr->hbd += dav1d_get_bit(gb);
225
39.6k
    if (hdr->profile != 1)
226
18.5k
        hdr->monochrome = dav1d_get_bit(gb);
227
39.6k
    hdr->color_description_present = dav1d_get_bit(gb);
228
39.6k
    if (hdr->color_description_present) {
229
5.88k
        hdr->pri = dav1d_get_bits(gb, 8);
230
5.88k
        hdr->trc = dav1d_get_bits(gb, 8);
231
5.88k
        hdr->mtrx = dav1d_get_bits(gb, 8);
232
33.7k
    } else {
233
33.7k
        hdr->pri = DAV1D_COLOR_PRI_UNKNOWN;
234
33.7k
        hdr->trc = DAV1D_TRC_UNKNOWN;
235
33.7k
        hdr->mtrx = DAV1D_MC_UNKNOWN;
236
33.7k
    }
237
39.6k
    if (hdr->monochrome) {
238
6.73k
        hdr->color_range = dav1d_get_bit(gb);
239
6.73k
        hdr->layout = DAV1D_PIXEL_LAYOUT_I400;
240
6.73k
        hdr->ss_hor = hdr->ss_ver = 1;
241
6.73k
        hdr->chr = DAV1D_CHR_UNKNOWN;
242
32.8k
    } else if (hdr->pri == DAV1D_COLOR_PRI_BT709 &&
243
39
               hdr->trc == DAV1D_TRC_SRGB &&
244
9
               hdr->mtrx == DAV1D_MC_IDENTITY)
245
6
    {
246
6
        hdr->layout = DAV1D_PIXEL_LAYOUT_I444;
247
6
        hdr->color_range = 1;
248
6
        if (hdr->profile != 1 && !(hdr->profile == 2 && hdr->hbd == 2))
249
3
            goto error;
250
32.8k
    } else {
251
32.8k
        hdr->color_range = dav1d_get_bit(gb);
252
32.8k
        switch (hdr->profile) {
253
8.67k
        case 0: hdr->layout = DAV1D_PIXEL_LAYOUT_I420;
254
8.67k
                hdr->ss_hor = hdr->ss_ver = 1;
255
8.67k
                break;
256
21.0k
        case 1: hdr->layout = DAV1D_PIXEL_LAYOUT_I444;
257
21.0k
                break;
258
3.17k
        case 2:
259
3.17k
            if (hdr->hbd == 2) {
260
1.55k
                hdr->ss_hor = dav1d_get_bit(gb);
261
1.55k
                if (hdr->ss_hor)
262
1.26k
                    hdr->ss_ver = dav1d_get_bit(gb);
263
1.55k
            } else
264
1.62k
                hdr->ss_hor = 1;
265
3.17k
            hdr->layout = hdr->ss_hor ?
266
2.88k
                          hdr->ss_ver ? DAV1D_PIXEL_LAYOUT_I420 :
267
2.88k
                                        DAV1D_PIXEL_LAYOUT_I422 :
268
3.17k
                                        DAV1D_PIXEL_LAYOUT_I444;
269
3.17k
            break;
270
32.8k
        }
271
32.8k
        hdr->chr = (hdr->ss_hor & hdr->ss_ver) ?
272
22.9k
                   dav1d_get_bits(gb, 2) : DAV1D_CHR_UNKNOWN;
273
32.8k
    }
274
39.6k
    if (strict_std_compliance &&
275
0
        hdr->mtrx == DAV1D_MC_IDENTITY && hdr->layout != DAV1D_PIXEL_LAYOUT_I444)
276
0
    {
277
0
        goto error;
278
0
    }
279
39.6k
    if (!hdr->monochrome)
280
32.8k
        hdr->separate_uv_delta_q = dav1d_get_bit(gb);
281
#if DEBUG_SEQ_HDR
282
    printf("SEQHDR: post-colorinfo: off=%u\n",
283
           dav1d_get_bits_pos(gb) - init_bit_pos);
284
#endif
285
286
39.6k
    hdr->film_grain_present = dav1d_get_bit(gb);
287
#if DEBUG_SEQ_HDR
288
    printf("SEQHDR: post-filmgrain: off=%u\n",
289
           dav1d_get_bits_pos(gb) - init_bit_pos);
290
#endif
291
292
    // We needn't bother flushing the OBU here: we'll check we didn't
293
    // overrun in the caller and will then discard gb, so there's no
294
    // point in setting its position properly.
295
296
39.6k
    return check_trailing_bits(gb, strict_std_compliance);
297
298
99
error:
299
99
    return DAV1D_ERR(EINVAL);
300
39.6k
}
301
302
int dav1d_parse_sequence_header(Dav1dSequenceHeader *const out,
303
                                const uint8_t *const ptr, const size_t sz)
304
0
{
305
0
    validate_input_or_ret(out != NULL, DAV1D_ERR(EINVAL));
306
0
    validate_input_or_ret(ptr != NULL, DAV1D_ERR(EINVAL));
307
0
    validate_input_or_ret(sz > 0 && sz <= SIZE_MAX / 2, DAV1D_ERR(EINVAL));
308
309
0
    GetBits gb;
310
0
    dav1d_init_get_bits(&gb, ptr, sz);
311
0
    int res = DAV1D_ERR(ENOENT);
312
313
0
    do {
314
0
        dav1d_get_bit(&gb); // obu_forbidden_bit
315
0
        const enum Dav1dObuType type = dav1d_get_bits(&gb, 4);
316
0
        const int has_extension = dav1d_get_bit(&gb);
317
0
        const int has_length_field = dav1d_get_bit(&gb);
318
0
        dav1d_get_bits(&gb, 1 + 8 * has_extension); // ignore
319
320
0
        const uint8_t *obu_end = gb.ptr_end;
321
0
        if (has_length_field) {
322
0
            const size_t len = dav1d_get_uleb128(&gb);
323
0
            if (len > (size_t)(obu_end - gb.ptr)) return DAV1D_ERR(EINVAL);
324
0
            obu_end = gb.ptr + len;
325
0
        }
326
327
0
        if (type == DAV1D_OBU_SEQ_HDR) {
328
0
            if ((res = parse_seq_hdr(out, &gb, 0)) < 0) return res;
329
0
            if (gb.ptr > obu_end) return DAV1D_ERR(EINVAL);
330
0
            dav1d_bytealign_get_bits(&gb);
331
0
        }
332
333
0
        if (gb.error) return DAV1D_ERR(EINVAL);
334
0
        assert(gb.state == 0 && gb.bits_left == 0);
335
0
        gb.ptr = obu_end;
336
0
    } while (gb.ptr < gb.ptr_end);
337
338
0
    return res;
339
0
}
340
341
static int read_frame_size(Dav1dContext *const c, GetBits *const gb,
342
                           const int use_ref)
343
58.5k
{
344
58.5k
    const Dav1dSequenceHeader *const seqhdr = c->seq_hdr;
345
58.5k
    Dav1dFrameHeader *const hdr = c->frame_hdr;
346
347
58.5k
    if (use_ref) {
348
11.9k
        for (int i = 0; i < 7; i++) {
349
11.3k
            if (dav1d_get_bit(gb)) {
350
3.63k
                const Dav1dThreadPicture *const ref =
351
3.63k
                    &c->refs[c->frame_hdr->refidx[i]].p;
352
3.63k
                if (!ref->p.frame_hdr) return -1;
353
3.62k
                hdr->width[1] = ref->p.frame_hdr->width[1];
354
3.62k
                hdr->height = ref->p.frame_hdr->height;
355
3.62k
                hdr->render_width = ref->p.frame_hdr->render_width;
356
3.62k
                hdr->render_height = ref->p.frame_hdr->render_height;
357
3.62k
                hdr->super_res.enabled = seqhdr->super_res && dav1d_get_bit(gb);
358
3.62k
                if (hdr->super_res.enabled) {
359
1.02k
                    const int d = hdr->super_res.width_scale_denominator =
360
1.02k
                        9 + dav1d_get_bits(gb, 3);
361
1.02k
                    hdr->width[0] = imax((hdr->width[1] * 8 + (d >> 1)) / d,
362
1.02k
                                         imin(16, hdr->width[1]));
363
2.59k
                } else {
364
2.59k
                    hdr->super_res.width_scale_denominator = 8;
365
2.59k
                    hdr->width[0] = hdr->width[1];
366
2.59k
                }
367
3.62k
                return 0;
368
3.63k
            }
369
11.3k
        }
370
4.24k
    }
371
372
54.9k
    if (hdr->frame_size_override) {
373
9.23k
        hdr->width[1] = dav1d_get_bits(gb, seqhdr->width_n_bits) + 1;
374
9.23k
        hdr->height = dav1d_get_bits(gb, seqhdr->height_n_bits) + 1;
375
45.6k
    } else {
376
45.6k
        hdr->width[1] = seqhdr->max_width;
377
45.6k
        hdr->height = seqhdr->max_height;
378
45.6k
    }
379
54.9k
    hdr->super_res.enabled = seqhdr->super_res && dav1d_get_bit(gb);
380
54.9k
    if (hdr->super_res.enabled) {
381
16.7k
        const int d = hdr->super_res.width_scale_denominator = 9 + dav1d_get_bits(gb, 3);
382
16.7k
        hdr->width[0] = imax((hdr->width[1] * 8 + (d >> 1)) / d, imin(16, hdr->width[1]));
383
38.1k
    } else {
384
38.1k
        hdr->super_res.width_scale_denominator = 8;
385
38.1k
        hdr->width[0] = hdr->width[1];
386
38.1k
    }
387
54.9k
    hdr->have_render_size = dav1d_get_bit(gb);
388
54.9k
    if (hdr->have_render_size) {
389
15.4k
        hdr->render_width = dav1d_get_bits(gb, 16) + 1;
390
15.4k
        hdr->render_height = dav1d_get_bits(gb, 16) + 1;
391
39.4k
    } else {
392
39.4k
        hdr->render_width = hdr->width[1];
393
39.4k
        hdr->render_height = hdr->height;
394
39.4k
    }
395
54.9k
    return 0;
396
58.5k
}
397
398
297k
static inline int tile_log2(const int sz, const int tgt) {
399
297k
    int k;
400
381k
    for (k = 0; (sz << k) < tgt; k++) ;
401
297k
    return k;
402
297k
}
403
404
static const Dav1dLoopfilterModeRefDeltas default_mode_ref_deltas = {
405
    .mode_delta = { 0, 0 },
406
    .ref_delta = { 1, 0, 0, 0, -1, 0, -1, -1 },
407
};
408
409
58.8k
static int parse_frame_hdr(Dav1dContext *const c, GetBits *const gb) {
410
58.8k
#define DEBUG_FRAME_HDR 0
411
412
#if DEBUG_FRAME_HDR
413
    const uint8_t *const init_ptr = gb->ptr;
414
#endif
415
58.8k
    const Dav1dSequenceHeader *const seqhdr = c->seq_hdr;
416
58.8k
    Dav1dFrameHeader *const hdr = c->frame_hdr;
417
418
58.8k
    if (!seqhdr->reduced_still_picture_header)
419
31.1k
        hdr->show_existing_frame = dav1d_get_bit(gb);
420
#if DEBUG_FRAME_HDR
421
    printf("HDR: post-show_existing_frame: off=%td\n",
422
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
423
#endif
424
58.8k
    if (hdr->show_existing_frame) {
425
204
        hdr->existing_frame_idx = dav1d_get_bits(gb, 3);
426
204
        if (seqhdr->decoder_model_info_present && !seqhdr->equal_picture_interval)
427
3
            hdr->frame_presentation_delay = dav1d_get_bits(gb, seqhdr->frame_presentation_delay_length);
428
204
        if (seqhdr->frame_id_numbers_present) {
429
21
            hdr->frame_id = dav1d_get_bits(gb, seqhdr->frame_id_n_bits);
430
21
            Dav1dFrameHeader *const ref_frame_hdr = c->refs[hdr->existing_frame_idx].p.p.frame_hdr;
431
21
            if (!ref_frame_hdr || ref_frame_hdr->frame_id != hdr->frame_id) goto error;
432
21
        }
433
186
        return 0;
434
204
    }
435
436
58.6k
    if (seqhdr->reduced_still_picture_header) {
437
27.7k
        hdr->frame_type = DAV1D_FRAME_TYPE_KEY;
438
27.7k
        hdr->show_frame = 1;
439
30.9k
    } else {
440
30.9k
        hdr->frame_type = dav1d_get_bits(gb, 2);
441
30.9k
        hdr->show_frame = dav1d_get_bit(gb);
442
30.9k
    }
443
58.6k
    if (hdr->show_frame) {
444
53.1k
        if (seqhdr->decoder_model_info_present && !seqhdr->equal_picture_interval)
445
156
            hdr->frame_presentation_delay = dav1d_get_bits(gb, seqhdr->frame_presentation_delay_length);
446
53.1k
        hdr->showable_frame = hdr->frame_type != DAV1D_FRAME_TYPE_KEY;
447
53.1k
    } else
448
5.57k
        hdr->showable_frame = dav1d_get_bit(gb);
449
58.6k
    hdr->error_resilient_mode =
450
58.6k
        (hdr->frame_type == DAV1D_FRAME_TYPE_KEY && hdr->show_frame) ||
451
16.4k
        hdr->frame_type == DAV1D_FRAME_TYPE_SWITCH ||
452
12.0k
        seqhdr->reduced_still_picture_header || dav1d_get_bit(gb);
453
#if DEBUG_FRAME_HDR
454
    printf("HDR: post-frametype_bits: off=%td\n",
455
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
456
#endif
457
58.6k
    hdr->disable_cdf_update = dav1d_get_bit(gb);
458
58.6k
    hdr->allow_screen_content_tools = seqhdr->screen_content_tools == DAV1D_ADAPTIVE ?
459
39.1k
                                      dav1d_get_bit(gb) : seqhdr->screen_content_tools;
460
58.6k
    if (hdr->allow_screen_content_tools)
461
17.9k
        hdr->force_integer_mv = seqhdr->force_integer_mv == DAV1D_ADAPTIVE ?
462
15.0k
                                dav1d_get_bit(gb) : seqhdr->force_integer_mv;
463
464
58.6k
    if (IS_KEY_OR_INTRA(hdr))
465
43.4k
        hdr->force_integer_mv = 1;
466
467
58.6k
    if (seqhdr->frame_id_numbers_present)
468
726
        hdr->frame_id = dav1d_get_bits(gb, seqhdr->frame_id_n_bits);
469
470
58.6k
    if (!seqhdr->reduced_still_picture_header)
471
30.9k
        hdr->frame_size_override = hdr->frame_type == DAV1D_FRAME_TYPE_SWITCH ? 1 : dav1d_get_bit(gb);
472
#if DEBUG_FRAME_HDR
473
    printf("HDR: post-frame_size_override_flag: off=%td\n",
474
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
475
#endif
476
58.6k
    if (seqhdr->order_hint)
477
17.9k
        hdr->frame_offset = dav1d_get_bits(gb, seqhdr->order_hint_n_bits);
478
58.6k
    hdr->primary_ref_frame = !hdr->error_resilient_mode && IS_INTER_OR_SWITCH(hdr) ?
479
48.4k
                             dav1d_get_bits(gb, 3) : DAV1D_PRIMARY_REF_NONE;
480
481
58.6k
    if (seqhdr->decoder_model_info_present) {
482
5.70k
        hdr->buffer_removal_time_present = dav1d_get_bit(gb);
483
5.70k
        if (hdr->buffer_removal_time_present) {
484
7.65k
            for (int i = 0; i < c->seq_hdr->num_operating_points; i++) {
485
5.76k
                const struct Dav1dSequenceHeaderOperatingPoint *const seqop = &seqhdr->operating_points[i];
486
5.76k
                struct Dav1dFrameHeaderOperatingPoint *const op = &hdr->operating_points[i];
487
5.76k
                if (seqop->decoder_model_param_present) {
488
1.85k
                    int in_temporal_layer = (seqop->idc >> hdr->temporal_id) & 1;
489
1.85k
                    int in_spatial_layer  = (seqop->idc >> (hdr->spatial_id + 8)) & 1;
490
1.85k
                    if (!seqop->idc || (in_temporal_layer && in_spatial_layer))
491
141
                        op->buffer_removal_time = dav1d_get_bits(gb, seqhdr->buffer_removal_delay_length);
492
1.85k
                }
493
5.76k
            }
494
1.88k
        }
495
5.70k
    }
496
497
58.6k
    if (IS_KEY_OR_INTRA(hdr)) {
498
43.4k
        hdr->refresh_frame_flags = (hdr->frame_type == DAV1D_FRAME_TYPE_KEY &&
499
43.2k
                                    hdr->show_frame) ? 0xff : dav1d_get_bits(gb, 8);
500
43.4k
        if (hdr->refresh_frame_flags != 0xff && hdr->error_resilient_mode && seqhdr->order_hint)
501
1.37k
            for (int i = 0; i < 8; i++)
502
1.22k
                dav1d_get_bits(gb, seqhdr->order_hint_n_bits);
503
43.4k
        if (c->strict_std_compliance &&
504
0
            hdr->frame_type == DAV1D_FRAME_TYPE_INTRA && hdr->refresh_frame_flags == 0xff)
505
0
        {
506
0
            goto error;
507
0
        }
508
43.4k
        if (read_frame_size(c, gb, 0) < 0) goto error;
509
43.4k
        if (hdr->allow_screen_content_tools && !hdr->super_res.enabled)
510
10.9k
            hdr->allow_intrabc = dav1d_get_bit(gb);
511
43.4k
    } else {
512
15.2k
        hdr->refresh_frame_flags = hdr->frame_type == DAV1D_FRAME_TYPE_SWITCH ? 0xff :
513
15.2k
                                   dav1d_get_bits(gb, 8);
514
15.2k
        if (hdr->error_resilient_mode && seqhdr->order_hint)
515
10.9k
            for (int i = 0; i < 8; i++)
516
9.74k
                dav1d_get_bits(gb, seqhdr->order_hint_n_bits);
517
15.2k
        if (seqhdr->order_hint) {
518
9.43k
            hdr->frame_ref_short_signaling = dav1d_get_bit(gb);
519
9.43k
            if (hdr->frame_ref_short_signaling) {
520
4.62k
                hdr->refidx[0] = dav1d_get_bits(gb, 3);
521
4.62k
                hdr->refidx[1] = hdr->refidx[2] = -1;
522
4.62k
                hdr->refidx[3] = dav1d_get_bits(gb, 3);
523
524
                /* +1 allows for unconditional stores, as unused
525
                 * values can be dumped into frame_offset[-1]. */
526
4.62k
                int frame_offset_mem[8+1];
527
4.62k
                int *const frame_offset = &frame_offset_mem[1];
528
4.62k
                int earliest_ref = -1;
529
41.4k
                for (int i = 0, earliest_offset = INT_MAX; i < 8; i++) {
530
36.8k
                    const Dav1dFrameHeader *const refhdr = c->refs[i].p.p.frame_hdr;
531
36.8k
                    if (!refhdr) goto error;
532
36.8k
                    const int diff = get_poc_diff(seqhdr->order_hint_n_bits,
533
36.8k
                                                  refhdr->frame_offset,
534
36.8k
                                                  hdr->frame_offset);
535
36.8k
                    frame_offset[i] = diff;
536
36.8k
                    if (diff < earliest_offset) {
537
5.41k
                        earliest_offset = diff;
538
5.41k
                        earliest_ref = i;
539
5.41k
                    }
540
36.8k
                }
541
4.60k
                frame_offset[hdr->refidx[0]] = INT_MIN; // = reference frame is used
542
4.60k
                frame_offset[hdr->refidx[3]] = INT_MIN;
543
4.60k
                assert(earliest_ref >= 0);
544
545
4.60k
                int refidx = -1;
546
41.4k
                for (int i = 0, latest_offset = 0; i < 8; i++) {
547
36.8k
                    const int hint = frame_offset[i];
548
36.8k
                    if (hint >= latest_offset) {
549
14.2k
                        latest_offset = hint;
550
14.2k
                        refidx = i;
551
14.2k
                    }
552
36.8k
                }
553
4.60k
                frame_offset[refidx] = INT_MIN;
554
4.60k
                hdr->refidx[6] = refidx;
555
556
13.8k
                for (int i = 4; i < 6; i++) {
557
                    /* Unsigned compares to handle negative values. */
558
9.21k
                    unsigned earliest_offset = UINT8_MAX;
559
9.21k
                    refidx = -1;
560
82.8k
                    for (int j = 0; j < 8; j++) {
561
73.6k
                        const unsigned hint = frame_offset[j];
562
73.6k
                        if (hint < earliest_offset) {
563
5.24k
                            earliest_offset = hint;
564
5.24k
                            refidx = j;
565
5.24k
                        }
566
73.6k
                    }
567
9.21k
                    frame_offset[refidx] = INT_MIN;
568
9.21k
                    hdr->refidx[i] = refidx;
569
9.21k
                }
570
571
32.2k
                for (int i = 1; i < 7; i++) {
572
27.6k
                    refidx = hdr->refidx[i];
573
27.6k
                    if (refidx < 0) {
574
15.3k
                        unsigned latest_offset = ~UINT8_MAX;
575
138k
                        for (int j = 0; j < 8; j++) {
576
122k
                            const unsigned hint = frame_offset[j];
577
122k
                            if (hint >= latest_offset) {
578
43.2k
                                latest_offset = hint;
579
43.2k
                                refidx = j;
580
43.2k
                            }
581
122k
                        }
582
15.3k
                        frame_offset[refidx] = INT_MIN;
583
15.3k
                        hdr->refidx[i] = refidx >= 0 ? refidx : earliest_ref;
584
15.3k
                    }
585
27.6k
                }
586
4.60k
            }
587
9.43k
        }
588
120k
        for (int i = 0; i < 7; i++) {
589
105k
            if (!hdr->frame_ref_short_signaling)
590
73.6k
                hdr->refidx[i] = dav1d_get_bits(gb, 3);
591
105k
            if (seqhdr->frame_id_numbers_present) {
592
174
                const unsigned delta_ref_frame_id = dav1d_get_bits(gb, seqhdr->delta_frame_id_n_bits) + 1;
593
174
                const unsigned ref_frame_id = (hdr->frame_id + (1 << seqhdr->frame_id_n_bits) - delta_ref_frame_id) & ((1 << seqhdr->frame_id_n_bits) - 1);
594
174
                Dav1dFrameHeader *const ref_frame_hdr = c->refs[hdr->refidx[i]].p.p.frame_hdr;
595
174
                if (!ref_frame_hdr || ref_frame_hdr->frame_id != ref_frame_id) goto error;
596
174
            }
597
105k
        }
598
15.0k
        const int use_ref = !hdr->error_resilient_mode &&
599
10.1k
                            hdr->frame_size_override;
600
15.0k
        if (read_frame_size(c, gb, use_ref) < 0) goto error;
601
15.0k
        if (!hdr->force_integer_mv)
602
13.8k
            hdr->hp = dav1d_get_bit(gb);
603
15.0k
        hdr->subpel_filter_mode = dav1d_get_bit(gb) ? DAV1D_FILTER_SWITCHABLE :
604
15.0k
                                                      dav1d_get_bits(gb, 2);
605
15.0k
        hdr->switchable_motion_mode = dav1d_get_bit(gb);
606
15.0k
        if (!hdr->error_resilient_mode && seqhdr->ref_frame_mvs &&
607
7.52k
            seqhdr->order_hint && IS_INTER_OR_SWITCH(hdr))
608
7.52k
        {
609
7.52k
            hdr->use_ref_frame_mvs = dav1d_get_bit(gb);
610
7.52k
        }
611
15.0k
    }
612
#if DEBUG_FRAME_HDR
613
    printf("HDR: post-frametype-specific-bits: off=%td\n",
614
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
615
#endif
616
617
58.5k
    if (!seqhdr->reduced_still_picture_header && !hdr->disable_cdf_update)
618
14.1k
        hdr->refresh_context = !dav1d_get_bit(gb);
619
#if DEBUG_FRAME_HDR
620
    printf("HDR: post-refresh_context: off=%td\n",
621
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
622
#endif
623
624
    // tile data
625
58.5k
    hdr->tiling.uniform = dav1d_get_bit(gb);
626
58.5k
    const int sbsz_min1 = (64 << seqhdr->sb128) - 1;
627
58.5k
    const int sbsz_log2 = 6 + seqhdr->sb128;
628
58.5k
    const int sbw = (hdr->width[0] + sbsz_min1) >> sbsz_log2;
629
58.5k
    const int sbh = (hdr->height + sbsz_min1) >> sbsz_log2;
630
58.5k
    const int max_tile_width_sb = 4096 >> sbsz_log2;
631
58.5k
    const int max_tile_area_sb = 4096 * 2304 >> (2 * sbsz_log2);
632
58.5k
    hdr->tiling.min_log2_cols = tile_log2(max_tile_width_sb, sbw);
633
58.5k
    hdr->tiling.max_log2_cols = tile_log2(1, imin(sbw, DAV1D_MAX_TILE_COLS));
634
58.5k
    hdr->tiling.max_log2_rows = tile_log2(1, imin(sbh, DAV1D_MAX_TILE_ROWS));
635
58.5k
    const int min_log2_tiles = imax(tile_log2(max_tile_area_sb, sbw * sbh),
636
58.5k
                              hdr->tiling.min_log2_cols);
637
58.5k
    if (hdr->tiling.uniform) {
638
26.7k
        for (hdr->tiling.log2_cols = hdr->tiling.min_log2_cols;
639
28.0k
             hdr->tiling.log2_cols < hdr->tiling.max_log2_cols && dav1d_get_bit(gb);
640
26.7k
             hdr->tiling.log2_cols++) ;
641
26.7k
        const int tile_w = 1 + ((sbw - 1) >> hdr->tiling.log2_cols);
642
26.7k
        hdr->tiling.cols = 0;
643
56.6k
        for (int sbx = 0; sbx < sbw; sbx += tile_w, hdr->tiling.cols++)
644
29.9k
            hdr->tiling.col_start_sb[hdr->tiling.cols] = sbx;
645
26.7k
        hdr->tiling.min_log2_rows =
646
26.7k
            imax(min_log2_tiles - hdr->tiling.log2_cols, 0);
647
648
26.7k
        for (hdr->tiling.log2_rows = hdr->tiling.min_log2_rows;
649
27.9k
             hdr->tiling.log2_rows < hdr->tiling.max_log2_rows && dav1d_get_bit(gb);
650
26.7k
             hdr->tiling.log2_rows++) ;
651
26.7k
        const int tile_h = 1 + ((sbh - 1) >> hdr->tiling.log2_rows);
652
26.7k
        hdr->tiling.rows = 0;
653
56.1k
        for (int sby = 0; sby < sbh; sby += tile_h, hdr->tiling.rows++)
654
29.3k
            hdr->tiling.row_start_sb[hdr->tiling.rows] = sby;
655
31.8k
    } else {
656
31.8k
        hdr->tiling.cols = 0;
657
31.8k
        int widest_tile = 0, max_tile_area_sb = sbw * sbh;
658
70.4k
        for (int sbx = 0; sbx < sbw && hdr->tiling.cols < DAV1D_MAX_TILE_COLS; hdr->tiling.cols++) {
659
38.6k
            const int tile_width_sb = imin(sbw - sbx, max_tile_width_sb);
660
38.6k
            const int tile_w = (tile_width_sb > 1) ? 1 + dav1d_get_uniform(gb, tile_width_sb) : 1;
661
38.6k
            hdr->tiling.col_start_sb[hdr->tiling.cols] = sbx;
662
38.6k
            sbx += tile_w;
663
38.6k
            widest_tile = imax(widest_tile, tile_w);
664
38.6k
        }
665
31.8k
        hdr->tiling.log2_cols = tile_log2(1, hdr->tiling.cols);
666
31.8k
        if (min_log2_tiles) max_tile_area_sb >>= min_log2_tiles + 1;
667
31.8k
        const int max_tile_height_sb = imax(max_tile_area_sb / widest_tile, 1);
668
669
31.8k
        hdr->tiling.rows = 0;
670
72.1k
        for (int sby = 0; sby < sbh && hdr->tiling.rows < DAV1D_MAX_TILE_ROWS; hdr->tiling.rows++) {
671
40.3k
            const int tile_height_sb = imin(sbh - sby, max_tile_height_sb);
672
40.3k
            const int tile_h = (tile_height_sb > 1) ? 1 + dav1d_get_uniform(gb, tile_height_sb) : 1;
673
40.3k
            hdr->tiling.row_start_sb[hdr->tiling.rows] = sby;
674
40.3k
            sby += tile_h;
675
40.3k
        }
676
31.8k
        hdr->tiling.log2_rows = tile_log2(1, hdr->tiling.rows);
677
31.8k
    }
678
58.5k
    hdr->tiling.col_start_sb[hdr->tiling.cols] = sbw;
679
58.5k
    hdr->tiling.row_start_sb[hdr->tiling.rows] = sbh;
680
58.5k
    if (hdr->tiling.log2_cols || hdr->tiling.log2_rows) {
681
5.68k
        hdr->tiling.update = dav1d_get_bits(gb, hdr->tiling.log2_cols + hdr->tiling.log2_rows);
682
5.68k
        if (hdr->tiling.update >= hdr->tiling.cols * hdr->tiling.rows)
683
33
            goto error;
684
5.65k
        hdr->tiling.n_bytes = dav1d_get_bits(gb, 2) + 1;
685
5.65k
    }
686
#if DEBUG_FRAME_HDR
687
    printf("HDR: post-tiling: off=%td\n",
688
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
689
#endif
690
691
    // quant data
692
58.4k
    hdr->quant.yac = dav1d_get_bits(gb, 8);
693
58.4k
    if (dav1d_get_bit(gb))
694
26.2k
        hdr->quant.ydc_delta = dav1d_get_sbits(gb, 7);
695
58.4k
    if (!seqhdr->monochrome) {
696
        // If the sequence header says that delta_q might be different
697
        // for U, V, we must check whether it actually is for this
698
        // frame.
699
44.9k
        const int diff_uv_delta = seqhdr->separate_uv_delta_q ? dav1d_get_bit(gb) : 0;
700
44.9k
        if (dav1d_get_bit(gb))
701
19.5k
            hdr->quant.udc_delta = dav1d_get_sbits(gb, 7);
702
44.9k
        if (dav1d_get_bit(gb))
703
20.9k
            hdr->quant.uac_delta = dav1d_get_sbits(gb, 7);
704
44.9k
        if (diff_uv_delta) {
705
11.8k
            if (dav1d_get_bit(gb))
706
4.50k
                hdr->quant.vdc_delta = dav1d_get_sbits(gb, 7);
707
11.8k
            if (dav1d_get_bit(gb))
708
5.52k
                hdr->quant.vac_delta = dav1d_get_sbits(gb, 7);
709
33.0k
        } else {
710
33.0k
            hdr->quant.vdc_delta = hdr->quant.udc_delta;
711
33.0k
            hdr->quant.vac_delta = hdr->quant.uac_delta;
712
33.0k
        }
713
44.9k
    }
714
#if DEBUG_FRAME_HDR
715
    printf("HDR: post-quant: off=%td\n",
716
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
717
#endif
718
58.4k
    hdr->quant.qm = dav1d_get_bit(gb);
719
58.4k
    if (hdr->quant.qm) {
720
26.2k
        hdr->quant.qm_y = dav1d_get_bits(gb, 4);
721
26.2k
        hdr->quant.qm_u = dav1d_get_bits(gb, 4);
722
26.2k
        hdr->quant.qm_v = seqhdr->separate_uv_delta_q ? dav1d_get_bits(gb, 4) :
723
26.2k
                                                        hdr->quant.qm_u;
724
26.2k
    }
725
#if DEBUG_FRAME_HDR
726
    printf("HDR: post-qm: off=%td\n",
727
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
728
#endif
729
730
    // segmentation data
731
58.4k
    hdr->segmentation.enabled = dav1d_get_bit(gb);
732
58.4k
    if (hdr->segmentation.enabled) {
733
14.3k
        if (hdr->primary_ref_frame == DAV1D_PRIMARY_REF_NONE) {
734
10.3k
            hdr->segmentation.update_map = 1;
735
10.3k
            hdr->segmentation.update_data = 1;
736
10.3k
        } else {
737
4.02k
            hdr->segmentation.update_map = dav1d_get_bit(gb);
738
4.02k
            if (hdr->segmentation.update_map)
739
2.18k
                hdr->segmentation.temporal = dav1d_get_bit(gb);
740
4.02k
            hdr->segmentation.update_data = dav1d_get_bit(gb);
741
4.02k
        }
742
743
14.3k
        if (hdr->segmentation.update_data) {
744
11.2k
            hdr->segmentation.seg_data.last_active_segid = -1;
745
101k
            for (int i = 0; i < DAV1D_MAX_SEGMENTS; i++) {
746
90.2k
                Dav1dSegmentationData *const seg =
747
90.2k
                    &hdr->segmentation.seg_data.d[i];
748
90.2k
                if (dav1d_get_bit(gb)) {
749
25.4k
                    seg->delta_q = dav1d_get_sbits(gb, 9);
750
25.4k
                    hdr->segmentation.seg_data.last_active_segid = i;
751
25.4k
                }
752
90.2k
                if (dav1d_get_bit(gb)) {
753
23.0k
                    seg->delta_lf_y_v = dav1d_get_sbits(gb, 7);
754
23.0k
                    hdr->segmentation.seg_data.last_active_segid = i;
755
23.0k
                }
756
90.2k
                if (dav1d_get_bit(gb)) {
757
29.7k
                    seg->delta_lf_y_h = dav1d_get_sbits(gb, 7);
758
29.7k
                    hdr->segmentation.seg_data.last_active_segid = i;
759
29.7k
                }
760
90.2k
                if (dav1d_get_bit(gb)) {
761
29.1k
                    seg->delta_lf_u = dav1d_get_sbits(gb, 7);
762
29.1k
                    hdr->segmentation.seg_data.last_active_segid = i;
763
29.1k
                }
764
90.2k
                if (dav1d_get_bit(gb)) {
765
27.9k
                    seg->delta_lf_v = dav1d_get_sbits(gb, 7);
766
27.9k
                    hdr->segmentation.seg_data.last_active_segid = i;
767
27.9k
                }
768
90.2k
                if (dav1d_get_bit(gb)) {
769
27.5k
                    seg->ref = dav1d_get_bits(gb, 3);
770
27.5k
                    hdr->segmentation.seg_data.last_active_segid = i;
771
27.5k
                    hdr->segmentation.seg_data.preskip = 1;
772
62.6k
                } else {
773
62.6k
                    seg->ref = -1;
774
62.6k
                }
775
90.2k
                if ((seg->skip = dav1d_get_bit(gb))) {
776
24.1k
                    hdr->segmentation.seg_data.last_active_segid = i;
777
24.1k
                    hdr->segmentation.seg_data.preskip = 1;
778
24.1k
                }
779
90.2k
                if ((seg->globalmv = dav1d_get_bit(gb))) {
780
25.7k
                    hdr->segmentation.seg_data.last_active_segid = i;
781
25.7k
                    hdr->segmentation.seg_data.preskip = 1;
782
25.7k
                }
783
90.2k
            }
784
11.2k
        } else {
785
            // segmentation.update_data was false so we should copy
786
            // segmentation data from the reference frame.
787
3.05k
            assert(hdr->primary_ref_frame != DAV1D_PRIMARY_REF_NONE);
788
3.05k
            const int pri_ref = hdr->refidx[hdr->primary_ref_frame];
789
3.05k
            if (!c->refs[pri_ref].p.p.frame_hdr) goto error;
790
3.04k
            hdr->segmentation.seg_data =
791
3.04k
                c->refs[pri_ref].p.p.frame_hdr->segmentation.seg_data;
792
3.04k
        }
793
44.1k
    } else {
794
397k
        for (int i = 0; i < DAV1D_MAX_SEGMENTS; i++)
795
353k
            hdr->segmentation.seg_data.d[i].ref = -1;
796
44.1k
    }
797
#if DEBUG_FRAME_HDR
798
    printf("HDR: post-segmentation: off=%td\n",
799
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
800
#endif
801
802
    // delta q
803
58.4k
    if (hdr->quant.yac) {
804
52.9k
        hdr->delta.q.present = dav1d_get_bit(gb);
805
52.9k
        if (hdr->delta.q.present) {
806
15.6k
            hdr->delta.q.res_log2 = dav1d_get_bits(gb, 2);
807
15.6k
            if (!hdr->allow_intrabc) {
808
14.2k
                hdr->delta.lf.present = dav1d_get_bit(gb);
809
14.2k
                if (hdr->delta.lf.present) {
810
7.21k
                    hdr->delta.lf.res_log2 = dav1d_get_bits(gb, 2);
811
7.21k
                    hdr->delta.lf.multi = dav1d_get_bit(gb);
812
7.21k
                }
813
14.2k
            }
814
15.6k
        }
815
52.9k
    }
816
#if DEBUG_FRAME_HDR
817
    printf("HDR: post-delta_q_lf_flags: off=%td\n",
818
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
819
#endif
820
821
    // derive lossless flags
822
58.4k
    const int delta_lossless = !hdr->quant.ydc_delta && !hdr->quant.udc_delta &&
823
27.5k
        !hdr->quant.uac_delta && !hdr->quant.vdc_delta && !hdr->quant.vac_delta;
824
58.4k
    hdr->all_lossless = 1;
825
526k
    for (int i = 0; i < DAV1D_MAX_SEGMENTS; i++) {
826
467k
        hdr->segmentation.qidx[i] = hdr->segmentation.enabled ?
827
114k
            iclip_u8(hdr->quant.yac + hdr->segmentation.seg_data.d[i].delta_q) :
828
467k
            hdr->quant.yac;
829
467k
        hdr->segmentation.lossless[i] =
830
467k
            !hdr->segmentation.qidx[i] && delta_lossless;
831
467k
        hdr->all_lossless &= hdr->segmentation.lossless[i];
832
467k
    }
833
834
    // loopfilter
835
58.4k
    if (hdr->all_lossless || hdr->allow_intrabc) {
836
11.2k
        hdr->loopfilter.mode_ref_delta_enabled = 1;
837
11.2k
        hdr->loopfilter.mode_ref_delta_update = 1;
838
11.2k
        hdr->loopfilter.mode_ref_deltas = default_mode_ref_deltas;
839
47.2k
    } else {
840
47.2k
        hdr->loopfilter.level_y[0] = dav1d_get_bits(gb, 6);
841
47.2k
        hdr->loopfilter.level_y[1] = dav1d_get_bits(gb, 6);
842
47.2k
        if (!seqhdr->monochrome &&
843
35.5k
            (hdr->loopfilter.level_y[0] || hdr->loopfilter.level_y[1]))
844
27.2k
        {
845
27.2k
            hdr->loopfilter.level_u = dav1d_get_bits(gb, 6);
846
27.2k
            hdr->loopfilter.level_v = dav1d_get_bits(gb, 6);
847
27.2k
        }
848
47.2k
        hdr->loopfilter.sharpness = dav1d_get_bits(gb, 3);
849
850
47.2k
        if (hdr->primary_ref_frame == DAV1D_PRIMARY_REF_NONE) {
851
38.2k
            hdr->loopfilter.mode_ref_deltas = default_mode_ref_deltas;
852
38.2k
        } else {
853
9.00k
            const int ref = hdr->refidx[hdr->primary_ref_frame];
854
9.00k
            if (!c->refs[ref].p.p.frame_hdr) goto error;
855
9.00k
            hdr->loopfilter.mode_ref_deltas =
856
9.00k
                c->refs[ref].p.p.frame_hdr->loopfilter.mode_ref_deltas;
857
9.00k
        }
858
47.2k
        hdr->loopfilter.mode_ref_delta_enabled = dav1d_get_bit(gb);
859
47.2k
        if (hdr->loopfilter.mode_ref_delta_enabled) {
860
14.9k
            hdr->loopfilter.mode_ref_delta_update = dav1d_get_bit(gb);
861
14.9k
            if (hdr->loopfilter.mode_ref_delta_update) {
862
79.6k
                for (int i = 0; i < 8; i++)
863
70.8k
                    if (dav1d_get_bit(gb))
864
31.1k
                        hdr->loopfilter.mode_ref_deltas.ref_delta[i] =
865
31.1k
                            dav1d_get_sbits(gb, 7);
866
26.5k
                for (int i = 0; i < 2; i++)
867
17.7k
                    if (dav1d_get_bit(gb))
868
7.23k
                        hdr->loopfilter.mode_ref_deltas.mode_delta[i] =
869
7.23k
                            dav1d_get_sbits(gb, 7);
870
8.85k
            }
871
14.9k
        }
872
47.2k
    }
873
#if DEBUG_FRAME_HDR
874
    printf("HDR: post-lpf: off=%td\n",
875
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
876
#endif
877
878
    // cdef
879
58.4k
    if (!hdr->all_lossless && seqhdr->cdef && !hdr->allow_intrabc) {
880
27.1k
        hdr->cdef.damping = dav1d_get_bits(gb, 2) + 3;
881
27.1k
        hdr->cdef.n_bits = dav1d_get_bits(gb, 2);
882
86.1k
        for (int i = 0; i < (1 << hdr->cdef.n_bits); i++) {
883
59.0k
            hdr->cdef.y_strength[i] = dav1d_get_bits(gb, 6);
884
59.0k
            if (!seqhdr->monochrome)
885
38.6k
                hdr->cdef.uv_strength[i] = dav1d_get_bits(gb, 6);
886
59.0k
        }
887
27.1k
    }
888
#if DEBUG_FRAME_HDR
889
    printf("HDR: post-cdef: off=%td\n",
890
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
891
#endif
892
893
    // restoration
894
58.4k
    if ((!hdr->all_lossless || hdr->super_res.enabled) &&
895
54.2k
        seqhdr->restoration && !hdr->allow_intrabc)
896
23.7k
    {
897
23.7k
        hdr->restoration.type[0] = dav1d_get_bits(gb, 2);
898
23.7k
        if (!seqhdr->monochrome) {
899
14.4k
            hdr->restoration.type[1] = dav1d_get_bits(gb, 2);
900
14.4k
            hdr->restoration.type[2] = dav1d_get_bits(gb, 2);
901
14.4k
        }
902
903
23.7k
        if (hdr->restoration.type[0] || hdr->restoration.type[1] ||
904
9.80k
            hdr->restoration.type[2])
905
14.9k
        {
906
            // Log2 of the restoration unit size.
907
14.9k
            hdr->restoration.unit_size[0] = 6 + seqhdr->sb128;
908
14.9k
            if (dav1d_get_bit(gb)) {
909
7.24k
                hdr->restoration.unit_size[0]++;
910
7.24k
                if (!seqhdr->sb128)
911
4.71k
                    hdr->restoration.unit_size[0] += dav1d_get_bit(gb);
912
7.24k
            }
913
14.9k
            hdr->restoration.unit_size[1] = hdr->restoration.unit_size[0];
914
14.9k
            if ((hdr->restoration.type[1] || hdr->restoration.type[2]) &&
915
10.3k
                seqhdr->ss_hor == 1 && seqhdr->ss_ver == 1)
916
3.49k
            {
917
3.49k
                hdr->restoration.unit_size[1] -= dav1d_get_bit(gb);
918
3.49k
            }
919
14.9k
        } else {
920
8.89k
            hdr->restoration.unit_size[0] = 8;
921
8.89k
        }
922
23.7k
    }
923
#if DEBUG_FRAME_HDR
924
    printf("HDR: post-restoration: off=%td\n",
925
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
926
#endif
927
928
58.4k
    if (!hdr->all_lossless)
929
53.7k
        hdr->txfm_mode = dav1d_get_bit(gb) ? DAV1D_TX_SWITCHABLE : DAV1D_TX_LARGEST;
930
#if DEBUG_FRAME_HDR
931
    printf("HDR: post-txfmmode: off=%td\n",
932
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
933
#endif
934
58.4k
    if (IS_INTER_OR_SWITCH(hdr))
935
15.0k
        hdr->switchable_comp_refs = dav1d_get_bit(gb);
936
#if DEBUG_FRAME_HDR
937
    printf("HDR: post-refmode: off=%td\n",
938
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
939
#endif
940
58.4k
    if (hdr->switchable_comp_refs && IS_INTER_OR_SWITCH(hdr) && seqhdr->order_hint) {
941
5.12k
        const int poc = hdr->frame_offset;
942
5.12k
        int off_before = -1, off_after = -1;
943
5.12k
        int off_before_idx, off_after_idx;
944
40.9k
        for (int i = 0; i < 7; i++) {
945
35.8k
            if (!c->refs[hdr->refidx[i]].p.p.frame_hdr) goto error;
946
35.8k
            const int refpoc = c->refs[hdr->refidx[i]].p.p.frame_hdr->frame_offset;
947
948
35.8k
            const int diff = get_poc_diff(seqhdr->order_hint_n_bits, refpoc, poc);
949
35.8k
            if (diff > 0) {
950
12.0k
                if (off_after < 0 || get_poc_diff(seqhdr->order_hint_n_bits,
951
9.93k
                                                  off_after, refpoc) > 0)
952
2.18k
                {
953
2.18k
                    off_after = refpoc;
954
2.18k
                    off_after_idx = i;
955
2.18k
                }
956
23.7k
            } else if (diff < 0 && (off_before < 0 ||
957
15.2k
                                    get_poc_diff(seqhdr->order_hint_n_bits,
958
15.2k
                                                 refpoc, off_before) > 0))
959
3.51k
            {
960
3.51k
                off_before = refpoc;
961
3.51k
                off_before_idx = i;
962
3.51k
            }
963
35.8k
        }
964
965
5.11k
        if ((off_before | off_after) >= 0) {
966
801
            hdr->skip_mode_refs[0] = imin(off_before_idx, off_after_idx);
967
801
            hdr->skip_mode_refs[1] = imax(off_before_idx, off_after_idx);
968
801
            hdr->skip_mode_allowed = 1;
969
4.31k
        } else if (off_before >= 0) {
970
2.41k
            int off_before2 = -1;
971
2.41k
            int off_before2_idx;
972
19.3k
            for (int i = 0; i < 7; i++) {
973
16.9k
                if (!c->refs[hdr->refidx[i]].p.p.frame_hdr) goto error;
974
16.9k
                const int refpoc = c->refs[hdr->refidx[i]].p.p.frame_hdr->frame_offset;
975
16.9k
                if (get_poc_diff(seqhdr->order_hint_n_bits,
976
16.9k
                                 refpoc, off_before) < 0) {
977
1.22k
                    if (off_before2 < 0 || get_poc_diff(seqhdr->order_hint_n_bits,
978
849
                                                        refpoc, off_before2) > 0)
979
405
                    {
980
405
                        off_before2 = refpoc;
981
405
                        off_before2_idx = i;
982
405
                    }
983
1.22k
                }
984
16.9k
            }
985
986
2.41k
            if (off_before2 >= 0) {
987
378
                hdr->skip_mode_refs[0] = imin(off_before_idx, off_before2_idx);
988
378
                hdr->skip_mode_refs[1] = imax(off_before_idx, off_before2_idx);
989
378
                hdr->skip_mode_allowed = 1;
990
378
            }
991
2.41k
        }
992
5.11k
    }
993
58.4k
    if (hdr->skip_mode_allowed)
994
1.17k
        hdr->skip_mode_enabled = dav1d_get_bit(gb);
995
#if DEBUG_FRAME_HDR
996
    printf("HDR: post-extskip: off=%td\n",
997
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
998
#endif
999
58.4k
    if (!hdr->error_resilient_mode && IS_INTER_OR_SWITCH(hdr) && seqhdr->warped_motion)
1000
5.18k
        hdr->warp_motion = dav1d_get_bit(gb);
1001
#if DEBUG_FRAME_HDR
1002
    printf("HDR: post-warpmotionbit: off=%td\n",
1003
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
1004
#endif
1005
58.4k
    hdr->reduced_txtp_set = dav1d_get_bit(gb);
1006
#if DEBUG_FRAME_HDR
1007
    printf("HDR: post-reducedtxtpset: off=%td\n",
1008
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
1009
#endif
1010
1011
467k
    for (int i = 0; i < 7; i++)
1012
409k
        hdr->gmv[i] = dav1d_default_wm_params;
1013
1014
58.4k
    if (IS_INTER_OR_SWITCH(hdr)) {
1015
120k
        for (int i = 0; i < 7; i++) {
1016
105k
            hdr->gmv[i].type = !dav1d_get_bit(gb) ? DAV1D_WM_TYPE_IDENTITY :
1017
105k
                                dav1d_get_bit(gb) ? DAV1D_WM_TYPE_ROT_ZOOM :
1018
33.8k
                                dav1d_get_bit(gb) ? DAV1D_WM_TYPE_TRANSLATION :
1019
14.4k
                                                    DAV1D_WM_TYPE_AFFINE;
1020
1021
105k
            if (hdr->gmv[i].type == DAV1D_WM_TYPE_IDENTITY) continue;
1022
1023
33.8k
            const Dav1dWarpedMotionParams *ref_gmv;
1024
33.8k
            if (hdr->primary_ref_frame == DAV1D_PRIMARY_REF_NONE) {
1025
12.4k
                ref_gmv = &dav1d_default_wm_params;
1026
21.3k
            } else {
1027
21.3k
                const int pri_ref = hdr->refidx[hdr->primary_ref_frame];
1028
21.3k
                if (!c->refs[pri_ref].p.p.frame_hdr) goto error;
1029
21.3k
                ref_gmv = &c->refs[pri_ref].p.p.frame_hdr->gmv[i];
1030
21.3k
            }
1031
33.8k
            int32_t *const mat = hdr->gmv[i].matrix;
1032
33.8k
            const int32_t *const ref_mat = ref_gmv->matrix;
1033
33.8k
            int bits, shift;
1034
1035
33.8k
            if (hdr->gmv[i].type >= DAV1D_WM_TYPE_ROT_ZOOM) {
1036
28.3k
                mat[2] = (1 << 16) + 2 *
1037
28.3k
                    dav1d_get_bits_subexp(gb, (ref_mat[2] - (1 << 16)) >> 1, 12);
1038
28.3k
                mat[3] = 2 * dav1d_get_bits_subexp(gb, ref_mat[3] >> 1, 12);
1039
1040
28.3k
                bits = 12;
1041
28.3k
                shift = 10;
1042
28.3k
            } else {
1043
5.49k
                bits = 9 - !hdr->hp;
1044
5.49k
                shift = 13 + !hdr->hp;
1045
5.49k
            }
1046
1047
33.8k
            if (hdr->gmv[i].type == DAV1D_WM_TYPE_AFFINE) {
1048
8.92k
                mat[4] = 2 * dav1d_get_bits_subexp(gb, ref_mat[4] >> 1, 12);
1049
8.92k
                mat[5] = (1 << 16) + 2 *
1050
8.92k
                    dav1d_get_bits_subexp(gb, (ref_mat[5] - (1 << 16)) >> 1, 12);
1051
24.8k
            } else {
1052
24.8k
                mat[4] = -mat[3];
1053
24.8k
                mat[5] = mat[2];
1054
24.8k
            }
1055
1056
33.8k
            mat[0] = dav1d_get_bits_subexp(gb, ref_mat[0] >> shift, bits) * (1 << shift);
1057
33.8k
            mat[1] = dav1d_get_bits_subexp(gb, ref_mat[1] >> shift, bits) * (1 << shift);
1058
33.8k
        }
1059
15.0k
    }
1060
#if DEBUG_FRAME_HDR
1061
    printf("HDR: post-gmv: off=%td\n",
1062
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
1063
#endif
1064
1065
58.4k
    if (seqhdr->film_grain_present && (hdr->show_frame || hdr->showable_frame)) {
1066
15.1k
        hdr->film_grain.present = dav1d_get_bit(gb);
1067
15.1k
        if (hdr->film_grain.present) {
1068
3.83k
            const unsigned seed = dav1d_get_bits(gb, 16);
1069
3.83k
            hdr->film_grain.update = hdr->frame_type != DAV1D_FRAME_TYPE_INTER || dav1d_get_bit(gb);
1070
3.83k
            if (!hdr->film_grain.update) {
1071
153
                const int refidx = dav1d_get_bits(gb, 3);
1072
153
                int i;
1073
618
                for (i = 0; i < 7; i++)
1074
612
                    if (hdr->refidx[i] == refidx)
1075
147
                        break;
1076
153
                if (i == 7 || !c->refs[refidx].p.p.frame_hdr) goto error;
1077
141
                hdr->film_grain.data = c->refs[refidx].p.p.frame_hdr->film_grain.data;
1078
141
                hdr->film_grain.data.seed = seed;
1079
3.68k
            } else {
1080
3.68k
                Dav1dFilmGrainData *const fgd = &hdr->film_grain.data;
1081
3.68k
                fgd->seed = seed;
1082
1083
3.68k
                fgd->num_y_points = dav1d_get_bits(gb, 4);
1084
3.68k
                if (fgd->num_y_points > 14) goto error;
1085
6.44k
                for (int i = 0; i < fgd->num_y_points; i++) {
1086
2.79k
                    fgd->y_points[i][0] = dav1d_get_bits(gb, 8);
1087
2.79k
                    if (i && fgd->y_points[i - 1][0] >= fgd->y_points[i][0])
1088
21
                        goto error;
1089
2.76k
                    fgd->y_points[i][1] = dav1d_get_bits(gb, 8);
1090
2.76k
                }
1091
1092
3.65k
                if (!seqhdr->monochrome)
1093
3.29k
                    fgd->chroma_scaling_from_luma = dav1d_get_bit(gb);
1094
3.65k
                if (seqhdr->monochrome || fgd->chroma_scaling_from_luma ||
1095
1.81k
                    (seqhdr->ss_ver == 1 && seqhdr->ss_hor == 1 && !fgd->num_y_points))
1096
2.06k
                {
1097
2.06k
                    fgd->num_uv_points[0] = fgd->num_uv_points[1] = 0;
1098
4.74k
                } else for (int pl = 0; pl < 2; pl++) {
1099
3.16k
                    fgd->num_uv_points[pl] = dav1d_get_bits(gb, 4);
1100
3.16k
                    if (fgd->num_uv_points[pl] > 10) goto error;
1101
4.67k
                    for (int i = 0; i < fgd->num_uv_points[pl]; i++) {
1102
1.52k
                        fgd->uv_points[pl][i][0] = dav1d_get_bits(gb, 8);
1103
1.52k
                        if (i && fgd->uv_points[pl][i - 1][0] >= fgd->uv_points[pl][i][0])
1104
15
                            goto error;
1105
1.50k
                        fgd->uv_points[pl][i][1] = dav1d_get_bits(gb, 8);
1106
1.50k
                    }
1107
3.16k
                }
1108
1109
3.63k
                if (seqhdr->ss_hor == 1 && seqhdr->ss_ver == 1 &&
1110
1.30k
                    !!fgd->num_uv_points[0] != !!fgd->num_uv_points[1])
1111
3
                {
1112
3
                    goto error;
1113
3
                }
1114
1115
3.63k
                fgd->scaling_shift = dav1d_get_bits(gb, 2) + 8;
1116
3.63k
                fgd->ar_coeff_lag = dav1d_get_bits(gb, 2);
1117
3.63k
                const int num_y_pos = 2 * fgd->ar_coeff_lag * (fgd->ar_coeff_lag + 1);
1118
3.63k
                if (fgd->num_y_points)
1119
17.3k
                    for (int i = 0; i < num_y_pos; i++)
1120
15.3k
                        fgd->ar_coeffs_y[i] = dav1d_get_bits(gb, 8) - 128;
1121
10.8k
                for (int pl = 0; pl < 2; pl++)
1122
7.26k
                    if (fgd->num_uv_points[pl] || fgd->chroma_scaling_from_luma) {
1123
4.10k
                        const int num_uv_pos = num_y_pos + !!fgd->num_y_points;
1124
34.7k
                        for (int i = 0; i < num_uv_pos; i++)
1125
30.6k
                            fgd->ar_coeffs_uv[pl][i] = dav1d_get_bits(gb, 8) - 128;
1126
4.10k
                        if (!fgd->num_y_points)
1127
1.47k
                            fgd->ar_coeffs_uv[pl][num_uv_pos] = 0;
1128
4.10k
                    }
1129
3.63k
                fgd->ar_coeff_shift = dav1d_get_bits(gb, 2) + 6;
1130
3.63k
                fgd->grain_scale_shift = dav1d_get_bits(gb, 2);
1131
10.8k
                for (int pl = 0; pl < 2; pl++)
1132
7.26k
                    if (fgd->num_uv_points[pl]) {
1133
1.15k
                        fgd->uv_mult[pl] = dav1d_get_bits(gb, 8) - 128;
1134
1.15k
                        fgd->uv_luma_mult[pl] = dav1d_get_bits(gb, 8) - 128;
1135
1.15k
                        fgd->uv_offset[pl] = dav1d_get_bits(gb, 9) - 256;
1136
1.15k
                    }
1137
3.63k
                fgd->overlap_flag = dav1d_get_bit(gb);
1138
3.63k
                fgd->clip_to_restricted_range = dav1d_get_bit(gb);
1139
3.63k
            }
1140
3.83k
        }
1141
15.1k
    }
1142
#if DEBUG_FRAME_HDR
1143
    printf("HDR: post-filmgrain: off=%td\n",
1144
           (gb->ptr - init_ptr) * 8 - gb->bits_left);
1145
#endif
1146
1147
58.4k
    return 0;
1148
1149
294
error:
1150
294
    dav1d_log(c, "Error parsing frame header\n");
1151
294
    return DAV1D_ERR(EINVAL);
1152
58.4k
}
1153
1154
56.7k
static void parse_tile_hdr(Dav1dContext *const c, GetBits *const gb) {
1155
56.7k
    const int n_tiles = c->frame_hdr->tiling.cols * c->frame_hdr->tiling.rows;
1156
56.7k
    const int have_tile_pos = n_tiles > 1 ? dav1d_get_bit(gb) : 0;
1157
1158
56.7k
    if (have_tile_pos) {
1159
120
        const int n_bits = c->frame_hdr->tiling.log2_cols +
1160
120
                           c->frame_hdr->tiling.log2_rows;
1161
120
        c->tile[c->n_tile_data].start = dav1d_get_bits(gb, n_bits);
1162
120
        c->tile[c->n_tile_data].end = dav1d_get_bits(gb, n_bits);
1163
56.6k
    } else {
1164
56.6k
        c->tile[c->n_tile_data].start = 0;
1165
56.6k
        c->tile[c->n_tile_data].end = n_tiles - 1;
1166
56.6k
    }
1167
56.7k
}
1168
1169
117k
ptrdiff_t dav1d_parse_obus(Dav1dContext *const c, Dav1dData *const in) {
1170
117k
    GetBits gb;
1171
117k
    int res;
1172
1173
117k
    dav1d_init_get_bits(&gb, in->data, in->sz);
1174
1175
    // obu header
1176
117k
    const int obu_forbidden_bit = dav1d_get_bit(&gb);
1177
117k
    if (c->strict_std_compliance && obu_forbidden_bit) goto error;
1178
117k
    const enum Dav1dObuType type = dav1d_get_bits(&gb, 4);
1179
117k
    const int has_extension = dav1d_get_bit(&gb);
1180
117k
    const int has_length_field = dav1d_get_bit(&gb);
1181
117k
    dav1d_get_bit(&gb); // reserved
1182
1183
117k
    int temporal_id = 0, spatial_id = 0;
1184
117k
    if (has_extension) {
1185
48.5k
        temporal_id = dav1d_get_bits(&gb, 3);
1186
48.5k
        spatial_id = dav1d_get_bits(&gb, 2);
1187
48.5k
        dav1d_get_bits(&gb, 3); // reserved
1188
48.5k
    }
1189
1190
117k
    if (has_length_field) {
1191
79.6k
        const size_t len = dav1d_get_uleb128(&gb);
1192
79.6k
        if (len > (size_t)(gb.ptr_end - gb.ptr)) goto error;
1193
79.1k
        gb.ptr_end = gb.ptr + len;
1194
79.1k
    }
1195
116k
    if (gb.error) goto error;
1196
1197
    // We must have read a whole number of bytes at this point (1 byte
1198
    // for the header and whole bytes at a time when reading the
1199
    // leb128 length field).
1200
116k
    assert(gb.bits_left == 0);
1201
1202
    // skip obu not belonging to the selected temporal/spatial layer
1203
116k
    if (type != DAV1D_OBU_SEQ_HDR && type != DAV1D_OBU_TD &&
1204
71.1k
        has_extension && c->operating_point_idc != 0)
1205
453
    {
1206
453
        const int in_temporal_layer = (c->operating_point_idc >> temporal_id) & 1;
1207
453
        const int in_spatial_layer = (c->operating_point_idc >> (spatial_id + 8)) & 1;
1208
453
        if (!in_temporal_layer || !in_spatial_layer)
1209
264
            return gb.ptr_end - gb.ptr_start;
1210
453
    }
1211
1212
115k
    switch (type) {
1213
39.7k
    case DAV1D_OBU_SEQ_HDR: {
1214
39.7k
        Dav1dRef *ref = dav1d_ref_create_using_pool(c->seq_hdr_pool,
1215
39.7k
                                                    sizeof(Dav1dSequenceHeader));
1216
39.7k
        if (!ref) return DAV1D_ERR(ENOMEM);
1217
39.7k
        Dav1dSequenceHeader *seq_hdr = ref->data;
1218
39.7k
        if ((res = parse_seq_hdr(seq_hdr, &gb, c->strict_std_compliance)) < 0) {
1219
273
            dav1d_log(c, "Error parsing sequence header\n");
1220
273
            dav1d_ref_dec(&ref);
1221
273
            goto error;
1222
273
        }
1223
1224
39.4k
        const int op_idx =
1225
39.4k
            c->operating_point < seq_hdr->num_operating_points ? c->operating_point : 0;
1226
39.4k
        c->operating_point_idc = seq_hdr->operating_points[op_idx].idc;
1227
39.4k
        const unsigned spatial_mask = c->operating_point_idc >> 8;
1228
39.4k
        c->max_spatial_id = spatial_mask ? ulog2(spatial_mask) : 0;
1229
1230
        // If we have read a sequence header which is different from
1231
        // the old one, this is a new video sequence and can't use any
1232
        // previous state. Free that state.
1233
1234
39.4k
        if (!c->seq_hdr) {
1235
39.0k
            c->frame_hdr = NULL;
1236
39.0k
            c->frame_flags |= PICTURE_FLAG_NEW_SEQUENCE;
1237
        // see 7.5, operating_parameter_info is allowed to change in
1238
        // sequence headers of a single sequence
1239
39.0k
        } else if (memcmp(seq_hdr, c->seq_hdr, offsetof(Dav1dSequenceHeader, operating_parameter_info))) {
1240
375
            c->frame_hdr = NULL;
1241
375
            c->mastering_display = NULL;
1242
375
            c->content_light = NULL;
1243
375
            dav1d_ref_dec(&c->mastering_display_ref);
1244
375
            dav1d_ref_dec(&c->content_light_ref);
1245
3.37k
            for (int i = 0; i < 8; i++) {
1246
3.00k
                if (c->refs[i].p.p.frame_hdr)
1247
1.84k
                    dav1d_thread_picture_unref(&c->refs[i].p);
1248
3.00k
                dav1d_ref_dec(&c->refs[i].segmap);
1249
3.00k
                dav1d_ref_dec(&c->refs[i].refmvs);
1250
3.00k
                dav1d_cdf_thread_unref(&c->cdf[i]);
1251
3.00k
            }
1252
375
            c->frame_flags |= PICTURE_FLAG_NEW_SEQUENCE;
1253
        // If operating_parameter_info changed, signal it
1254
375
        } else if (memcmp(seq_hdr->operating_parameter_info, c->seq_hdr->operating_parameter_info,
1255
42
                          sizeof(seq_hdr->operating_parameter_info)))
1256
0
        {
1257
0
            c->frame_flags |= PICTURE_FLAG_NEW_OP_PARAMS_INFO;
1258
0
        }
1259
39.4k
        dav1d_ref_dec(&c->seq_hdr_ref);
1260
39.4k
        c->seq_hdr_ref = ref;
1261
39.4k
        c->seq_hdr = seq_hdr;
1262
39.4k
        break;
1263
39.7k
    }
1264
243
    case DAV1D_OBU_REDUNDANT_FRAME_HDR:
1265
243
        if (c->frame_hdr) break;
1266
        // fall-through
1267
50.2k
    case DAV1D_OBU_FRAME:
1268
58.8k
    case DAV1D_OBU_FRAME_HDR:
1269
58.8k
        if (!c->seq_hdr) goto error;
1270
58.8k
        if (!c->frame_hdr_ref) {
1271
57.5k
            c->frame_hdr_ref = dav1d_ref_create_using_pool(c->frame_hdr_pool,
1272
57.5k
                                                           sizeof(Dav1dFrameHeader));
1273
57.5k
            if (!c->frame_hdr_ref) return DAV1D_ERR(ENOMEM);
1274
57.5k
        }
1275
#ifndef NDEBUG
1276
        // ensure that the reference is writable
1277
        assert(dav1d_ref_is_writable(c->frame_hdr_ref));
1278
#endif
1279
58.8k
        c->frame_hdr = c->frame_hdr_ref->data;
1280
58.8k
        memset(c->frame_hdr, 0, sizeof(*c->frame_hdr));
1281
58.8k
        c->frame_hdr->temporal_id = temporal_id;
1282
58.8k
        c->frame_hdr->spatial_id = spatial_id;
1283
58.8k
        if ((res = parse_frame_hdr(c, &gb)) < 0) {
1284
294
            c->frame_hdr = NULL;
1285
294
            goto error;
1286
294
        }
1287
58.6k
        for (int n = 0; n < c->n_tile_data; n++)
1288
12
            dav1d_data_unref_internal(&c->tile[n].data);
1289
58.5k
        c->n_tile_data = 0;
1290
58.5k
        c->n_tiles = 0;
1291
58.5k
        if (type != DAV1D_OBU_FRAME) {
1292
            // This is actually a frame header OBU so read the
1293
            // trailing bit and check for overrun.
1294
8.89k
            if (check_trailing_bits(&gb, c->strict_std_compliance) < 0) {
1295
108
                c->frame_hdr = NULL;
1296
108
                goto error;
1297
108
            }
1298
8.89k
        }
1299
1300
58.4k
        if (c->frame_size_limit && (int64_t)c->frame_hdr->width[1] *
1301
58.4k
            c->frame_hdr->height > c->frame_size_limit)
1302
60
        {
1303
60
            dav1d_log(c, "Frame size %dx%d exceeds limit %u\n", c->frame_hdr->width[1],
1304
60
                      c->frame_hdr->height, c->frame_size_limit);
1305
60
            c->frame_hdr = NULL;
1306
60
            return DAV1D_ERR(ERANGE);
1307
60
        }
1308
1309
58.4k
        if (type != DAV1D_OBU_FRAME)
1310
8.78k
            break;
1311
        // OBU_FRAMEs shouldn't be signaled with show_existing_frame
1312
49.6k
        if (c->frame_hdr->show_existing_frame) {
1313
18
            c->frame_hdr = NULL;
1314
18
            goto error;
1315
18
        }
1316
1317
        // This is the frame header at the start of a frame OBU.
1318
        // There's no trailing bit at the end to skip, but we do need
1319
        // to align to the next byte.
1320
49.6k
        dav1d_bytealign_get_bits(&gb);
1321
        // fall-through
1322
56.7k
    case DAV1D_OBU_TILE_GRP: {
1323
56.7k
        if (!c->frame_hdr) goto error;
1324
56.7k
        if (c->n_tile_data_alloc < c->n_tile_data + 1) {
1325
38.4k
            if ((c->n_tile_data + 1) > INT_MAX / (int)sizeof(*c->tile)) goto error;
1326
38.4k
            struct Dav1dTileGroup *tile = dav1d_realloc(ALLOC_TILE, c->tile,
1327
38.4k
                                                        (c->n_tile_data + 1) * sizeof(*c->tile));
1328
38.4k
            if (!tile) goto error;
1329
38.4k
            c->tile = tile;
1330
38.4k
            memset(c->tile + c->n_tile_data, 0, sizeof(*c->tile));
1331
38.4k
            c->n_tile_data_alloc = c->n_tile_data + 1;
1332
38.4k
        }
1333
56.7k
        parse_tile_hdr(c, &gb);
1334
        // Align to the next byte boundary and check for overrun.
1335
56.7k
        dav1d_bytealign_get_bits(&gb);
1336
56.7k
        if (gb.error) goto error;
1337
1338
56.3k
        dav1d_data_ref(&c->tile[c->n_tile_data].data, in);
1339
56.3k
        c->tile[c->n_tile_data].data.data = gb.ptr;
1340
56.3k
        c->tile[c->n_tile_data].data.sz = (size_t)(gb.ptr_end - gb.ptr);
1341
        // ensure tile groups are in order and sane, see 6.10.1
1342
56.3k
        if (c->tile[c->n_tile_data].start > c->tile[c->n_tile_data].end ||
1343
56.3k
            c->tile[c->n_tile_data].start != c->n_tiles)
1344
21
        {
1345
45
            for (int i = 0; i <= c->n_tile_data; i++)
1346
24
                dav1d_data_unref_internal(&c->tile[i].data);
1347
21
            c->n_tile_data = 0;
1348
21
            c->n_tiles = 0;
1349
21
            goto error;
1350
21
        }
1351
56.3k
        c->n_tiles += 1 + c->tile[c->n_tile_data].end -
1352
56.3k
                          c->tile[c->n_tile_data].start;
1353
56.3k
        c->n_tile_data++;
1354
56.3k
        break;
1355
56.3k
    }
1356
183
    case DAV1D_OBU_METADATA: {
1357
183
#define DEBUG_OBU_METADATA 0
1358
#if DEBUG_OBU_METADATA
1359
        const uint8_t *const init_ptr = gb.ptr;
1360
#endif
1361
        // obu metadta type field
1362
183
        const enum ObuMetaType meta_type = dav1d_get_uleb128(&gb);
1363
183
        if (gb.error) goto error;
1364
1365
177
        switch (meta_type) {
1366
15
        case OBU_META_HDR_CLL: {
1367
15
            Dav1dRef *ref = dav1d_ref_create(ALLOC_OBU_META,
1368
15
                                             sizeof(Dav1dContentLightLevel));
1369
15
            if (!ref) return DAV1D_ERR(ENOMEM);
1370
15
            Dav1dContentLightLevel *const content_light = ref->data;
1371
1372
15
            content_light->max_content_light_level = dav1d_get_bits(&gb, 16);
1373
#if DEBUG_OBU_METADATA
1374
            printf("CLLOBU: max-content-light-level: %d [off=%td]\n",
1375
                   content_light->max_content_light_level,
1376
                   (gb.ptr - init_ptr) * 8 - gb.bits_left);
1377
#endif
1378
15
            content_light->max_frame_average_light_level = dav1d_get_bits(&gb, 16);
1379
#if DEBUG_OBU_METADATA
1380
            printf("CLLOBU: max-frame-average-light-level: %d [off=%td]\n",
1381
                   content_light->max_frame_average_light_level,
1382
                   (gb.ptr - init_ptr) * 8 - gb.bits_left);
1383
#endif
1384
1385
15
            if (check_trailing_bits(&gb, c->strict_std_compliance) < 0) {
1386
3
                dav1d_ref_dec(&ref);
1387
3
                goto error;
1388
3
            }
1389
1390
12
            dav1d_ref_dec(&c->content_light_ref);
1391
12
            c->content_light = content_light;
1392
12
            c->content_light_ref = ref;
1393
12
            break;
1394
15
        }
1395
12
        case OBU_META_HDR_MDCV: {
1396
12
            Dav1dRef *ref = dav1d_ref_create(ALLOC_OBU_META,
1397
12
                                             sizeof(Dav1dMasteringDisplay));
1398
12
            if (!ref) return DAV1D_ERR(ENOMEM);
1399
12
            Dav1dMasteringDisplay *const mastering_display = ref->data;
1400
1401
48
            for (int i = 0; i < 3; i++) {
1402
36
                mastering_display->primaries[i][0] = dav1d_get_bits(&gb, 16);
1403
36
                mastering_display->primaries[i][1] = dav1d_get_bits(&gb, 16);
1404
#if DEBUG_OBU_METADATA
1405
                printf("MDCVOBU: primaries[%d]: (%d, %d) [off=%td]\n", i,
1406
                       mastering_display->primaries[i][0],
1407
                       mastering_display->primaries[i][1],
1408
                       (gb.ptr - init_ptr) * 8 - gb.bits_left);
1409
#endif
1410
36
            }
1411
12
            mastering_display->white_point[0] = dav1d_get_bits(&gb, 16);
1412
#if DEBUG_OBU_METADATA
1413
            printf("MDCVOBU: white-point-x: %d [off=%td]\n",
1414
                   mastering_display->white_point[0],
1415
                   (gb.ptr - init_ptr) * 8 - gb.bits_left);
1416
#endif
1417
12
            mastering_display->white_point[1] = dav1d_get_bits(&gb, 16);
1418
#if DEBUG_OBU_METADATA
1419
            printf("MDCVOBU: white-point-y: %d [off=%td]\n",
1420
                   mastering_display->white_point[1],
1421
                   (gb.ptr - init_ptr) * 8 - gb.bits_left);
1422
#endif
1423
12
            mastering_display->max_luminance = dav1d_get_bits(&gb, 32);
1424
#if DEBUG_OBU_METADATA
1425
            printf("MDCVOBU: max-luminance: %d [off=%td]\n",
1426
                   mastering_display->max_luminance,
1427
                   (gb.ptr - init_ptr) * 8 - gb.bits_left);
1428
#endif
1429
12
            mastering_display->min_luminance = dav1d_get_bits(&gb, 32);
1430
#if DEBUG_OBU_METADATA
1431
            printf("MDCVOBU: min-luminance: %d [off=%td]\n",
1432
                   mastering_display->min_luminance,
1433
                   (gb.ptr - init_ptr) * 8 - gb.bits_left);
1434
#endif
1435
12
            if (check_trailing_bits(&gb, c->strict_std_compliance) < 0) {
1436
3
                dav1d_ref_dec(&ref);
1437
3
                goto error;
1438
3
            }
1439
1440
9
            dav1d_ref_dec(&c->mastering_display_ref);
1441
9
            c->mastering_display = mastering_display;
1442
9
            c->mastering_display_ref = ref;
1443
9
            break;
1444
12
        }
1445
27
        case OBU_META_ITUT_T35: {
1446
27
            ptrdiff_t payload_size = gb.ptr_end - gb.ptr;
1447
            // Don't take into account all the trailing bits for payload_size
1448
243
            while (payload_size > 0 && !gb.ptr[payload_size - 1])
1449
216
                payload_size--; // trailing_zero_bit x 8
1450
27
            payload_size--; // trailing_one_bit + trailing_zero_bit x 7
1451
1452
27
            int country_code_extension_byte = 0;
1453
27
            const int country_code = dav1d_get_bits(&gb, 8);
1454
27
            payload_size--;
1455
27
            if (country_code == 0xFF) {
1456
3
                country_code_extension_byte = dav1d_get_bits(&gb, 8);
1457
3
                payload_size--;
1458
3
            }
1459
1460
27
            if (payload_size <= 0 || gb.ptr[payload_size] != 0x80) {
1461
27
                dav1d_log(c, "Malformed ITU-T T.35 metadata message format\n");
1462
27
                break;
1463
27
            }
1464
1465
0
            if ((c->n_itut_t35 + 1) > INT_MAX / (int)sizeof(*c->itut_t35)) goto error;
1466
0
            struct Dav1dITUTT35 *itut_t35 = dav1d_realloc(ALLOC_OBU_META, c->itut_t35,
1467
0
                                                          (c->n_itut_t35 + 1) * sizeof(*c->itut_t35));
1468
0
            if (!itut_t35) goto error;
1469
0
            c->itut_t35 = itut_t35;
1470
0
            memset(c->itut_t35 + c->n_itut_t35, 0, sizeof(*c->itut_t35));
1471
1472
0
            struct itut_t35_ctx_context *itut_t35_ctx;
1473
0
            if (!c->n_itut_t35) {
1474
0
                assert(!c->itut_t35_ref);
1475
0
                itut_t35_ctx = dav1d_malloc(ALLOC_OBU_META, sizeof(struct itut_t35_ctx_context));
1476
0
                if (!itut_t35_ctx) goto error;
1477
0
                c->itut_t35_ref = dav1d_ref_init(&itut_t35_ctx->ref, c->itut_t35,
1478
0
                                                 dav1d_picture_free_itut_t35, itut_t35_ctx, 0);
1479
0
            } else {
1480
0
                assert(c->itut_t35_ref && atomic_load(&c->itut_t35_ref->ref_cnt) == 1);
1481
0
                itut_t35_ctx = c->itut_t35_ref->user_data;
1482
0
                c->itut_t35_ref->const_data = (uint8_t *)c->itut_t35;
1483
0
            }
1484
0
            itut_t35_ctx->itut_t35 = c->itut_t35;
1485
0
            itut_t35_ctx->n_itut_t35 = c->n_itut_t35 + 1;
1486
1487
0
            Dav1dITUTT35 *const itut_t35_metadata = &c->itut_t35[c->n_itut_t35];
1488
0
            itut_t35_metadata->payload = dav1d_malloc(ALLOC_OBU_META, payload_size);
1489
0
            if (!itut_t35_metadata->payload) goto error;
1490
1491
0
            itut_t35_metadata->country_code = country_code;
1492
0
            itut_t35_metadata->country_code_extension_byte = country_code_extension_byte;
1493
0
            itut_t35_metadata->payload_size = payload_size;
1494
1495
            // We know that we've read a whole number of bytes and that the
1496
            // payload is within the OBU boundaries, so just use memcpy()
1497
0
            assert(gb.bits_left == 0);
1498
0
            memcpy(itut_t35_metadata->payload, gb.ptr, payload_size);
1499
1500
0
            c->n_itut_t35++;
1501
0
            break;
1502
0
        }
1503
12
        case OBU_META_SCALABILITY:
1504
15
        case OBU_META_TIMECODE:
1505
            // ignore metadata OBUs we don't care about
1506
15
            break;
1507
108
        default:
1508
            // print a warning but don't fail for unknown types
1509
108
            if (meta_type > 31) // Types 6 to 31 are "Unregistered user private", so ignore them.
1510
93
                dav1d_log(c, "Unknown Metadata OBU type %d\n", meta_type);
1511
108
            break;
1512
177
        }
1513
1514
171
        break;
1515
177
    }
1516
5.32k
    case DAV1D_OBU_TD:
1517
5.32k
        c->frame_flags |= PICTURE_FLAG_NEW_TEMPORAL_UNIT;
1518
5.32k
        break;
1519
2.68k
    case DAV1D_OBU_PADDING:
1520
        // ignore OBUs we don't care about
1521
2.68k
        break;
1522
1.92k
    default:
1523
        // print a warning but don't fail for unknown types
1524
1.92k
        dav1d_log(c, "Unknown OBU type %d of size %td\n", type, gb.ptr_end - gb.ptr);
1525
1.92k
        break;
1526
115k
    }
1527
1528
114k
    if (c->seq_hdr && c->frame_hdr) {
1529
65.4k
        if (c->frame_hdr->show_existing_frame) {
1530
168
            if (!c->refs[c->frame_hdr->existing_frame_idx].p.p.frame_hdr) goto error;
1531
165
            switch (c->refs[c->frame_hdr->existing_frame_idx].p.p.frame_hdr->frame_type) {
1532
12
            case DAV1D_FRAME_TYPE_INTER:
1533
33
            case DAV1D_FRAME_TYPE_SWITCH:
1534
33
                if (c->decode_frame_type > DAV1D_DECODEFRAMETYPE_REFERENCE)
1535
0
                    goto skip;
1536
33
                break;
1537
33
            case DAV1D_FRAME_TYPE_INTRA:
1538
12
                if (c->decode_frame_type > DAV1D_DECODEFRAMETYPE_INTRA)
1539
0
                    goto skip;
1540
                // fall-through
1541
132
            default:
1542
132
                break;
1543
165
            }
1544
165
            if (!c->refs[c->frame_hdr->existing_frame_idx].p.p.data[0]) goto error;
1545
165
            if (c->strict_std_compliance &&
1546
0
                !c->refs[c->frame_hdr->existing_frame_idx].p.showable)
1547
0
            {
1548
0
                goto error;
1549
0
            }
1550
165
            if (c->n_fc == 1) {
1551
0
                dav1d_thread_picture_ref(&c->out,
1552
0
                                         &c->refs[c->frame_hdr->existing_frame_idx].p);
1553
0
                dav1d_picture_copy_props(&c->out.p,
1554
0
                                         c->content_light, c->content_light_ref,
1555
0
                                         c->mastering_display, c->mastering_display_ref,
1556
0
                                         c->itut_t35, c->itut_t35_ref, c->n_itut_t35,
1557
0
                                         &in->m);
1558
                // Must be removed from the context after being attached to the frame
1559
0
                dav1d_ref_dec(&c->itut_t35_ref);
1560
0
                c->itut_t35 = NULL;
1561
0
                c->n_itut_t35 = 0;
1562
0
                c->event_flags |= dav1d_picture_get_event_flags(&c->refs[c->frame_hdr->existing_frame_idx].p);
1563
165
            } else {
1564
165
                pthread_mutex_lock(&c->task_thread.lock);
1565
                // need to append this to the frame output queue
1566
165
                const unsigned next = c->frame_thread.next++;
1567
165
                if (c->frame_thread.next == c->n_fc)
1568
0
                    c->frame_thread.next = 0;
1569
1570
165
                Dav1dFrameContext *const f = &c->fc[next];
1571
165
                while (f->n_tile_data > 0)
1572
0
                    pthread_cond_wait(&f->task_thread.cond,
1573
0
                                      &f->task_thread.ttd->lock);
1574
165
                Dav1dThreadPicture *const out_delayed =
1575
165
                    &c->frame_thread.out_delayed[next];
1576
165
                if (out_delayed->p.data[0] || atomic_load(&f->task_thread.error)) {
1577
0
                    unsigned first = atomic_load(&c->task_thread.first);
1578
0
                    if (first + 1U < c->n_fc)
1579
0
                        atomic_fetch_add(&c->task_thread.first, 1U);
1580
0
                    else
1581
0
                        atomic_store(&c->task_thread.first, 0);
1582
0
                    atomic_compare_exchange_strong(&c->task_thread.reset_task_cur,
1583
0
                                                   &first, UINT_MAX);
1584
0
                    if (c->task_thread.cur && c->task_thread.cur < c->n_fc)
1585
0
                        c->task_thread.cur--;
1586
0
                }
1587
165
                const int error = f->task_thread.retval;
1588
165
                if (error) {
1589
0
                    c->cached_error = error;
1590
0
                    f->task_thread.retval = 0;
1591
0
                    dav1d_data_props_copy(&c->cached_error_props, &out_delayed->p.m);
1592
0
                    dav1d_thread_picture_unref(out_delayed);
1593
165
                } else if (out_delayed->p.data[0]) {
1594
0
                    const unsigned progress = atomic_load_explicit(&out_delayed->progress[1],
1595
0
                                                                   memory_order_relaxed);
1596
0
                    if ((out_delayed->visible || c->output_invisible_frames) &&
1597
0
                        progress != FRAME_ERROR)
1598
0
                    {
1599
0
                        dav1d_thread_picture_ref(&c->out, out_delayed);
1600
0
                        c->event_flags |= dav1d_picture_get_event_flags(out_delayed);
1601
0
                    }
1602
0
                    dav1d_thread_picture_unref(out_delayed);
1603
0
                }
1604
165
                dav1d_thread_picture_ref(out_delayed,
1605
165
                                         &c->refs[c->frame_hdr->existing_frame_idx].p);
1606
165
                out_delayed->visible = 1;
1607
165
                dav1d_picture_copy_props(&out_delayed->p,
1608
165
                                         c->content_light, c->content_light_ref,
1609
165
                                         c->mastering_display, c->mastering_display_ref,
1610
165
                                         c->itut_t35, c->itut_t35_ref, c->n_itut_t35,
1611
165
                                         &in->m);
1612
                // Must be removed from the context after being attached to the frame
1613
165
                dav1d_ref_dec(&c->itut_t35_ref);
1614
165
                c->itut_t35 = NULL;
1615
165
                c->n_itut_t35 = 0;
1616
1617
165
                pthread_mutex_unlock(&c->task_thread.lock);
1618
165
            }
1619
165
            if (c->refs[c->frame_hdr->existing_frame_idx].p.p.frame_hdr->frame_type == DAV1D_FRAME_TYPE_KEY) {
1620
120
                const int r = c->frame_hdr->existing_frame_idx;
1621
120
                c->refs[r].p.showable = 0;
1622
1.08k
                for (int i = 0; i < 8; i++) {
1623
960
                    if (i == r) continue;
1624
1625
840
                    if (c->refs[i].p.p.frame_hdr)
1626
789
                        dav1d_thread_picture_unref(&c->refs[i].p);
1627
840
                    dav1d_thread_picture_ref(&c->refs[i].p, &c->refs[r].p);
1628
1629
840
                    dav1d_cdf_thread_unref(&c->cdf[i]);
1630
840
                    dav1d_cdf_thread_ref(&c->cdf[i], &c->cdf[r]);
1631
1632
840
                    dav1d_ref_dec(&c->refs[i].segmap);
1633
840
                    c->refs[i].segmap = c->refs[r].segmap;
1634
840
                    if (c->refs[r].segmap)
1635
210
                        dav1d_ref_inc(c->refs[r].segmap);
1636
840
                    dav1d_ref_dec(&c->refs[i].refmvs);
1637
840
                }
1638
120
            }
1639
165
            c->frame_hdr = NULL;
1640
65.2k
        } else if (c->n_tiles == c->frame_hdr->tiling.cols * c->frame_hdr->tiling.rows) {
1641
56.3k
            switch (c->frame_hdr->frame_type) {
1642
10.3k
            case DAV1D_FRAME_TYPE_INTER:
1643
14.7k
            case DAV1D_FRAME_TYPE_SWITCH:
1644
14.7k
                if (c->decode_frame_type > DAV1D_DECODEFRAMETYPE_REFERENCE ||
1645
14.7k
                    (c->decode_frame_type == DAV1D_DECODEFRAMETYPE_REFERENCE &&
1646
0
                     !c->frame_hdr->refresh_frame_flags))
1647
0
                    goto skip;
1648
14.7k
                break;
1649
14.7k
            case DAV1D_FRAME_TYPE_INTRA:
1650
168
                if (c->decode_frame_type > DAV1D_DECODEFRAMETYPE_INTRA ||
1651
168
                    (c->decode_frame_type == DAV1D_DECODEFRAMETYPE_REFERENCE &&
1652
0
                     !c->frame_hdr->refresh_frame_flags))
1653
0
                    goto skip;
1654
                // fall-through
1655
41.5k
            default:
1656
41.5k
                break;
1657
56.3k
            }
1658
56.3k
            if (!c->n_tile_data)
1659
0
                goto error;
1660
56.3k
            if ((res = dav1d_submit_frame(c)) < 0)
1661
90
                return res;
1662
56.2k
            assert(!c->n_tile_data);
1663
56.2k
            c->frame_hdr = NULL;
1664
56.2k
            c->n_tiles = 0;
1665
56.2k
        }
1666
65.4k
    }
1667
1668
114k
    return gb.ptr_end - gb.ptr_start;
1669
1670
0
skip:
1671
    // update refs with only the headers in case we skip the frame
1672
0
    for (int i = 0; i < 8; i++) {
1673
0
        if (c->frame_hdr->refresh_frame_flags & (1 << i)) {
1674
0
            dav1d_thread_picture_unref(&c->refs[i].p);
1675
0
            c->refs[i].p.p.frame_hdr = c->frame_hdr;
1676
0
            c->refs[i].p.p.seq_hdr = c->seq_hdr;
1677
0
            c->refs[i].p.p.frame_hdr_ref = c->frame_hdr_ref;
1678
0
            c->refs[i].p.p.seq_hdr_ref = c->seq_hdr_ref;
1679
0
            dav1d_ref_inc(c->frame_hdr_ref);
1680
0
            dav1d_ref_inc(c->seq_hdr_ref);
1681
0
        }
1682
0
    }
1683
1684
0
    dav1d_ref_dec(&c->frame_hdr_ref);
1685
0
    c->frame_hdr = NULL;
1686
0
    c->n_tiles = 0;
1687
1688
0
    return gb.ptr_end - gb.ptr_start;
1689
1690
2.18k
error:
1691
2.18k
    dav1d_data_props_copy(&c->cached_error_props, &in->m);
1692
2.18k
    dav1d_log(c, gb.error ? "Overrun in OBU bit buffer\n" :
1693
2.18k
                            "Error parsing OBU data\n");
1694
2.18k
    return DAV1D_ERR(EINVAL);
1695
114k
}