diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-20 19:49:10 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-03-20 21:12:00 +0000 |
commit | e87a6f0dc99c2266e68ef66afaf83462d353964c (patch) | |
tree | 696e1203de9481ddd4f89d22c21212e36f0442c2 | |
parent | cf752d027fafe691951fa00d9c25e2fda032b536 (diff) | |
download | ffmpeg-e87a6f0dc99c2266e68ef66afaf83462d353964c.tar.gz |
Move ff_dct_init_mmx declaration to dct.h
This was missed in 0aded94.
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/dct.h | 2 | ||||
-rw-r--r-- | libavcodec/fft.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dct.h b/libavcodec/dct.h index 141518d250..faddaa3d7b 100644 --- a/libavcodec/dct.h +++ b/libavcodec/dct.h @@ -47,4 +47,6 @@ struct DCTContext { int ff_dct_init(DCTContext *s, int nbits, enum DCTTransformType type); void ff_dct_end (DCTContext *s); +void ff_dct_init_mmx(DCTContext *s); + #endif diff --git a/libavcodec/fft.h b/libavcodec/fft.h index a7ba00fe1a..36be9962ad 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -99,7 +99,6 @@ int ff_fft_init(FFTContext *s, int nbits, int inverse); void ff_fft_init_altivec(FFTContext *s); void ff_fft_init_mmx(FFTContext *s); void ff_fft_init_arm(FFTContext *s); -void ff_dct_init_mmx(DCTContext *s); void ff_fft_end(FFTContext *s); |