blob: 6c22c4c7aefe6bce60f990c93f2f90835fd41b13 [file] [log] [blame]
Debargha Mukherjee47748b52017-03-24 12:20:49 -07001/*
2 * Copyright (c) 2017, Alliance for Open Media. All rights reserved
3 *
4 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10 */
11
12#ifndef AOM_DSP_BINARY_CODES_WRITER_H_
13#define AOM_DSP_BINARY_CODES_WRITER_H_
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19#include <assert.h>
20#include "./aom_config.h"
21#include "aom/aom_integer.h"
22#include "aom_dsp/bitwriter.h"
Sarah Parker3e579a62017-08-23 16:53:20 -070023#include "aom_dsp/bitwriter_buffer.h"
Debargha Mukherjee47748b52017-03-24 12:20:49 -070024
25// Codes a symbol v in [-2^mag_bits, 2^mag_bits]
26// mag_bits is number of bits for magnitude. The alphabet is of size
27// 2 * 2^mag_bits + 1, symmetric around 0, where one bit is used to
28// indicate 0 or non-zero, mag_bits bits are used to indicate magnitide
29// and 1 more bit for the sign if non-zero.
30void aom_write_primitive_symmetric(aom_writer *w, int16_t v,
31 unsigned int mag_bits);
32
33// Encodes a value v in [0, n-1] quasi-uniformly
34void aom_write_primitive_quniform(aom_writer *w, uint16_t n, uint16_t v);
35
Debargha Mukherjee47748b52017-03-24 12:20:49 -070036// Finite subexponential code that codes a symbol v in [0, n-1] with parameter k
37void aom_write_primitive_subexpfin(aom_writer *w, uint16_t n, uint16_t k,
38 uint16_t v);
39
40// Finite subexponential code that codes a symbol v in [0, n-1] with parameter k
41// based on a reference ref also in [0, n-1].
42void aom_write_primitive_refsubexpfin(aom_writer *w, uint16_t n, uint16_t k,
43 uint16_t ref, uint16_t v);
44
Sarah Parkerf1783292017-04-05 11:55:27 -070045// Finite subexponential code that codes a symbol v in [-(n-1), n-1] with
46// parameter k based on a reference ref also in [-(n-1), n-1].
47void aom_write_signed_primitive_refsubexpfin(aom_writer *w, uint16_t n,
48 uint16_t k, int16_t ref,
49 int16_t v);
50
Sarah Parker3e579a62017-08-23 16:53:20 -070051void aom_wb_write_signed_primitive_refsubexpfin(struct aom_write_bit_buffer *wb,
52 uint16_t n, uint16_t k,
53 int16_t ref, int16_t v);
54
Debargha Mukherjee47748b52017-03-24 12:20:49 -070055// Functions that counts bits for the above primitives
56int aom_count_primitive_symmetric(int16_t v, unsigned int mag_bits);
57int aom_count_primitive_quniform(uint16_t n, uint16_t v);
Debargha Mukherjee47748b52017-03-24 12:20:49 -070058int aom_count_primitive_subexpfin(uint16_t n, uint16_t k, uint16_t v);
59int aom_count_primitive_refsubexpfin(uint16_t n, uint16_t k, uint16_t ref,
60 uint16_t v);
Sarah Parkerf1783292017-04-05 11:55:27 -070061int aom_count_signed_primitive_refsubexpfin(uint16_t n, uint16_t k, int16_t ref,
62 int16_t v);
Debargha Mukherjee47748b52017-03-24 12:20:49 -070063#ifdef __cplusplus
64} // extern "C"
65#endif
66
67#endif // AOM_DSP_BINARY_CODES_WRITER_H_