diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-17 09:16:21 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-17 09:16:21 +0000 |
commit | 52703a6459d164f30f850f31333946393f1dd414 (patch) | |
tree | 4489c1af2aa5a35a68a3ba79dac9584679a6934d /libpostproc | |
parent | 7f3c02fc219428e47f5efeac687f37b8773b9204 (diff) | |
download | ffmpeg-52703a6459d164f30f850f31333946393f1dd414.tar.gz |
Use filename as multiple inclusion guard.
Originally committed as revision 10760 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h index aa5714d047..ac4533b2c2 100644 --- a/libpostproc/postprocess.h +++ b/libpostproc/postprocess.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef NEWPOSTPROCESS_H -#define NEWPOSTPROCESS_H +#ifndef POSTPROCESS_H +#define POSTPROCESS_H /** * @file postprocess.h @@ -75,4 +75,4 @@ void pp_free_context(pp_context_t *ppContext); #define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale -#endif +#endif /* POSTPROCESS_H */ |