summaryrefslogtreecommitdiff
path: root/libopenjpeg/fix.h
diff options
context:
space:
mode:
authorAntonin Descampe <antonin@gmail.com>2005-12-02 13:34:15 +0000
committerAntonin Descampe <antonin@gmail.com>2005-12-02 13:34:15 +0000
commitf61cda9b7d83e0202cbaa15bac45d358e9b3652e (patch)
tree2acfa84c798e60d15107f2399a8856be4f5a3806 /libopenjpeg/fix.h
parent76016d509bf892b555840a1bfa3b62750c878051 (diff)
openjpeg version 1.0 (previous version still available with tag opj0-97)
Diffstat (limited to 'libopenjpeg/fix.h')
-rw-r--r--libopenjpeg/fix.h25
1 files changed, 23 insertions, 2 deletions
diff --git a/libopenjpeg/fix.h b/libopenjpeg/fix.h
index 768cada2..28d2e7c4 100644
--- a/libopenjpeg/fix.h
+++ b/libopenjpeg/fix.h
@@ -1,5 +1,9 @@
/*
- * Copyright (c) 2001-2002, David Janssens
+ * Copyright (c) 2001-2003, David Janssens
+ * Copyright (c) 2002-2003, Yannick Verschueren
+ * Copyright (c) 2003-2005, Francois Devaux and Antonin Descampe
+ * Copyright (c) 2005, HervŽ Drolon, FreeImage Team
+ * Copyright (c) 2002-2005, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -27,7 +31,24 @@
#ifndef __FIX_H
#define __FIX_H
+/**
+@file fix.h
+@brief Implementation of operations of specific multiplication (FIX)
+The functions in FIX.C have for goal to realize specific multiplication.
+*/
+
+/** @defgroup FIX FIX - Implementation of operations of specific multiplication */
+/*@{*/
+
+/**
+Multiply two fixed-precision rational numbers.
+@param a
+@param b
+@return Returns a * b
+*/
int fix_mul(int a, int b);
-#endif
+/*@}*/
+
+#endif /* __FIX_H */