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
This commit is contained in:
Diego Biurrun
2007-04-04 11:43:08 +00:00
parent 7c1ebf179b
commit ee5c8a9bc4
3 changed files with 18 additions and 1 deletions

View File

@@ -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 @@ enum TiffTags{
TIFF_REFERENCE_BW = 0x214,
};
/** list of TIFF compression types */
enum TiffCompr{
TIFF_RAW = 1,
TIFF_CCITT_RLE,