[trunk] move opj_bool to OPJ_BOOL to follow the other type
[openjpeg.git] / src / lib / openjp2 / invert.h
index cf5dab9237e7ae6bfe60704accb6dee1df2324e4..2193fc194a04b2f782655c8cd2a520f2e22f17dc 100644 (file)
 
 #ifndef __INVERT_H
 #define __INVERT_H
-/**\r
-@file invert.h\r
-@brief Implementation of the matrix inversion\r
-\r
-The function in INVERT.H compute a matrix inversion with a LUP method\r
+/**
+@file invert.h
+@brief Implementation of the matrix inversion
+
+The function in INVERT.H compute a matrix inversion with a LUP method
 */
 
-/** @defgroup INVERT INVERT - Implementation of a matrix inversion */\r
+/** @defgroup INVERT INVERT - Implementation of a matrix inversion */
 /*@{*/
-/** @name Exported functions */\r
+/** @name Exported functions */
 /*@{*/
 /* ----------------------------------------------------------------------- */
 
@@ -45,14 +45,15 @@ The function in INVERT.H compute a matrix inversion with a LUP method
  *
  * @param pSrcMatrix   the matrix to invert.
  * @param pDestMatrix  data to store the inverted matrix. 
+ * @param n size of the matrix
  * @return OPJ_TRUE if the inversion is successful, OPJ_FALSE if the matrix is singular.
  */
-opj_bool opj_matrix_inversion_f(OPJ_FLOAT32 * pSrcMatrix,
+OPJ_BOOL opj_matrix_inversion_f(OPJ_FLOAT32 * pSrcMatrix,
                                 OPJ_FLOAT32 * pDestMatrix, 
-                                OPJ_UINT32 n);
-/* ----------------------------------------------------------------------- */\r
-/*@}*/\r
-\r
+                                OPJ_UINT32 nb_compo);
+/* ----------------------------------------------------------------------- */
+/*@}*/
+
 /*@}*/
 
 #endif /* __INVERT_H */