mct.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * The copyright in this software is being made available under the 2-clauses
  3. * BSD License, included below. This software may be subject to other third
  4. * party and contributor rights, including patent rights, and no such rights
  5. * are granted under this license.
  6. *
  7. * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
  8. * Copyright (c) 2002-2014, Professor Benoit Macq
  9. * Copyright (c) 2001-2003, David Janssens
  10. * Copyright (c) 2002-2003, Yannick Verschueren
  11. * Copyright (c) 2003-2007, Francois-Olivier Devaux
  12. * Copyright (c) 2003-2014, Antonin Descampe
  13. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  14. * Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
  15. * Copyright (c) 2012, CS Systemes d'Information, France
  16. * All rights reserved.
  17. *
  18. * Redistribution and use in source and binary forms, with or without
  19. * modification, are permitted provided that the following conditions
  20. * are met:
  21. * 1. Redistributions of source code must retain the above copyright
  22. * notice, this list of conditions and the following disclaimer.
  23. * 2. Redistributions in binary form must reproduce the above copyright
  24. * notice, this list of conditions and the following disclaimer in the
  25. * documentation and/or other materials provided with the distribution.
  26. *
  27. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  28. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  30. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  31. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  32. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  33. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  34. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  35. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  36. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  37. * POSSIBILITY OF SUCH DAMAGE.
  38. */
  39. #ifndef OPJ_MCT_H
  40. #define OPJ_MCT_H
  41. /**
  42. @file mct.h
  43. @brief Implementation of a multi-component transforms (MCT)
  44. The functions in MCT.C have for goal to realize reversible and irreversible multicomponent
  45. transform. The functions in MCT.C are used by some function in TCD.C.
  46. */
  47. /** @defgroup MCT MCT - Implementation of a multi-component transform */
  48. /*@{*/
  49. /** @name Exported functions */
  50. /*@{*/
  51. /* ----------------------------------------------------------------------- */
  52. /**
  53. Apply a reversible multi-component transform to an image
  54. @param c0 Samples for red component
  55. @param c1 Samples for green component
  56. @param c2 Samples blue component
  57. @param n Number of samples for each component
  58. */
  59. void opj_mct_encode(OPJ_INT32* OPJ_RESTRICT c0, OPJ_INT32* OPJ_RESTRICT c1,
  60. OPJ_INT32* OPJ_RESTRICT c2, OPJ_SIZE_T n);
  61. /**
  62. Apply a reversible multi-component inverse transform to an image
  63. @param c0 Samples for luminance component
  64. @param c1 Samples for red chrominance component
  65. @param c2 Samples for blue chrominance component
  66. @param n Number of samples for each component
  67. */
  68. void opj_mct_decode(OPJ_INT32* OPJ_RESTRICT c0, OPJ_INT32* OPJ_RESTRICT c1,
  69. OPJ_INT32* OPJ_RESTRICT c2, OPJ_SIZE_T n);
  70. /**
  71. Get norm of the basis function used for the reversible multi-component transform
  72. @param compno Number of the component (0->Y, 1->U, 2->V)
  73. @return
  74. */
  75. OPJ_FLOAT64 opj_mct_getnorm(OPJ_UINT32 compno);
  76. /**
  77. Apply an irreversible multi-component transform to an image
  78. @param c0 Samples for red component
  79. @param c1 Samples for green component
  80. @param c2 Samples blue component
  81. @param n Number of samples for each component
  82. */
  83. void opj_mct_encode_real(OPJ_FLOAT32* OPJ_RESTRICT c0,
  84. OPJ_FLOAT32* OPJ_RESTRICT c1,
  85. OPJ_FLOAT32* OPJ_RESTRICT c2, OPJ_SIZE_T n);
  86. /**
  87. Apply an irreversible multi-component inverse transform to an image
  88. @param c0 Samples for luminance component
  89. @param c1 Samples for red chrominance component
  90. @param c2 Samples for blue chrominance component
  91. @param n Number of samples for each component
  92. */
  93. void opj_mct_decode_real(OPJ_FLOAT32* OPJ_RESTRICT c0,
  94. OPJ_FLOAT32* OPJ_RESTRICT c1, OPJ_FLOAT32* OPJ_RESTRICT c2, OPJ_SIZE_T n);
  95. /**
  96. Get norm of the basis function used for the irreversible multi-component transform
  97. @param compno Number of the component (0->Y, 1->U, 2->V)
  98. @return
  99. */
  100. OPJ_FLOAT64 opj_mct_getnorm_real(OPJ_UINT32 compno);
  101. /**
  102. FIXME DOC
  103. @param p_coding_data MCT data
  104. @param n size of components
  105. @param p_data components
  106. @param p_nb_comp nb of components (i.e. size of p_data)
  107. @param is_signed tells if the data is signed
  108. @return OPJ_FALSE if function encounter a problem, OPJ_TRUE otherwise
  109. */
  110. OPJ_BOOL opj_mct_encode_custom(
  111. OPJ_BYTE * p_coding_data,
  112. OPJ_SIZE_T n,
  113. OPJ_BYTE ** p_data,
  114. OPJ_UINT32 p_nb_comp,
  115. OPJ_UINT32 is_signed);
  116. /**
  117. FIXME DOC
  118. @param pDecodingData MCT data
  119. @param n size of components
  120. @param pData components
  121. @param pNbComp nb of components (i.e. size of p_data)
  122. @param isSigned tells if the data is signed
  123. @return OPJ_FALSE if function encounter a problem, OPJ_TRUE otherwise
  124. */
  125. OPJ_BOOL opj_mct_decode_custom(
  126. OPJ_BYTE * pDecodingData,
  127. OPJ_SIZE_T n,
  128. OPJ_BYTE ** pData,
  129. OPJ_UINT32 pNbComp,
  130. OPJ_UINT32 isSigned);
  131. /**
  132. FIXME DOC
  133. @param pNorms MCT data
  134. @param p_nb_comps size of components
  135. @param pMatrix components
  136. @return
  137. */
  138. void opj_calculate_norms(OPJ_FLOAT64 * pNorms,
  139. OPJ_UINT32 p_nb_comps,
  140. OPJ_FLOAT32 * pMatrix);
  141. /**
  142. FIXME DOC
  143. */
  144. const OPJ_FLOAT64 * opj_mct_get_mct_norms(void);
  145. /**
  146. FIXME DOC
  147. */
  148. const OPJ_FLOAT64 * opj_mct_get_mct_norms_real(void);
  149. /* ----------------------------------------------------------------------- */
  150. /*@}*/
  151. /*@}*/
  152. #endif /* OPJ_MCT_H */