comparison iirfilter.h @ 7760:c4a4495715dd libavcodec

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents f1e68b2dc389
children e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file iirfilter.h 23 * @file iirfilter.h
24 * IIR filter interface 24 * IIR filter interface
25 */ 25 */
26 26
27 #ifndef FFMPEG_IIRFILTER_H 27 #ifndef AVCODEC_IIRFILTER_H
28 #define FFMPEG_IIRFILTER_H 28 #define AVCODEC_IIRFILTER_H
29 29
30 #include "avcodec.h" 30 #include "avcodec.h"
31 31
32 struct FFIIRFilterCoeffs; 32 struct FFIIRFilterCoeffs;
33 struct FFIIRFilterState; 33 struct FFIIRFilterState;
98 * @param dstep destination stride 98 * @param dstep destination stride
99 */ 99 */
100 void ff_iir_filter(const struct FFIIRFilterCoeffs *coeffs, struct FFIIRFilterState *state, 100 void ff_iir_filter(const struct FFIIRFilterCoeffs *coeffs, struct FFIIRFilterState *state,
101 int size, const int16_t *src, int sstep, int16_t *dst, int dstep); 101 int size, const int16_t *src, int sstep, int16_t *dst, int dstep);
102 102
103 #endif /* FFMPEG_IIRFILTER_H */ 103 #endif /* AVCODEC_IIRFILTER_H */