Coverage Report

Created: 2026-02-14 06:59

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libvpx/vpx_dsp/bitreader_buffer.c
Line
Count
Source
1
/*
2
 *  Copyright (c) 2013 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 "./vpx_config.h"
11
#include "./bitreader_buffer.h"
12
13
182k
size_t vpx_rb_bytes_read(struct vpx_read_bit_buffer *rb) {
14
182k
  return (rb->bit_offset + 7) >> 3;
15
182k
}
16
17
33.0M
int vpx_rb_read_bit(struct vpx_read_bit_buffer *rb) {
18
33.0M
  const size_t off = rb->bit_offset;
19
33.0M
  const size_t p = off >> 3;
20
33.0M
  const int q = 7 - (int)(off & 0x7);
21
33.0M
  if (rb->bit_buffer + p < rb->bit_buffer_end) {
22
32.9M
    const int bit = (rb->bit_buffer[p] >> q) & 1;
23
32.9M
    rb->bit_offset = off + 1;
24
32.9M
    return bit;
25
32.9M
  } else {
26
31.4k
    if (rb->error_handler != NULL) rb->error_handler(rb->error_handler_data);
27
31.4k
    return 0;
28
31.4k
  }
29
33.0M
}
30
31
3.78M
int vpx_rb_read_literal(struct vpx_read_bit_buffer *rb, int bits) {
32
3.78M
  int value = 0, bit;
33
29.7M
  for (bit = bits - 1; bit >= 0; bit--) value |= vpx_rb_read_bit(rb) << bit;
34
3.78M
  return value;
35
3.78M
}
36
37
342k
int vpx_rb_read_signed_literal(struct vpx_read_bit_buffer *rb, int bits) {
38
342k
  const int value = vpx_rb_read_literal(rb, bits);
39
342k
  return vpx_rb_read_bit(rb) ? -value : value;
40
342k
}
41
42
0
int vpx_rb_read_inv_signed_literal(struct vpx_read_bit_buffer *rb, int bits) {
43
0
  return vpx_rb_read_signed_literal(rb, bits);
44
0
}