changeset 50:24e913b87066 libpostproc

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents cdfe8fc50090
children cbe8cee61428
files postprocess_internal.h
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/postprocess_internal.h	Tue Jun 12 18:50:50 2007 +0000
+++ b/postprocess_internal.h	Sun Jun 17 00:01:30 2007 +0000
@@ -23,6 +23,9 @@
  * internal api header.
  */
 
+#ifndef POSTPROCESS_INTERNAL_H
+#define POSTPROCESS_INTERNAL_H
+
 #include "avutil.h"
 
 #define V_DEBLOCK       0x01
@@ -181,3 +184,5 @@
                 memcpy(dest+(lines-1)*stride, src+(lines-1)*stride, -lines*stride);
         }
 }
+
+#endif