diff options
author | David Conrad <lessen42@gmail.com> | 2008-08-31 07:05:55 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2008-08-31 07:05:55 +0000 |
commit | b4c3d835849bdf266123a5c5e701505efeedc9a8 (patch) | |
tree | ea03148d312a5bae80e6e2dc2e6eb0f2ead16f9a /libavcodec/i386/dsputil_mmx.c | |
parent | 43410eaf7cea8317388d7a90f39ca9efa84ea28f (diff) | |
download | ffmpeg-b4c3d835849bdf266123a5c5e701505efeedc9a8.tar.gz |
Use ff_vp3_idct_data in vp3dsp_mmx.c rather than duplicating it
Originally committed as revision 15118 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/dsputil_mmx.c')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 41aadc6119..7dbb6a3d16 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -2537,7 +2537,6 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) c->idct = ff_vp3_idct_sse2; c->idct_permutation_type= FF_TRANSPOSE_IDCT_PERM; }else{ - ff_vp3_dsp_init_mmx(); c->idct_put= ff_vp3_idct_put_mmx; c->idct_add= ff_vp3_idct_add_mmx; c->idct = ff_vp3_idct_mmx; |