comparison tiff.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 2b72f9bc4f06
children c4a4495715dd
comparison
equal deleted inserted replaced
5829:74db916a3715 5830:1d83e9c34641
22 /** 22 /**
23 * TIFF tables 23 * TIFF tables
24 * @file tiff.h 24 * @file tiff.h
25 * @author Konstantin Shishkov 25 * @author Konstantin Shishkov
26 */ 26 */
27 #ifndef TIFF_H 27 #ifndef FFMPEG_TIFF_H
28 #define TIFF_H 28 #define FFMPEG_TIFF_H
29 29
30 #include <stdint.h> 30 #include <stdint.h>
31 31
32 /** abridged list of TIFF tags */ 32 /** abridged list of TIFF tags */
33 enum TiffTags{ 33 enum TiffTags{
81 /** sizes of various TIFF field types (string size = 100)*/ 81 /** sizes of various TIFF field types (string size = 100)*/
82 static const uint8_t type_sizes[6] = { 82 static const uint8_t type_sizes[6] = {
83 0, 1, 100, 2, 4, 8 83 0, 1, 100, 2, 4, 8
84 }; 84 };
85 85
86 #endif /* TIFF_H */ 86 #endif /* FFMPEG_TIFF_H */