entropy.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. #ifndef VP8_COMMON_ENTROPY_H_
  11. #define VP8_COMMON_ENTROPY_H_
  12. #include "treecoder.h"
  13. #include "blockd.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /* Coefficient token alphabet */
  18. #define ZERO_TOKEN 0 /* 0 Extra Bits 0+0 */
  19. #define ONE_TOKEN 1 /* 1 Extra Bits 0+1 */
  20. #define TWO_TOKEN 2 /* 2 Extra Bits 0+1 */
  21. #define THREE_TOKEN 3 /* 3 Extra Bits 0+1 */
  22. #define FOUR_TOKEN 4 /* 4 Extra Bits 0+1 */
  23. #define DCT_VAL_CATEGORY1 5 /* 5-6 Extra Bits 1+1 */
  24. #define DCT_VAL_CATEGORY2 6 /* 7-10 Extra Bits 2+1 */
  25. #define DCT_VAL_CATEGORY3 7 /* 11-18 Extra Bits 3+1 */
  26. #define DCT_VAL_CATEGORY4 8 /* 19-34 Extra Bits 4+1 */
  27. #define DCT_VAL_CATEGORY5 9 /* 35-66 Extra Bits 5+1 */
  28. #define DCT_VAL_CATEGORY6 10 /* 67+ Extra Bits 11+1 */
  29. #define DCT_EOB_TOKEN 11 /* EOB Extra Bits 0+0 */
  30. #define MAX_ENTROPY_TOKENS 12
  31. #define ENTROPY_NODES 11
  32. extern const vp8_tree_index vp8_coef_tree[];
  33. extern const struct vp8_token_struct vp8_coef_encodings[MAX_ENTROPY_TOKENS];
  34. typedef struct
  35. {
  36. vp8_tree_p tree;
  37. const vp8_prob *prob;
  38. int Len;
  39. int base_val;
  40. } vp8_extra_bit_struct;
  41. extern const vp8_extra_bit_struct vp8_extra_bits[12]; /* indexed by token value */
  42. #define PROB_UPDATE_BASELINE_COST 7
  43. #define MAX_PROB 255
  44. #define DCT_MAX_VALUE 2048
  45. /* Coefficients are predicted via a 3-dimensional probability table. */
  46. /* Outside dimension. 0 = Y no DC, 1 = Y2, 2 = UV, 3 = Y with DC */
  47. #define BLOCK_TYPES 4
  48. /* Middle dimension is a coarsening of the coefficient's
  49. position within the 4x4 DCT. */
  50. #define COEF_BANDS 8
  51. extern DECLARE_ALIGNED(16, const unsigned char, vp8_coef_bands[16]);
  52. /* Inside dimension is 3-valued measure of nearby complexity, that is,
  53. the extent to which nearby coefficients are nonzero. For the first
  54. coefficient (DC, unless block type is 0), we look at the (already encoded)
  55. blocks above and to the left of the current block. The context index is
  56. then the number (0,1,or 2) of these blocks having nonzero coefficients.
  57. After decoding a coefficient, the measure is roughly the size of the
  58. most recently decoded coefficient (0 for 0, 1 for 1, 2 for >1).
  59. Note that the intuitive meaning of this measure changes as coefficients
  60. are decoded, e.g., prior to the first token, a zero means that my neighbors
  61. are empty while, after the first token, because of the use of end-of-block,
  62. a zero means we just decoded a zero and hence guarantees that a non-zero
  63. coefficient will appear later in this block. However, this shift
  64. in meaning is perfectly OK because our context depends also on the
  65. coefficient band (and since zigzag positions 0, 1, and 2 are in
  66. distinct bands). */
  67. /*# define DC_TOKEN_CONTEXTS 3*/ /* 00, 0!0, !0!0 */
  68. # define PREV_COEF_CONTEXTS 3
  69. extern DECLARE_ALIGNED(16, const unsigned char, vp8_prev_token_class[MAX_ENTROPY_TOKENS]);
  70. extern const vp8_prob vp8_coef_update_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES];
  71. struct VP8Common;
  72. void vp8_default_coef_probs(struct VP8Common *);
  73. extern DECLARE_ALIGNED(16, const int, vp8_default_zig_zag1d[16]);
  74. extern DECLARE_ALIGNED(16, const short, vp8_default_inv_zig_zag[16]);
  75. extern DECLARE_ALIGNED(16, const short, vp8_default_zig_zag_mask[16]);
  76. extern const int vp8_mb_feature_data_bits[MB_LVL_MAX];
  77. void vp8_coef_tree_initialize(void);
  78. #ifdef __cplusplus
  79. } // extern "C"
  80. #endif
  81. #endif // VP8_COMMON_ENTROPY_H_