binary_codes_writer.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  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. #ifndef AOM_AOM_DSP_BINARY_CODES_WRITER_H_
  12. #define AOM_AOM_DSP_BINARY_CODES_WRITER_H_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #include <assert.h>
  17. #include "config/aom_config.h"
  18. #include "aom/aom_integer.h"
  19. #include "aom_dsp/bitwriter.h"
  20. #include "aom_dsp/bitwriter_buffer.h"
  21. // Codes a symbol v in [-2^mag_bits, 2^mag_bits]
  22. // mag_bits is number of bits for magnitude. The alphabet is of size
  23. // 2 * 2^mag_bits + 1, symmetric around 0, where one bit is used to
  24. // indicate 0 or non-zero, mag_bits bits are used to indicate magnitide
  25. // and 1 more bit for the sign if non-zero.
  26. void aom_write_primitive_symmetric(aom_writer *w, int16_t v,
  27. unsigned int mag_bits);
  28. // Encodes a value v in [0, n-1] quasi-uniformly
  29. void aom_write_primitive_quniform(aom_writer *w, uint16_t n, uint16_t v);
  30. // Finite subexponential code that codes a symbol v in [0, n-1] with parameter k
  31. void aom_write_primitive_subexpfin(aom_writer *w, uint16_t n, uint16_t k,
  32. uint16_t v);
  33. // Finite subexponential code that codes a symbol v in [0, n-1] with parameter k
  34. // based on a reference ref also in [0, n-1].
  35. void aom_write_primitive_refsubexpfin(aom_writer *w, uint16_t n, uint16_t k,
  36. uint16_t ref, uint16_t v);
  37. // Finite subexponential code that codes a symbol v in [-(n-1), n-1] with
  38. // parameter k based on a reference ref also in [-(n-1), n-1].
  39. void aom_write_signed_primitive_refsubexpfin(aom_writer *w, uint16_t n,
  40. uint16_t k, int16_t ref,
  41. int16_t v);
  42. // Functions that counts bits for the above primitives
  43. int aom_count_primitive_symmetric(int16_t v, unsigned int mag_bits);
  44. int aom_count_primitive_quniform(uint16_t n, uint16_t v);
  45. int aom_count_primitive_subexpfin(uint16_t n, uint16_t k, uint16_t v);
  46. int aom_count_primitive_refsubexpfin(uint16_t n, uint16_t k, uint16_t ref,
  47. uint16_t v);
  48. int aom_count_signed_primitive_refsubexpfin(uint16_t n, uint16_t k, int16_t ref,
  49. int16_t v);
  50. #ifdef __cplusplus
  51. } // extern "C"
  52. #endif
  53. #endif // AOM_AOM_DSP_BINARY_CODES_WRITER_H_