Coverage Report

Created: 2026-05-23 07:06

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libvpx/vpx_dsp/bitwriter.h
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
11
#ifndef VPX_VPX_DSP_BITWRITER_H_
12
#define VPX_VPX_DSP_BITWRITER_H_
13
14
#include <stdio.h>
15
16
#include "vpx_ports/compiler_attributes.h"
17
#include "vpx_ports/mem.h"
18
19
#include "vpx_dsp/prob.h"
20
#if CONFIG_BITSTREAM_DEBUG
21
#include "vpx_util/vpx_debug_util.h"
22
#endif  // CONFIG_BITSTREAM_DEBUG
23
24
#ifdef __cplusplus
25
extern "C" {
26
#endif
27
28
typedef struct vpx_writer {
29
  unsigned int lowvalue;
30
  unsigned int range;
31
  int count;
32
  // Whether there has been an error.
33
  int error;
34
  // We maintain the invariant that pos <= size, i.e., we never write beyond
35
  // the end of the buffer. If pos would be incremented to be greater than
36
  // size, leave pos unchanged and set error to 1.
37
  unsigned int pos;
38
  unsigned int size;
39
  uint8_t *buffer;
40
} vpx_writer;
41
42
void vpx_start_encode(vpx_writer *br, uint8_t *source, size_t size);
43
// Returns 0 on success and returns -1 in case of error.
44
int vpx_stop_encode(vpx_writer *br);
45
46
static INLINE VPX_NO_UNSIGNED_SHIFT_CHECK void vpx_write(vpx_writer *br,
47
                                                         int bit,
48
1.04G
                                                         int probability) {
49
1.04G
  unsigned int split;
50
1.04G
  int count = br->count;
51
1.04G
  unsigned int range = br->range;
52
1.04G
  unsigned int lowvalue = br->lowvalue;
53
1.04G
  int shift;
54
55
#if CONFIG_BITSTREAM_DEBUG
56
  /*
57
  int queue_r = 0;
58
  int frame_idx_r = 0;
59
  int queue_w = bitstream_queue_get_write();
60
  int frame_idx_w = bitstream_queue_get_frame_write();
61
  if (frame_idx_w == frame_idx_r && queue_w == queue_r) {
62
    fprintf(stderr, "\n *** bitstream queue at frame_idx_w %d queue_w %d\n",
63
            frame_idx_w, queue_w);
64
    assert(0);
65
  }
66
  */
67
  bitstream_queue_push(bit, probability);
68
#endif
69
70
1.04G
  split = 1 + (((range - 1) * probability) >> 8);
71
72
1.04G
  range = split;
73
74
1.04G
  if (bit) {
75
617M
    lowvalue += split;
76
617M
    range = br->range - split;
77
617M
  }
78
79
1.04G
  shift = vpx_norm[range];
80
81
1.04G
  range <<= shift;
82
1.04G
  count += shift;
83
84
1.04G
  if (count >= 0) {
85
89.0M
    int offset = shift - count;
86
87
89.0M
    if (!br->error) {
88
88.9M
      if ((lowvalue << (offset - 1)) & 0x80000000) {
89
501
        int x = (int)br->pos - 1;
90
91
759
        while (x >= 0 && br->buffer[x] == 0xff) {
92
258
          br->buffer[x] = 0;
93
258
          x--;
94
258
        }
95
96
        // TODO(wtc): How to prove x >= 0?
97
501
        br->buffer[x] += 1;
98
501
      }
99
100
88.9M
      if (br->pos < br->size) {
101
88.9M
        br->buffer[br->pos++] = (lowvalue >> (24 - offset)) & 0xff;
102
88.9M
      } else {
103
95
        br->error = 1;
104
95
      }
105
88.9M
    }
106
89.0M
    lowvalue <<= offset;
107
89.0M
    shift = count;
108
89.0M
    lowvalue &= 0xffffff;
109
89.0M
    count -= 8;
110
89.0M
  }
111
112
1.04G
  lowvalue <<= shift;
113
1.04G
  br->count = count;
114
1.04G
  br->lowvalue = lowvalue;
115
1.04G
  br->range = range;
116
1.04G
}
Unexecuted instantiation: vp9_frame_scale.c:vpx_write
Unexecuted instantiation: vp9_encoder.c:vpx_write
Unexecuted instantiation: vp9_picklpf.c:vpx_write
Unexecuted instantiation: vp9_quantize.c:vpx_write
Unexecuted instantiation: vp9_ratectrl.c:vpx_write
Unexecuted instantiation: vp9_rd.c:vpx_write
Unexecuted instantiation: vp9_segmentation.c:vpx_write
Unexecuted instantiation: vp9_speed_features.c:vpx_write
Unexecuted instantiation: vp9_svc_layercontext.c:vpx_write
Unexecuted instantiation: vp9_tokenize.c:vpx_write
Unexecuted instantiation: vp9_aq_variance.c:vpx_write
Unexecuted instantiation: vp9_aq_360.c:vpx_write
Unexecuted instantiation: vp9_aq_cyclicrefresh.c:vpx_write
Unexecuted instantiation: vp9_aq_complexity.c:vpx_write
Unexecuted instantiation: vp9_alt_ref_aq.c:vpx_write
Unexecuted instantiation: vp9_skin_detection.c:vpx_write
Unexecuted instantiation: vp9_noise_estimate.c:vpx_write
Unexecuted instantiation: vp9_ext_ratectrl.c:vpx_write
Unexecuted instantiation: vp9_temporal_filter.c:vpx_write
Unexecuted instantiation: vp9_tpl_model.c:vpx_write
Unexecuted instantiation: vp9_mbgraph.c:vpx_write
Unexecuted instantiation: temporal_filter_sse4.c:vpx_write
Unexecuted instantiation: highbd_temporal_filter_sse4.c:vpx_write
Unexecuted instantiation: vp9_cx_iface.c:vpx_write
vp9_bitstream.c:vpx_write
Line
Count
Source
48
1.01G
                                                         int probability) {
49
1.01G
  unsigned int split;
50
1.01G
  int count = br->count;
51
1.01G
  unsigned int range = br->range;
52
1.01G
  unsigned int lowvalue = br->lowvalue;
53
1.01G
  int shift;
54
55
#if CONFIG_BITSTREAM_DEBUG
56
  /*
57
  int queue_r = 0;
58
  int frame_idx_r = 0;
59
  int queue_w = bitstream_queue_get_write();
60
  int frame_idx_w = bitstream_queue_get_frame_write();
61
  if (frame_idx_w == frame_idx_r && queue_w == queue_r) {
62
    fprintf(stderr, "\n *** bitstream queue at frame_idx_w %d queue_w %d\n",
63
            frame_idx_w, queue_w);
64
    assert(0);
65
  }
66
  */
67
  bitstream_queue_push(bit, probability);
68
#endif
69
70
1.01G
  split = 1 + (((range - 1) * probability) >> 8);
71
72
1.01G
  range = split;
73
74
1.01G
  if (bit) {
75
610M
    lowvalue += split;
76
610M
    range = br->range - split;
77
610M
  }
78
79
1.01G
  shift = vpx_norm[range];
80
81
1.01G
  range <<= shift;
82
1.01G
  count += shift;
83
84
1.01G
  if (count >= 0) {
85
87.3M
    int offset = shift - count;
86
87
87.3M
    if (!br->error) {
88
87.3M
      if ((lowvalue << (offset - 1)) & 0x80000000) {
89
488
        int x = (int)br->pos - 1;
90
91
745
        while (x >= 0 && br->buffer[x] == 0xff) {
92
257
          br->buffer[x] = 0;
93
257
          x--;
94
257
        }
95
96
        // TODO(wtc): How to prove x >= 0?
97
488
        br->buffer[x] += 1;
98
488
      }
99
100
87.3M
      if (br->pos < br->size) {
101
87.3M
        br->buffer[br->pos++] = (lowvalue >> (24 - offset)) & 0xff;
102
87.3M
      } else {
103
89
        br->error = 1;
104
89
      }
105
87.3M
    }
106
87.3M
    lowvalue <<= offset;
107
87.3M
    shift = count;
108
87.3M
    lowvalue &= 0xffffff;
109
87.3M
    count -= 8;
110
87.3M
  }
111
112
1.01G
  lowvalue <<= shift;
113
1.01G
  br->count = count;
114
1.01G
  br->lowvalue = lowvalue;
115
1.01G
  br->range = range;
116
1.01G
}
Unexecuted instantiation: vp9_context_tree.c:vpx_write
Unexecuted instantiation: vp9_encodeframe.c:vpx_write
Unexecuted instantiation: vp9_encodemb.c:vpx_write
vp9_encodemv.c:vpx_write
Line
Count
Source
48
11.0M
                                                         int probability) {
49
11.0M
  unsigned int split;
50
11.0M
  int count = br->count;
51
11.0M
  unsigned int range = br->range;
52
11.0M
  unsigned int lowvalue = br->lowvalue;
53
11.0M
  int shift;
54
55
#if CONFIG_BITSTREAM_DEBUG
56
  /*
57
  int queue_r = 0;
58
  int frame_idx_r = 0;
59
  int queue_w = bitstream_queue_get_write();
60
  int frame_idx_w = bitstream_queue_get_frame_write();
61
  if (frame_idx_w == frame_idx_r && queue_w == queue_r) {
62
    fprintf(stderr, "\n *** bitstream queue at frame_idx_w %d queue_w %d\n",
63
            frame_idx_w, queue_w);
64
    assert(0);
65
  }
66
  */
67
  bitstream_queue_push(bit, probability);
68
#endif
69
70
11.0M
  split = 1 + (((range - 1) * probability) >> 8);
71
72
11.0M
  range = split;
73
74
11.0M
  if (bit) {
75
4.81M
    lowvalue += split;
76
4.81M
    range = br->range - split;
77
4.81M
  }
78
79
11.0M
  shift = vpx_norm[range];
80
81
11.0M
  range <<= shift;
82
11.0M
  count += shift;
83
84
11.0M
  if (count >= 0) {
85
651k
    int offset = shift - count;
86
87
651k
    if (!br->error) {
88
651k
      if ((lowvalue << (offset - 1)) & 0x80000000) {
89
11
        int x = (int)br->pos - 1;
90
91
12
        while (x >= 0 && br->buffer[x] == 0xff) {
92
1
          br->buffer[x] = 0;
93
1
          x--;
94
1
        }
95
96
        // TODO(wtc): How to prove x >= 0?
97
11
        br->buffer[x] += 1;
98
11
      }
99
100
651k
      if (br->pos < br->size) {
101
651k
        br->buffer[br->pos++] = (lowvalue >> (24 - offset)) & 0xff;
102
651k
      } else {
103
2
        br->error = 1;
104
2
      }
105
651k
    }
106
651k
    lowvalue <<= offset;
107
651k
    shift = count;
108
651k
    lowvalue &= 0xffffff;
109
651k
    count -= 8;
110
651k
  }
111
112
11.0M
  lowvalue <<= shift;
113
11.0M
  br->count = count;
114
11.0M
  br->lowvalue = lowvalue;
115
11.0M
  br->range = range;
116
11.0M
}
Unexecuted instantiation: vp9_ethread.c:vpx_write
Unexecuted instantiation: vp9_firstpass.c:vpx_write
Unexecuted instantiation: vp9_lookahead.c:vpx_write
Unexecuted instantiation: vp9_multi_thread.c:vpx_write
Unexecuted instantiation: vp9_mcomp.c:vpx_write
Unexecuted instantiation: vp9_rdopt.c:vpx_write
Unexecuted instantiation: vp9_pickmode.c:vpx_write
vp9_subexp.c:vpx_write
Line
Count
Source
48
11.1M
                                                         int probability) {
49
11.1M
  unsigned int split;
50
11.1M
  int count = br->count;
51
11.1M
  unsigned int range = br->range;
52
11.1M
  unsigned int lowvalue = br->lowvalue;
53
11.1M
  int shift;
54
55
#if CONFIG_BITSTREAM_DEBUG
56
  /*
57
  int queue_r = 0;
58
  int frame_idx_r = 0;
59
  int queue_w = bitstream_queue_get_write();
60
  int frame_idx_w = bitstream_queue_get_frame_write();
61
  if (frame_idx_w == frame_idx_r && queue_w == queue_r) {
62
    fprintf(stderr, "\n *** bitstream queue at frame_idx_w %d queue_w %d\n",
63
            frame_idx_w, queue_w);
64
    assert(0);
65
  }
66
  */
67
  bitstream_queue_push(bit, probability);
68
#endif
69
70
11.1M
  split = 1 + (((range - 1) * probability) >> 8);
71
72
11.1M
  range = split;
73
74
11.1M
  if (bit) {
75
1.68M
    lowvalue += split;
76
1.68M
    range = br->range - split;
77
1.68M
  }
78
79
11.1M
  shift = vpx_norm[range];
80
81
11.1M
  range <<= shift;
82
11.1M
  count += shift;
83
84
11.1M
  if (count >= 0) {
85
455k
    int offset = shift - count;
86
87
455k
    if (!br->error) {
88
455k
      if ((lowvalue << (offset - 1)) & 0x80000000) {
89
0
        int x = (int)br->pos - 1;
90
91
0
        while (x >= 0 && br->buffer[x] == 0xff) {
92
0
          br->buffer[x] = 0;
93
0
          x--;
94
0
        }
95
96
        // TODO(wtc): How to prove x >= 0?
97
0
        br->buffer[x] += 1;
98
0
      }
99
100
455k
      if (br->pos < br->size) {
101
455k
        br->buffer[br->pos++] = (lowvalue >> (24 - offset)) & 0xff;
102
455k
      } else {
103
0
        br->error = 1;
104
0
      }
105
455k
    }
106
455k
    lowvalue <<= offset;
107
455k
    shift = count;
108
455k
    lowvalue &= 0xffffff;
109
455k
    count -= 8;
110
455k
  }
111
112
11.1M
  lowvalue <<= shift;
113
11.1M
  br->count = count;
114
11.1M
  br->lowvalue = lowvalue;
115
11.1M
  br->range = range;
116
11.1M
}
Unexecuted instantiation: vp9_treewriter.c:vpx_write
bitwriter.c:vpx_write
Line
Count
Source
48
5.12M
                                                         int probability) {
49
5.12M
  unsigned int split;
50
5.12M
  int count = br->count;
51
5.12M
  unsigned int range = br->range;
52
5.12M
  unsigned int lowvalue = br->lowvalue;
53
5.12M
  int shift;
54
55
#if CONFIG_BITSTREAM_DEBUG
56
  /*
57
  int queue_r = 0;
58
  int frame_idx_r = 0;
59
  int queue_w = bitstream_queue_get_write();
60
  int frame_idx_w = bitstream_queue_get_frame_write();
61
  if (frame_idx_w == frame_idx_r && queue_w == queue_r) {
62
    fprintf(stderr, "\n *** bitstream queue at frame_idx_w %d queue_w %d\n",
63
            frame_idx_w, queue_w);
64
    assert(0);
65
  }
66
  */
67
  bitstream_queue_push(bit, probability);
68
#endif
69
70
5.12M
  split = 1 + (((range - 1) * probability) >> 8);
71
72
5.12M
  range = split;
73
74
5.12M
  if (bit) {
75
0
    lowvalue += split;
76
0
    range = br->range - split;
77
0
  }
78
79
5.12M
  shift = vpx_norm[range];
80
81
5.12M
  range <<= shift;
82
5.12M
  count += shift;
83
84
5.12M
  if (count >= 0) {
85
544k
    int offset = shift - count;
86
87
544k
    if (!br->error) {
88
543k
      if ((lowvalue << (offset - 1)) & 0x80000000) {
89
2
        int x = (int)br->pos - 1;
90
91
2
        while (x >= 0 && br->buffer[x] == 0xff) {
92
0
          br->buffer[x] = 0;
93
0
          x--;
94
0
        }
95
96
        // TODO(wtc): How to prove x >= 0?
97
2
        br->buffer[x] += 1;
98
2
      }
99
100
543k
      if (br->pos < br->size) {
101
543k
        br->buffer[br->pos++] = (lowvalue >> (24 - offset)) & 0xff;
102
543k
      } else {
103
4
        br->error = 1;
104
4
      }
105
543k
    }
106
544k
    lowvalue <<= offset;
107
544k
    shift = count;
108
544k
    lowvalue &= 0xffffff;
109
544k
    count -= 8;
110
544k
  }
111
112
5.12M
  lowvalue <<= shift;
113
5.12M
  br->count = count;
114
5.12M
  br->lowvalue = lowvalue;
115
5.12M
  br->range = range;
116
5.12M
}
117
118
112M
static INLINE void vpx_write_bit(vpx_writer *w, int bit) {
119
112M
  vpx_write(w, bit, 128);  // vpx_prob_half
120
112M
}
Unexecuted instantiation: vp9_frame_scale.c:vpx_write_bit
Unexecuted instantiation: vp9_encoder.c:vpx_write_bit
Unexecuted instantiation: vp9_picklpf.c:vpx_write_bit
Unexecuted instantiation: vp9_quantize.c:vpx_write_bit
Unexecuted instantiation: vp9_ratectrl.c:vpx_write_bit
Unexecuted instantiation: vp9_rd.c:vpx_write_bit
Unexecuted instantiation: vp9_segmentation.c:vpx_write_bit
Unexecuted instantiation: vp9_speed_features.c:vpx_write_bit
Unexecuted instantiation: vp9_svc_layercontext.c:vpx_write_bit
Unexecuted instantiation: vp9_tokenize.c:vpx_write_bit
Unexecuted instantiation: vp9_aq_variance.c:vpx_write_bit
Unexecuted instantiation: vp9_aq_360.c:vpx_write_bit
Unexecuted instantiation: vp9_aq_cyclicrefresh.c:vpx_write_bit
Unexecuted instantiation: vp9_aq_complexity.c:vpx_write_bit
Unexecuted instantiation: vp9_alt_ref_aq.c:vpx_write_bit
Unexecuted instantiation: vp9_skin_detection.c:vpx_write_bit
Unexecuted instantiation: vp9_noise_estimate.c:vpx_write_bit
Unexecuted instantiation: vp9_ext_ratectrl.c:vpx_write_bit
Unexecuted instantiation: vp9_temporal_filter.c:vpx_write_bit
Unexecuted instantiation: vp9_tpl_model.c:vpx_write_bit
Unexecuted instantiation: vp9_mbgraph.c:vpx_write_bit
Unexecuted instantiation: temporal_filter_sse4.c:vpx_write_bit
Unexecuted instantiation: highbd_temporal_filter_sse4.c:vpx_write_bit
Unexecuted instantiation: vp9_cx_iface.c:vpx_write_bit
vp9_bitstream.c:vpx_write_bit
Line
Count
Source
118
103M
static INLINE void vpx_write_bit(vpx_writer *w, int bit) {
119
103M
  vpx_write(w, bit, 128);  // vpx_prob_half
120
103M
}
Unexecuted instantiation: vp9_context_tree.c:vpx_write_bit
Unexecuted instantiation: vp9_encodeframe.c:vpx_write_bit
Unexecuted instantiation: vp9_encodemb.c:vpx_write_bit
vp9_encodemv.c:vpx_write_bit
Line
Count
Source
118
68.7k
static INLINE void vpx_write_bit(vpx_writer *w, int bit) {
119
68.7k
  vpx_write(w, bit, 128);  // vpx_prob_half
120
68.7k
}
Unexecuted instantiation: vp9_ethread.c:vpx_write_bit
Unexecuted instantiation: vp9_firstpass.c:vpx_write_bit
Unexecuted instantiation: vp9_lookahead.c:vpx_write_bit
Unexecuted instantiation: vp9_multi_thread.c:vpx_write_bit
Unexecuted instantiation: vp9_mcomp.c:vpx_write_bit
Unexecuted instantiation: vp9_rdopt.c:vpx_write_bit
Unexecuted instantiation: vp9_pickmode.c:vpx_write_bit
vp9_subexp.c:vpx_write_bit
Line
Count
Source
118
3.54M
static INLINE void vpx_write_bit(vpx_writer *w, int bit) {
119
3.54M
  vpx_write(w, bit, 128);  // vpx_prob_half
120
3.54M
}
Unexecuted instantiation: vp9_treewriter.c:vpx_write_bit
bitwriter.c:vpx_write_bit
Line
Count
Source
118
5.12M
static INLINE void vpx_write_bit(vpx_writer *w, int bit) {
119
5.12M
  vpx_write(w, bit, 128);  // vpx_prob_half
120
5.12M
}
121
122
1.60M
static INLINE void vpx_write_literal(vpx_writer *w, int data, int bits) {
123
1.60M
  int bit;
124
125
5.33M
  for (bit = bits - 1; bit >= 0; bit--) vpx_write_bit(w, 1 & (data >> bit));
126
1.60M
}
Unexecuted instantiation: vp9_frame_scale.c:vpx_write_literal
Unexecuted instantiation: vp9_encoder.c:vpx_write_literal
Unexecuted instantiation: vp9_picklpf.c:vpx_write_literal
Unexecuted instantiation: vp9_quantize.c:vpx_write_literal
Unexecuted instantiation: vp9_ratectrl.c:vpx_write_literal
Unexecuted instantiation: vp9_rd.c:vpx_write_literal
Unexecuted instantiation: vp9_segmentation.c:vpx_write_literal
Unexecuted instantiation: vp9_speed_features.c:vpx_write_literal
Unexecuted instantiation: vp9_svc_layercontext.c:vpx_write_literal
Unexecuted instantiation: vp9_tokenize.c:vpx_write_literal
Unexecuted instantiation: vp9_aq_variance.c:vpx_write_literal
Unexecuted instantiation: vp9_aq_360.c:vpx_write_literal
Unexecuted instantiation: vp9_aq_cyclicrefresh.c:vpx_write_literal
Unexecuted instantiation: vp9_aq_complexity.c:vpx_write_literal
Unexecuted instantiation: vp9_alt_ref_aq.c:vpx_write_literal
Unexecuted instantiation: vp9_skin_detection.c:vpx_write_literal
Unexecuted instantiation: vp9_noise_estimate.c:vpx_write_literal
Unexecuted instantiation: vp9_ext_ratectrl.c:vpx_write_literal
Unexecuted instantiation: vp9_temporal_filter.c:vpx_write_literal
Unexecuted instantiation: vp9_tpl_model.c:vpx_write_literal
Unexecuted instantiation: vp9_mbgraph.c:vpx_write_literal
Unexecuted instantiation: temporal_filter_sse4.c:vpx_write_literal
Unexecuted instantiation: highbd_temporal_filter_sse4.c:vpx_write_literal
Unexecuted instantiation: vp9_cx_iface.c:vpx_write_literal
vp9_bitstream.c:vpx_write_literal
Line
Count
Source
122
59.4k
static INLINE void vpx_write_literal(vpx_writer *w, int data, int bits) {
123
59.4k
  int bit;
124
125
178k
  for (bit = bits - 1; bit >= 0; bit--) vpx_write_bit(w, 1 & (data >> bit));
126
59.4k
}
Unexecuted instantiation: vp9_context_tree.c:vpx_write_literal
Unexecuted instantiation: vp9_encodeframe.c:vpx_write_literal
Unexecuted instantiation: vp9_encodemb.c:vpx_write_literal
vp9_encodemv.c:vpx_write_literal
Line
Count
Source
122
9.81k
static INLINE void vpx_write_literal(vpx_writer *w, int data, int bits) {
123
9.81k
  int bit;
124
125
78.5k
  for (bit = bits - 1; bit >= 0; bit--) vpx_write_bit(w, 1 & (data >> bit));
126
9.81k
}
Unexecuted instantiation: vp9_ethread.c:vpx_write_literal
Unexecuted instantiation: vp9_firstpass.c:vpx_write_literal
Unexecuted instantiation: vp9_lookahead.c:vpx_write_literal
Unexecuted instantiation: vp9_multi_thread.c:vpx_write_literal
Unexecuted instantiation: vp9_mcomp.c:vpx_write_literal
Unexecuted instantiation: vp9_rdopt.c:vpx_write_literal
Unexecuted instantiation: vp9_pickmode.c:vpx_write_literal
vp9_subexp.c:vpx_write_literal
Line
Count
Source
122
1.53M
static INLINE void vpx_write_literal(vpx_writer *w, int data, int bits) {
123
1.53M
  int bit;
124
125
5.07M
  for (bit = bits - 1; bit >= 0; bit--) vpx_write_bit(w, 1 & (data >> bit));
126
1.53M
}
Unexecuted instantiation: vp9_treewriter.c:vpx_write_literal
Unexecuted instantiation: bitwriter.c:vpx_write_literal
127
128
#define vpx_write_prob(w, v) vpx_write_literal((w), (v), 8)
129
130
#ifdef __cplusplus
131
}  // extern "C"
132
#endif
133
134
#endif  // VPX_VPX_DSP_BITWRITER_H_