diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-17 11:12:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-17 11:12:04 +0000 |
commit | 8b6103da0f0f2ac73cf2698e8f26d7b989a564ac (patch) | |
tree | e3de9b1ac794d351fc0654ff54e8180bff9b893d /libavcodec/dsputil.c | |
parent | ea191e08d6cefad09bfb1e6d9317874dfd4080be (diff) | |
download | ffmpeg-8b6103da0f0f2ac73cf2698e8f26d7b989a564ac.tar.gz |
porting vp3 idct over to lavc idct api
Originally committed as revision 4257 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index a19f79d316..5505dff78e 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3643,6 +3643,11 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) c->idct_add= ff_jref_idct_add; c->idct = j_rev_dct; c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM; + }else if(avctx->idct_algo==FF_IDCT_VP3){ + c->idct_put= ff_vp3_idct_put_c; + c->idct_add= ff_vp3_idct_add_c; + c->idct = ff_vp3_idct_c; + c->idct_permutation_type= FF_NO_IDCT_PERM; }else{ //accurate/default c->idct_put= simple_idct_put; c->idct_add= simple_idct_add; @@ -3653,10 +3658,6 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) c->h264_idct_add= ff_h264_idct_add_c; - /* VP3 DSP support */ - c->vp3_dsp_init = vp3_dsp_init_c; - c->vp3_idct = vp3_idct_c; - c->get_pixels = get_pixels_c; c->diff_pixels = diff_pixels_c; c->put_pixels_clamped = put_pixels_clamped_c; |