add multiple inclusion guards to headers

Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2007-06-17 00:01:30 +00:00
parent 99545457bf
commit 699b3f99d0
51 changed files with 248 additions and 0 deletions

View File

@@ -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 @@ static inline void linecpy(void *dest, void *src, int lines, int stride)
memcpy(dest+(lines-1)*stride, src+(lines-1)*stride, -lines*stride);
}
}
#endif