summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2002-10-29 22:26:01 +0000
committerFabrice Bellard <fabrice@bellard.org>2002-10-29 22:26:01 +0000
commit82696beed3bb285c9dfad6aeff4488955644cb49 (patch)
treec9b9dac6642463da217bb4caabde9407cf3f62f8 /libavcodec/dsputil.h
parentdf8d4d0ed5bb0658006a9349a814c5b220aef09d (diff)
avoid name clash
Originally committed as revision 1104 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h8
1 files changed, 4 insertions, 4 deletions
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