Browse code

Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.

Originally committed as revision 8624 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2007/04/04 20:43:08
Showing 3 changed files
... ...
@@ -19,6 +19,12 @@
19 19
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 20
  *
21 21
  */
22
+
23
+/**
24
+ * TIFF image decoder
25
+ * @file tiff.c
26
+ * @author Konstantin Shishkov
27
+ */
22 28
 #include "avcodec.h"
23 29
 #ifdef CONFIG_ZLIB
24 30
 #include <zlib.h>
... ...
@@ -20,10 +20,15 @@
20 20
  *
21 21
  */
22 22
 
23
+/**
24
+ * TIFF tables
25
+ * @file tiff.h
26
+ * @author Konstantin Shishkov
27
+ */
23 28
 #ifndef TIFF_H
24 29
 #define TIFF_H
25 30
 
26
-/* abridged list of TIFF tags */
31
+/** abridged list of TIFF tags */
27 32
 enum TiffTags{
28 33
     TIFF_SUBFILE = 0xfe,
29 34
     TIFF_WIDTH = 0x100,
... ...
@@ -50,6 +55,7 @@ enum TiffTags{
50 50
     TIFF_REFERENCE_BW = 0x214,
51 51
 };
52 52
 
53
+/** list of TIFF compression types */
53 54
 enum TiffCompr{
54 55
     TIFF_RAW = 1,
55 56
     TIFF_CCITT_RLE,
... ...
@@ -20,6 +20,11 @@
20 20
  *
21 21
  */
22 22
 
23
+/**
24
+ * TIFF image encoder
25
+ * @file tiffenc.c
26
+ * @author Bartlomiej Wolowiec
27
+ */
23 28
 #include "avcodec.h"
24 29
 #ifdef CONFIG_ZLIB
25 30
 #include <zlib.h>