OSDN Git Service

Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.
authorDiego Biurrun <diego@biurrun.de>
Wed, 4 Apr 2007 11:43:08 +0000 (11:43 +0000)
committerDiego Biurrun <diego@biurrun.de>
Wed, 4 Apr 2007 11:43:08 +0000 (11:43 +0000)
Originally committed as revision 8624 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/tiff.c
libavcodec/tiff.h
libavcodec/tiffenc.c

index 6bbd60d..f614b32 100644 (file)
  * 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>
index 77e8734..4e51de2 100644 (file)
  *
  */
 
+/**
+ * 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 @@ enum TiffTags{
     TIFF_REFERENCE_BW = 0x214,
 };
 
+/** list of TIFF compression types */
 enum TiffCompr{
     TIFF_RAW = 1,
     TIFF_CCITT_RLE,
index f9a086f..20c9bee 100644 (file)
  *
  */
 
+/**
+ * TIFF image encoder
+ * @file tiffenc.c
+ * @author Bartlomiej Wolowiec
+ */
 #include "avcodec.h"
 #ifdef CONFIG_ZLIB
 #include <zlib.h>