summaryrefslogtreecommitdiff
path: root/libavcodec/i386/fdct_mmx.c
diff options
context:
space:
mode:
authorArpi <arpi@thot.banki.hu>2002-09-19 22:14:53 +0000
committerArpi <arpi@thot.banki.hu>2002-09-19 22:14:53 +0000
commit3f09f52adf1ccdb93873f57570d8389316dc13ed (patch)
treec9ae3cb072c52045654db4fc53901dce25fd3b17 /libavcodec/i386/fdct_mmx.c
parentb3a391e8b8498b3156849dafe164c859fbfbbcd2 (diff)
fdct_mmx -> ff_fdct_mmx (renamed to avoid namespace conflict with xvid)
[found by Kim Minh Kaplan] Originally committed as revision 960 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/fdct_mmx.c')
-rw-r--r--libavcodec/i386/fdct_mmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/fdct_mmx.c b/libavcodec/i386/fdct_mmx.c
index e43871b5cd..0ef19211a4 100644
--- a/libavcodec/i386/fdct_mmx.c
+++ b/libavcodec/i386/fdct_mmx.c
@@ -267,7 +267,7 @@ static inline void fdct_row(const int16_t *in, int16_t *out, const int16_t *tabl
movq_r2m(mm6, *(out + 4));
}
-void fdct_mmx(int16_t *block)
+void ff_fdct_mmx(int16_t *block)
{
/* XXX: not thread safe */
static int16_t block_tmp[64] ATTR_ALIGN(8);