# HG changeset patch # User mru # Date 1182038490 0 # Node ID 24e913b870660e6f1b3d7051e1f2e97528693906 # Parent cdfe8fc50090a6872ca28cbfd8a76fca750cb967 add multiple inclusion guards to headers diff -r cdfe8fc50090 -r 24e913b87066 postprocess_internal.h --- 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