diff options
author | Arpi <arpi@thot.banki.hu> | 2002-09-19 22:14:53 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2002-09-19 22:14:53 +0000 |
commit | 3f09f52adf1ccdb93873f57570d8389316dc13ed (patch) | |
tree | c9ae3cb072c52045654db4fc53901dce25fd3b17 /libavcodec/i386 | |
parent | b3a391e8b8498b3156849dafe164c859fbfbbcd2 (diff) | |
download | ffmpeg-3f09f52adf1ccdb93873f57570d8389316dc13ed.tar.gz |
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')
-rw-r--r-- | libavcodec/i386/fdct_mmx.c | 2 | ||||
-rw-r--r-- | libavcodec/i386/mpegvideo_mmx.c | 2 | ||||
-rw-r--r-- | libavcodec/i386/mpegvideo_mmx_template.c | 2 |
3 files changed, 3 insertions, 3 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); diff --git a/libavcodec/i386/mpegvideo_mmx.c b/libavcodec/i386/mpegvideo_mmx.c index 10efc173f3..fc5ca55f80 100644 --- a/libavcodec/i386/mpegvideo_mmx.c +++ b/libavcodec/i386/mpegvideo_mmx.c @@ -560,7 +560,7 @@ void MPV_common_init_mmx(MpegEncContext *s) draw_edges = draw_edges_mmx; if(dct_algo==FF_DCT_AUTO || dct_algo==FF_DCT_MMX){ - s->fdct = fdct_mmx; + s->fdct = ff_fdct_mmx; if(mm_flags & MM_MMXEXT){ s->dct_quantize= dct_quantize_MMX2; diff --git a/libavcodec/i386/mpegvideo_mmx_template.c b/libavcodec/i386/mpegvideo_mmx_template.c index 27229ba299..1eed906c63 100644 --- a/libavcodec/i386/mpegvideo_mmx_template.c +++ b/libavcodec/i386/mpegvideo_mmx_template.c @@ -41,7 +41,7 @@ static int RENAME(dct_quantize)(MpegEncContext *s, static __align8 INT16 temp_block[64]; //s->fdct (block); - fdct_mmx (block); //cant be anything else ... + ff_fdct_mmx (block); //cant be anything else ... if (s->mb_intra) { int dummy; |