comparison rectangle.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 7a463923ecd1
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
23 * @file rectangle.h 23 * @file rectangle.h
24 * useful rectangle filling function 24 * useful rectangle filling function
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27 27
28 #ifndef FFMPEG_RECTANGLE_H 28 #ifndef AVCODEC_RECTANGLE_H
29 #define FFMPEG_RECTANGLE_H 29 #define AVCODEC_RECTANGLE_H
30 30
31 #include "libavutil/common.h" 31 #include "libavutil/common.h"
32 32
33 /** 33 /**
34 * fill a rectangle. 34 * fill a rectangle.
116 }else 116 }else
117 assert(0); 117 assert(0);
118 assert(h==4); 118 assert(h==4);
119 } 119 }
120 120
121 #endif /* FFMPEG_RECTANGLE_H */ 121 #endif /* AVCODEC_RECTANGLE_H */