# HG changeset patch # User michael # Date 1256813189 0 # Node ID 473d5207699439f34441b633f3d10d7746c4adb4 # Parent bea92d25f53efef61237989eb326619ac11cd8fc Multiple inclusion guards for synth_filter.h. diff -r bea92d25f53e -r 473d52076994 synth_filter.h --- a/synth_filter.h Thu Oct 29 10:46:16 2009 +0000 +++ b/synth_filter.h Thu Oct 29 10:46:29 2009 +0000 @@ -18,6 +18,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef AVCODEC_SYNTH_FILTER_H +#define AVCODEC_SYNTH_FILTER_H + #include "dsputil.h" void ff_synth_filter_float(FFTContext *imdct, @@ -25,3 +28,4 @@ float synth_buf2[32], const float window[512], float out[32], const float in[32], float scale, float bias); +#endif /* AVCODEC_SYNTH_FILTER_H */