| /* |
| * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
| * |
| * This source code is subject to the terms of the BSD 2 Clause License and |
| * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| * was not distributed with this source code in the LICENSE file, you can |
| * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| * Media Patent License 1.0 was not distributed with this source code in the |
| * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
| */ |
| |
| #ifndef AOM_DSP_BITWRITER_H_ |
| #define AOM_DSP_BITWRITER_H_ |
| |
| #include "aom_ports/mem.h" |
| #include "aom_dsp/prob.h" |
| #include "aom_util/debug_util.h" |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| typedef struct aom_writer { |
| unsigned int lowvalue; |
| unsigned int range; |
| int count; |
| unsigned int pos; |
| uint8_t *buffer; |
| } aom_writer; |
| |
| void aom_start_encode(aom_writer *bc, uint8_t *buffer); |
| void aom_stop_encode(aom_writer *bc); |
| |
| static INLINE void aom_write(aom_writer *br, int bit, int probability) { |
| unsigned int split; |
| int count = br->count; |
| unsigned int range = br->range; |
| unsigned int lowvalue = br->lowvalue; |
| register int shift; |
| |
| #if CONFIG_BITSTREAM_DEBUG |
| bitstream_queue_push(bit, probability); |
| #endif // CONFIG_BITSTREAM_DEBUG |
| |
| split = 1 + (((range - 1) * probability) >> 8); |
| |
| range = split; |
| |
| if (bit) { |
| lowvalue += split; |
| range = br->range - split; |
| } |
| |
| shift = aom_norm[range]; |
| |
| range <<= shift; |
| count += shift; |
| |
| if (count >= 0) { |
| int offset = shift - count; |
| |
| if ((lowvalue << (offset - 1)) & 0x80000000) { |
| int x = br->pos - 1; |
| |
| while (x >= 0 && br->buffer[x] == 0xff) { |
| br->buffer[x] = 0; |
| x--; |
| } |
| |
| br->buffer[x] += 1; |
| } |
| |
| br->buffer[br->pos++] = (lowvalue >> (24 - offset)); |
| lowvalue <<= offset; |
| shift = count; |
| lowvalue &= 0xffffff; |
| count -= 8; |
| } |
| |
| lowvalue <<= shift; |
| br->count = count; |
| br->lowvalue = lowvalue; |
| br->range = range; |
| } |
| |
| static INLINE void aom_write_bit(aom_writer *w, int bit) { |
| aom_write(w, bit, 128); // aom_prob_half |
| } |
| |
| static INLINE void aom_write_literal(aom_writer *w, int data, int bits) { |
| int bit; |
| |
| for (bit = bits - 1; bit >= 0; bit--) aom_write_bit(w, 1 & (data >> bit)); |
| } |
| |
| #define aom_write_prob(w, v) aom_write_literal((w), (v), 8) |
| |
| #ifdef __cplusplus |
| } // extern "C" |
| #endif |
| |
| #endif // AOM_DSP_BITWRITER_H_ |