comparison tiff.h @ 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 0860efc2f02b
children 4394344397d8
comparison
equal deleted inserted replaced
4781:bfe6e14839b2 4782:bca8924ed36c
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 * 20 *
21 */ 21 */
22 22
23 /**
24 * TIFF tables
25 * @file tiff.h
26 * @author Konstantin Shishkov
27 */
23 #ifndef TIFF_H 28 #ifndef TIFF_H
24 #define TIFF_H 29 #define TIFF_H
25 30
26 /* abridged list of TIFF tags */ 31 /** abridged list of TIFF tags */
27 enum TiffTags{ 32 enum TiffTags{
28 TIFF_SUBFILE = 0xfe, 33 TIFF_SUBFILE = 0xfe,
29 TIFF_WIDTH = 0x100, 34 TIFF_WIDTH = 0x100,
30 TIFF_HEIGHT, 35 TIFF_HEIGHT,
31 TIFF_BPP, 36 TIFF_BPP,
48 TIFF_YCBCR_SUBSAMPLING = 0x212, 53 TIFF_YCBCR_SUBSAMPLING = 0x212,
49 TIFF_YCBCR_POSITIONING = 0x213, 54 TIFF_YCBCR_POSITIONING = 0x213,
50 TIFF_REFERENCE_BW = 0x214, 55 TIFF_REFERENCE_BW = 0x214,
51 }; 56 };
52 57
58 /** list of TIFF compression types */
53 enum TiffCompr{ 59 enum TiffCompr{
54 TIFF_RAW = 1, 60 TIFF_RAW = 1,
55 TIFF_CCITT_RLE, 61 TIFF_CCITT_RLE,
56 TIFF_G3, 62 TIFF_G3,
57 TIFF_G4, 63 TIFF_G4,