summaryrefslogtreecommitdiff
path: root/libavcodec/x86/idct_mmx.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-06 22:37:08 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-06 22:37:08 +0000
commitf49747e90473cd2a8d2bb73db416c73e05109258 (patch)
tree311e77700344c7df1b4991f5fffdeaa9f34b1d82 /libavcodec/x86/idct_mmx.c
parent98713e55b4fb373819511c12b52dd2a2d3eea704 (diff)
x86: move function prototypes to header files
Originally committed as revision 22266 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/idct_mmx.c')
-rw-r--r--libavcodec/x86/idct_mmx.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/x86/idct_mmx.c b/libavcodec/x86/idct_mmx.c
index aed934c04d..ad73f70732 100644
--- a/libavcodec/x86/idct_mmx.c
+++ b/libavcodec/x86/idct_mmx.c
@@ -23,6 +23,7 @@
#include "libavutil/common.h"
#include "libavcodec/dsputil.h"
+#include "dsputil_mmx.h"
#include "mmx.h"
#define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align)))
@@ -594,9 +595,6 @@ void idct (int16_t * const block) \
idct_col (block, 4); \
}
-void ff_mmx_idct(DCTELEM *block);
-void ff_mmxext_idct(DCTELEM *block);
-
declare_idct (ff_mmxext_idct, mmxext_table,
mmxext_row_head, mmxext_row, mmxext_row_tail, mmxext_row_mid)