Yushin Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2001-2016, 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 | */ |
Nathan E. Egge | 1078dee | 2016-03-06 10:59:29 -0500 | [diff] [blame] | 11 | |
| 12 | #if !defined(_entcode_H) |
| 13 | #define _entcode_H (1) |
| 14 | #include <limits.h> |
| 15 | #include <stddef.h> |
| 16 | #include "av1/common/odintrin.h" |
| 17 | |
Thomas Davies | 736ddef | 2017-11-09 09:46:08 +0000 | [diff] [blame^] | 18 | #if CONFIG_LV_MAP_MULTI |
| 19 | #define EC_PROB_SHIFT 6 |
| 20 | #define EC_MIN_PROB 4 // must be <= (1<<EC_PROB_SHIFT)/16 |
| 21 | #else |
| 22 | #define EC_PROB_SHIFT 0 |
| 23 | #define EC_MIN_PROB 0 |
| 24 | #endif |
| 25 | |
Nathan E. Egge | 1078dee | 2016-03-06 10:59:29 -0500 | [diff] [blame] | 26 | /*OPT: od_ec_window must be at least 32 bits, but if you have fast arithmetic |
| 27 | on a larger type, you can speed up the decoder by using it here.*/ |
| 28 | typedef uint32_t od_ec_window; |
| 29 | |
| 30 | #define OD_EC_WINDOW_SIZE ((int)sizeof(od_ec_window) * CHAR_BIT) |
| 31 | |
Nathan E. Egge | 1078dee | 2016-03-06 10:59:29 -0500 | [diff] [blame] | 32 | /*The number of bits to use for the range-coded part of unsigned integers.*/ |
| 33 | #define OD_EC_UINT_BITS (4) |
| 34 | |
| 35 | /*The resolution of fractional-precision bit usage measurements, i.e., |
| 36 | 3 => 1/8th bits.*/ |
| 37 | #define OD_BITRES (3) |
| 38 | |
Timothy B. Terriberry | f9ef4f6 | 2017-08-25 11:24:18 -0700 | [diff] [blame] | 39 | /*The value stored in an iCDF is 32768 minus the actual Q15 cumulative |
| 40 | probability (an "inverse" CDF). |
Timothy B. Terriberry | 41b4f75 | 2017-03-07 17:45:30 -0800 | [diff] [blame] | 41 | This function converts from one representation to the other (and is its own |
| 42 | inverse).*/ |
Timothy B. Terriberry | 41b4f75 | 2017-03-07 17:45:30 -0800 | [diff] [blame] | 43 | #define OD_ICDF(x) (32768U - (x)) |
Timothy B. Terriberry | 41b4f75 | 2017-03-07 17:45:30 -0800 | [diff] [blame] | 44 | |
Nathan E. Egge | 1078dee | 2016-03-06 10:59:29 -0500 | [diff] [blame] | 45 | /*See entcode.c for further documentation.*/ |
| 46 | |
| 47 | OD_WARN_UNUSED_RESULT uint32_t od_ec_tell_frac(uint32_t nbits_total, |
| 48 | uint32_t rng); |
| 49 | |
| 50 | #endif |