Browse code

Use directory name as multiple inclusion guard prefix. We do this for all other libraries already.

Originally committed as revision 16990 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2009/02/05 05:31:20
Showing 2 changed files
... ...
@@ -18,8 +18,8 @@
18 18
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 19
  */
20 20
 
21
-#ifndef POSTPROCESS_POSTPROCESS_H
22
-#define POSTPROCESS_POSTPROCESS_H
21
+#ifndef POSTPROC_POSTPROCESS_H
22
+#define POSTPROC_POSTPROCESS_H
23 23
 
24 24
 /**
25 25
  * @file libpostproc/postprocess.h
... ...
@@ -96,4 +96,4 @@ void pp_free_context(pp_context *ppContext);
96 96
 
97 97
 #define PP_PICT_TYPE_QP2  0x00000010 ///< MPEG2 style QScale
98 98
 
99
-#endif /* POSTPROCESS_POSTPROCESS_H */
99
+#endif /* POSTPROC_POSTPROCESS_H */
... ...
@@ -23,8 +23,8 @@
23 23
  * internal api header.
24 24
  */
25 25
 
26
-#ifndef POSTPROCESS_POSTPROCESS_INTERNAL_H
27
-#define POSTPROCESS_POSTPROCESS_INTERNAL_H
26
+#ifndef POSTPROC_POSTPROCESS_INTERNAL_H
27
+#define POSTPROC_POSTPROCESS_INTERNAL_H
28 28
 
29 29
 #include <string.h>
30 30
 #include "libavutil/avutil.h"
... ...
@@ -175,4 +175,4 @@ static inline void linecpy(void *dest, const void *src, int lines, int stride) {
175 175
     }
176 176
 }
177 177
 
178
-#endif /* POSTPROCESS_POSTPROCESS_INTERNAL_H */
178
+#endif /* POSTPROC_POSTPROCESS_INTERNAL_H */