t1.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
  3. * Copyright (c) 2002-2007, Professor Benoit Macq
  4. * Copyright (c) 2001-2003, David Janssens
  5. * Copyright (c) 2002-2003, Yannick Verschueren
  6. * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
  7. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  20. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. * POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifndef __T1_H
  32. #define __T1_H
  33. /**
  34. @file t1.h
  35. @brief Implementation of the tier-1 coding (coding of code-block coefficients) (T1)
  36. The functions in T1.C have for goal to realize the tier-1 coding operation. The functions
  37. in T1.C are used by some function in TCD.C.
  38. */
  39. /** @defgroup T1 T1 - Implementation of the tier-1 coding */
  40. /*@{*/
  41. /* ----------------------------------------------------------------------- */
  42. #define T1_NMSEDEC_BITS 7
  43. #define T1_SIG_NE 0x0001 /**< Context orientation : North-East direction */
  44. #define T1_SIG_SE 0x0002 /**< Context orientation : South-East direction */
  45. #define T1_SIG_SW 0x0004 /**< Context orientation : South-West direction */
  46. #define T1_SIG_NW 0x0008 /**< Context orientation : North-West direction */
  47. #define T1_SIG_N 0x0010 /**< Context orientation : North direction */
  48. #define T1_SIG_E 0x0020 /**< Context orientation : East direction */
  49. #define T1_SIG_S 0x0040 /**< Context orientation : South direction */
  50. #define T1_SIG_W 0x0080 /**< Context orientation : West direction */
  51. #define T1_SIG_OTH (T1_SIG_N|T1_SIG_NE|T1_SIG_E|T1_SIG_SE|T1_SIG_S|T1_SIG_SW|T1_SIG_W|T1_SIG_NW)
  52. #define T1_SIG_PRIM (T1_SIG_N|T1_SIG_E|T1_SIG_S|T1_SIG_W)
  53. #define T1_SGN_N 0x0100
  54. #define T1_SGN_E 0x0200
  55. #define T1_SGN_S 0x0400
  56. #define T1_SGN_W 0x0800
  57. #define T1_SGN (T1_SGN_N|T1_SGN_E|T1_SGN_S|T1_SGN_W)
  58. #define T1_SIG 0x1000
  59. #define T1_REFINE 0x2000
  60. #define T1_VISIT 0x4000
  61. #define T1_NUMCTXS_ZC 9
  62. #define T1_NUMCTXS_SC 5
  63. #define T1_NUMCTXS_MAG 3
  64. #define T1_NUMCTXS_AGG 1
  65. #define T1_NUMCTXS_UNI 1
  66. #define T1_CTXNO_ZC 0
  67. #define T1_CTXNO_SC (T1_CTXNO_ZC+T1_NUMCTXS_ZC)
  68. #define T1_CTXNO_MAG (T1_CTXNO_SC+T1_NUMCTXS_SC)
  69. #define T1_CTXNO_AGG (T1_CTXNO_MAG+T1_NUMCTXS_MAG)
  70. #define T1_CTXNO_UNI (T1_CTXNO_AGG+T1_NUMCTXS_AGG)
  71. #define T1_NUMCTXS (T1_CTXNO_UNI+T1_NUMCTXS_UNI)
  72. #define T1_NMSEDEC_FRACBITS (T1_NMSEDEC_BITS-1)
  73. #define T1_TYPE_MQ 0 /**< Normal coding using entropy coder */
  74. #define T1_TYPE_RAW 1 /**< No encoding the information is store under raw format in codestream (mode switch RAW)*/
  75. /* ----------------------------------------------------------------------- */
  76. typedef short flag_t;
  77. /**
  78. Tier-1 coding (coding of code-block coefficients)
  79. */
  80. typedef struct opj_t1 {
  81. /** codec context */
  82. opj_common_ptr cinfo;
  83. /** MQC component */
  84. opj_mqc_t *mqc;
  85. /** RAW component */
  86. opj_raw_t *raw;
  87. int *data;
  88. flag_t *flags;
  89. int w;
  90. int h;
  91. int datasize;
  92. int flagssize;
  93. int flags_stride;
  94. } opj_t1_t;
  95. #define MACRO_t1_flags(x,y) t1->flags[((x)*(t1->flags_stride))+(y)]
  96. /** @name Exported functions */
  97. /*@{*/
  98. /* ----------------------------------------------------------------------- */
  99. /**
  100. Create a new T1 handle
  101. and initialize the look-up tables of the Tier-1 coder/decoder
  102. @return Returns a new T1 handle if successful, returns NULL otherwise
  103. @see t1_init_luts
  104. */
  105. opj_t1_t* t1_create(opj_common_ptr cinfo);
  106. /**
  107. Destroy a previously created T1 handle
  108. @param t1 T1 handle to destroy
  109. */
  110. void t1_destroy(opj_t1_t *t1);
  111. /**
  112. Encode the code-blocks of a tile
  113. @param t1 T1 handle
  114. @param tile The tile to encode
  115. @param tcp Tile coding parameters
  116. */
  117. void t1_encode_cblks(opj_t1_t *t1, opj_tcd_tile_t *tile, opj_tcp_t *tcp);
  118. /**
  119. Decode the code-blocks of a tile
  120. @param t1 T1 handle
  121. @param tilec The tile to decode
  122. @param tccp Tile coding parameters
  123. */
  124. void t1_decode_cblks(opj_t1_t* t1, opj_tcd_tilecomp_t* tilec, opj_tccp_t* tccp);
  125. /* ----------------------------------------------------------------------- */
  126. /*@}*/
  127. /*@}*/
  128. #endif /* __T1_H */