comparison raw.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 76f6a08c9fe6
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file raw.h 23 * @file raw.h
24 * Raw Video Codec 24 * Raw Video Codec
25 */ 25 */
26 26
27 #ifndef FFMPEG_RAW_H 27 #ifndef AVCODEC_RAW_H
28 #define FFMPEG_RAW_H 28 #define AVCODEC_RAW_H
29 29
30 #include "avcodec.h" 30 #include "avcodec.h"
31 31
32 typedef struct PixelFormatTag { 32 typedef struct PixelFormatTag {
33 int pix_fmt; 33 int pix_fmt;
34 unsigned int fourcc; 34 unsigned int fourcc;
35 } PixelFormatTag; 35 } PixelFormatTag;
36 36
37 extern const PixelFormatTag ff_raw_pixelFormatTags[]; 37 extern const PixelFormatTag ff_raw_pixelFormatTags[];
38 38
39 #endif /* FFMPEG_RAW_H */ 39 #endif /* AVCODEC_RAW_H */