changeset 4782:bca8924ed36c libavcodec

Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
author diego
date Wed, 04 Apr 2007 11:43:08 +0000
parents bfe6e14839b2
children 011fb289e3b0
files tiff.c tiff.h tiffenc.c
diffstat 3 files changed, 18 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tiff.c	Tue Apr 03 22:17:37 2007 +0000
+++ b/tiff.c	Wed Apr 04 11:43:08 2007 +0000
@@ -19,6 +19,12 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *
  */
+
+/**
+ * TIFF image decoder
+ * @file tiff.c
+ * @author Konstantin Shishkov
+ */
 #include "avcodec.h"
 #ifdef CONFIG_ZLIB
 #include <zlib.h>
--- a/tiff.h	Tue Apr 03 22:17:37 2007 +0000
+++ b/tiff.h	Wed Apr 04 11:43:08 2007 +0000
@@ -20,10 +20,15 @@
  *
  */
 
+/**
+ * TIFF tables
+ * @file tiff.h
+ * @author Konstantin Shishkov
+ */
 #ifndef TIFF_H
 #define TIFF_H
 
-/* abridged list of TIFF tags */
+/** abridged list of TIFF tags */
 enum TiffTags{
     TIFF_SUBFILE = 0xfe,
     TIFF_WIDTH = 0x100,
@@ -50,6 +55,7 @@
     TIFF_REFERENCE_BW = 0x214,
 };
 
+/** list of TIFF compression types */
 enum TiffCompr{
     TIFF_RAW = 1,
     TIFF_CCITT_RLE,
--- a/tiffenc.c	Tue Apr 03 22:17:37 2007 +0000
+++ b/tiffenc.c	Wed Apr 04 11:43:08 2007 +0000
@@ -20,6 +20,11 @@
  *
  */
 
+/**
+ * TIFF image encoder
+ * @file tiffenc.c
+ * @author Bartlomiej Wolowiec
+ */
 #include "avcodec.h"
 #ifdef CONFIG_ZLIB
 #include <zlib.h>