From 82696beed3bb285c9dfad6aeff4488955644cb49 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Tue, 29 Oct 2002 22:26:01 +0000 Subject: avoid name clash Originally committed as revision 1104 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/dsputil.h') diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 096dc288c6..2eb8651e87 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -262,11 +262,11 @@ typedef struct MDCTContext { FFTContext fft; } MDCTContext; -int mdct_init(MDCTContext *s, int nbits, int inverse); -void imdct_calc(MDCTContext *s, FFTSample *output, +int ff_mdct_init(MDCTContext *s, int nbits, int inverse); +void ff_imdct_calc(MDCTContext *s, FFTSample *output, const FFTSample *input, FFTSample *tmp); -void mdct_calc(MDCTContext *s, FFTSample *out, +void ff_mdct_calc(MDCTContext *s, FFTSample *out, const FFTSample *input, FFTSample *tmp); -void mdct_end(MDCTContext *s); +void ff_mdct_end(MDCTContext *s); #endif -- cgit v1.2.3