comparison synth_filter.h @ 10481:473d52076994 libavcodec

Multiple inclusion guards for synth_filter.h.
author michael
date Thu, 29 Oct 2009 10:46:29 +0000
parents bc20a950f9a7
children 811467079ec9
comparison
equal deleted inserted replaced
10480:bea92d25f53e 10481:473d52076994
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef AVCODEC_SYNTH_FILTER_H
22 #define AVCODEC_SYNTH_FILTER_H
23
21 #include "dsputil.h" 24 #include "dsputil.h"
22 25
23 void ff_synth_filter_float(FFTContext *imdct, 26 void ff_synth_filter_float(FFTContext *imdct,
24 float *synth_buf_ptr, int *synth_buf_offset, 27 float *synth_buf_ptr, int *synth_buf_offset,
25 float synth_buf2[32], const float window[512], 28 float synth_buf2[32], const float window[512],
26 float out[32], const float in[32], float scale, float bias); 29 float out[32], const float in[32], float scale, float bias);
27 30
31 #endif /* AVCODEC_SYNTH_FILTER_H */