comparison tiff.h @ 7760:c4a4495715dd libavcodec

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents 1d83e9c34641
children b8d72c9851c7
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
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 FFMPEG_TIFF_H 27 #ifndef AVCODEC_TIFF_H
28 #define FFMPEG_TIFF_H 28 #define AVCODEC_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 /* FFMPEG_TIFF_H */ 86 #endif /* AVCODEC_TIFF_H */