Coverage Report

Created: 2025-11-16 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libvpx/vpx_dsp/bitreader.c
Line
Count
Source
1
/*
2
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3
 *
4
 *  Use of this source code is governed by a BSD-style license
5
 *  that can be found in the LICENSE file in the root of the source
6
 *  tree. An additional intellectual property rights grant can be found
7
 *  in the file PATENTS.  All contributing project authors may
8
 *  be found in the AUTHORS file in the root of the source tree.
9
 */
10
#include <stdlib.h>
11
12
#include "./vpx_config.h"
13
14
#include "vpx_dsp/bitreader.h"
15
#include "vpx_dsp/prob.h"
16
#include "vpx_dsp/vpx_dsp_common.h"
17
#include "vpx_ports/mem.h"
18
#include "vpx_mem/vpx_mem.h"
19
#include "vpx_util/endian_inl.h"
20
21
int vpx_reader_init(vpx_reader *r, const uint8_t *buffer, size_t size,
22
332k
                    vpx_decrypt_cb decrypt_cb, void *decrypt_state) {
23
332k
  if (size && !buffer) {
24
0
    return 1;
25
332k
  } else {
26
332k
    r->buffer_end = buffer + size;
27
332k
    r->buffer = buffer;
28
332k
    r->value = 0;
29
332k
    r->count = -8;
30
332k
    r->range = 255;
31
332k
    r->decrypt_cb = decrypt_cb;
32
332k
    r->decrypt_state = decrypt_state;
33
332k
    vpx_reader_fill(r);
34
332k
    return vpx_read_bit(r) != 0;  // marker bit
35
332k
  }
36
332k
}
37
38
9.12M
void vpx_reader_fill(vpx_reader *r) {
39
9.12M
  const uint8_t *const buffer_end = r->buffer_end;
40
9.12M
  const uint8_t *buffer = r->buffer;
41
9.12M
  const uint8_t *buffer_start = buffer;
42
9.12M
  BD_VALUE value = r->value;
43
9.12M
  int count = r->count;
44
9.12M
  const size_t bytes_left = buffer_end - buffer;
45
9.12M
  const size_t bits_left = bytes_left * CHAR_BIT;
46
9.12M
  int shift = BD_VALUE_SIZE - CHAR_BIT - (count + CHAR_BIT);
47
48
9.12M
  if (r->decrypt_cb) {
49
0
    size_t n = VPXMIN(sizeof(r->clear_buffer), bytes_left);
50
0
    r->decrypt_cb(r->decrypt_state, buffer, r->clear_buffer, (int)n);
51
0
    buffer = r->clear_buffer;
52
0
    buffer_start = r->clear_buffer;
53
0
  }
54
9.12M
  if (bits_left > BD_VALUE_SIZE) {
55
8.97M
    const int bits = (shift & 0xfffffff8) + CHAR_BIT;
56
8.97M
    BD_VALUE nv;
57
8.97M
    BD_VALUE big_endian_values;
58
8.97M
    memcpy(&big_endian_values, buffer, sizeof(BD_VALUE));
59
8.97M
#if SIZE_MAX == 0xffffffffffffffffULL
60
8.97M
    big_endian_values = HToBE64(big_endian_values);
61
#else
62
    big_endian_values = HToBE32(big_endian_values);
63
#endif
64
8.97M
    nv = big_endian_values >> (BD_VALUE_SIZE - bits);
65
8.97M
    count += bits;
66
8.97M
    buffer += (bits >> 3);
67
8.97M
    value = r->value | (nv << (shift & 0x7));
68
8.97M
  } else {
69
148k
    const int bits_over = (int)(shift + CHAR_BIT - (int)bits_left);
70
148k
    int loop_end = 0;
71
148k
    if (bits_over >= 0) {
72
142k
      count += LOTS_OF_BITS;
73
142k
      loop_end = bits_over;
74
142k
    }
75
76
148k
    if (bits_over < 0 || bits_left) {
77
853k
      while (shift >= loop_end) {
78
704k
        count += CHAR_BIT;
79
704k
        value |= (BD_VALUE)*buffer++ << shift;
80
704k
        shift -= CHAR_BIT;
81
704k
      }
82
148k
    }
83
148k
  }
84
85
  // NOTE: Variable 'buffer' may not relate to 'r->buffer' after decryption,
86
  // so we increase 'r->buffer' by the amount that 'buffer' moved, rather than
87
  // assign 'buffer' to 'r->buffer'.
88
9.12M
  r->buffer += buffer - buffer_start;
89
9.12M
  r->value = value;
90
9.12M
  r->count = count;
91
9.12M
}
92
93
120k
const uint8_t *vpx_reader_find_end(vpx_reader *r) {
94
  // Find the end of the coded buffer
95
516k
  while (r->count > CHAR_BIT && r->count < BD_VALUE_SIZE) {
96
    r->count -= CHAR_BIT;
97
395k
    r->buffer--;
98
395k
  }
99
120k
  return r->buffer;
100
120k
}