diff options
author | Mike Melanson <mike@multimedia.cx> | 2004-04-26 00:20:29 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2004-04-26 00:20:29 +0000 |
commit | 116824d0aa1c416c3fb0f2c39d339fc00ae251f3 (patch) | |
tree | 0d062e4045aee066c0003234e1d4b716ad1b2c83 /libavcodec/dsputil.c | |
parent | 4ea4b274697767abddda3c425ba4bb43dfdee52f (diff) | |
download | ffmpeg-streaming-116824d0aa1c416c3fb0f2c39d339fc00ae251f3.zip ffmpeg-streaming-116824d0aa1c416c3fb0f2c39d339fc00ae251f3.tar.gz |
reorganize and simplify the VP3 IDCT stuff
Originally committed as revision 3071 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index fce0b81..7b554b1 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3126,8 +3126,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) /* VP3 DSP support */ c->vp3_dsp_init = vp3_dsp_init_c; - c->vp3_idct_put = vp3_idct_put_c; - c->vp3_idct_add = vp3_idct_add_c; + c->vp3_idct = vp3_idct_c; c->get_pixels = get_pixels_c; c->diff_pixels = diff_pixels_c; |