comparison mpeg12data.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 f7cbb7733146
children e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 /** 23 /**
24 * @file mpeg12data.h 24 * @file mpeg12data.h
25 * MPEG1/2 tables. 25 * MPEG1/2 tables.
26 */ 26 */
27 27
28 #ifndef FFMPEG_MPEG12DATA_H 28 #ifndef AVCODEC_MPEG12DATA_H
29 #define FFMPEG_MPEG12DATA_H 29 #define AVCODEC_MPEG12DATA_H
30 30
31 #include <stdint.h> 31 #include <stdint.h>
32 #include "libavutil/rational.h" 32 #include "libavutil/rational.h"
33 #include "rl.h" 33 #include "rl.h"
34 34
51 extern const AVRational ff_frame_rate_tab[]; 51 extern const AVRational ff_frame_rate_tab[];
52 52
53 extern const float ff_mpeg1_aspect[16]; 53 extern const float ff_mpeg1_aspect[16];
54 extern const AVRational ff_mpeg2_aspect[16]; 54 extern const AVRational ff_mpeg2_aspect[16];
55 55
56 #endif /* FFMPEG_MPEG12DATA_H */ 56 #endif /* AVCODEC_MPEG12DATA_H */