diff options
author | Måns Rullgård <mans@mansr.com> | 2007-06-17 00:01:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-06-17 00:01:30 +0000 |
commit | 699b3f99d0376a8fd5159bdad857228bda59cff6 (patch) | |
tree | 5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libpostproc/postprocess_internal.h | |
parent | 99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff) | |
download | ffmpeg-699b3f99d0376a8fd5159bdad857228bda59cff6.tar.gz |
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess_internal.h')
-rw-r--r-- | libpostproc/postprocess_internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpostproc/postprocess_internal.h b/libpostproc/postprocess_internal.h index b4bf0ca05e..9ec2f3500d 100644 --- a/libpostproc/postprocess_internal.h +++ b/libpostproc/postprocess_internal.h @@ -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 |