OLD | NEW |
(Empty) | |
| 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 |
| 12 #ifndef VP9_COMMON_VP9_ENTROPY_H_ |
| 13 #define VP9_COMMON_VP9_ENTROPY_H_ |
| 14 |
| 15 #include "vp9/common/vp9_treecoder.h" |
| 16 #include "vp9/common/vp9_blockd.h" |
| 17 #include "vp9/common/vp9_common.h" |
| 18 #include "vp9/common/vp9_coefupdateprobs.h" |
| 19 |
| 20 extern const int vp9_i8x8_block[4]; |
| 21 |
| 22 /* Coefficient token alphabet */ |
| 23 |
| 24 #define ZERO_TOKEN 0 /* 0 Extra Bits 0+0 */ |
| 25 #define ONE_TOKEN 1 /* 1 Extra Bits 0+1 */ |
| 26 #define TWO_TOKEN 2 /* 2 Extra Bits 0+1 */ |
| 27 #define THREE_TOKEN 3 /* 3 Extra Bits 0+1 */ |
| 28 #define FOUR_TOKEN 4 /* 4 Extra Bits 0+1 */ |
| 29 #define DCT_VAL_CATEGORY1 5 /* 5-6 Extra Bits 1+1 */ |
| 30 #define DCT_VAL_CATEGORY2 6 /* 7-10 Extra Bits 2+1 */ |
| 31 #define DCT_VAL_CATEGORY3 7 /* 11-18 Extra Bits 3+1 */ |
| 32 #define DCT_VAL_CATEGORY4 8 /* 19-34 Extra Bits 4+1 */ |
| 33 #define DCT_VAL_CATEGORY5 9 /* 35-66 Extra Bits 5+1 */ |
| 34 #define DCT_VAL_CATEGORY6 10 /* 67+ Extra Bits 13+1 */ |
| 35 #define DCT_EOB_TOKEN 11 /* EOB Extra Bits 0+0 */ |
| 36 #define MAX_ENTROPY_TOKENS 12 |
| 37 #define ENTROPY_NODES 11 |
| 38 #define EOSB_TOKEN 127 /* Not signalled, encoder only */ |
| 39 |
| 40 #define INTER_MODE_CONTEXTS 7 |
| 41 |
| 42 extern const vp9_tree_index vp9_coef_tree[]; |
| 43 |
| 44 extern struct vp9_token_struct vp9_coef_encodings[MAX_ENTROPY_TOKENS]; |
| 45 |
| 46 typedef struct { |
| 47 vp9_tree_p tree; |
| 48 const vp9_prob *prob; |
| 49 int Len; |
| 50 int base_val; |
| 51 } vp9_extra_bit_struct; |
| 52 |
| 53 extern vp9_extra_bit_struct vp9_extra_bits[12]; /* indexed by token value */ |
| 54 |
| 55 #define PROB_UPDATE_BASELINE_COST 7 |
| 56 |
| 57 #define MAX_PROB 255 |
| 58 #define DCT_MAX_VALUE 8192 |
| 59 |
| 60 /* Coefficients are predicted via a 3-dimensional probability table. */ |
| 61 |
| 62 /* Outside dimension. 0 = Y no DC, 1 = Y2, 2 = UV, 3 = Y with DC */ |
| 63 #define BLOCK_TYPES 4 |
| 64 |
| 65 #define BLOCK_TYPES_8X8 4 |
| 66 |
| 67 #define BLOCK_TYPES_16X16 4 |
| 68 |
| 69 /* Middle dimension is a coarsening of the coefficient's |
| 70 position within the 4x4 DCT. */ |
| 71 |
| 72 #define COEF_BANDS 8 |
| 73 extern DECLARE_ALIGNED(16, const int, vp9_coef_bands[16]); |
| 74 extern DECLARE_ALIGNED(64, const int, vp9_coef_bands_8x8[64]); |
| 75 extern DECLARE_ALIGNED(16, const int, vp9_coef_bands_16x16[256]); |
| 76 |
| 77 /* Inside dimension is 3-valued measure of nearby complexity, that is, |
| 78 the extent to which nearby coefficients are nonzero. For the first |
| 79 coefficient (DC, unless block type is 0), we look at the (already encoded) |
| 80 blocks above and to the left of the current block. The context index is |
| 81 then the number (0,1,or 2) of these blocks having nonzero coefficients. |
| 82 After decoding a coefficient, the measure is roughly the size of the |
| 83 most recently decoded coefficient (0 for 0, 1 for 1, 2 for >1). |
| 84 Note that the intuitive meaning of this measure changes as coefficients |
| 85 are decoded, e.g., prior to the first token, a zero means that my neighbors |
| 86 are empty while, after the first token, because of the use of end-of-block, |
| 87 a zero means we just decoded a zero and hence guarantees that a non-zero |
| 88 coefficient will appear later in this block. However, this shift |
| 89 in meaning is perfectly OK because our context depends also on the |
| 90 coefficient band (and since zigzag positions 0, 1, and 2 are in |
| 91 distinct bands). */ |
| 92 |
| 93 /*# define DC_TOKEN_CONTEXTS 3*/ /* 00, 0!0, !0!0 */ |
| 94 #define PREV_COEF_CONTEXTS 4 |
| 95 |
| 96 #define SUBEXP_PARAM 4 /* Subexponential code parameter */ |
| 97 #define MODULUS_PARAM 13 /* Modulus parameter */ |
| 98 |
| 99 extern DECLARE_ALIGNED(16, const unsigned char, vp9_prev_token_class[MAX_ENTROPY
_TOKENS]); |
| 100 |
| 101 struct VP9Common; |
| 102 void vp9_default_coef_probs(struct VP9Common *); |
| 103 extern DECLARE_ALIGNED(16, const int, vp9_default_zig_zag1d[16]); |
| 104 |
| 105 extern DECLARE_ALIGNED(16, const int, vp9_col_scan[16]); |
| 106 extern DECLARE_ALIGNED(16, const int, vp9_row_scan[16]); |
| 107 |
| 108 extern DECLARE_ALIGNED(64, const int, vp9_default_zig_zag1d_8x8[64]); |
| 109 void vp9_coef_tree_initialize(void); |
| 110 |
| 111 extern DECLARE_ALIGNED(16, const int, vp9_default_zig_zag1d_16x16[256]); |
| 112 void vp9_adapt_coef_probs(struct VP9Common *); |
| 113 |
| 114 #endif |
OLD | NEW |