diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-06-21 01:11:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-06-21 01:11:31 +0000 |
commit | 4fb518c392c0b30b17962e44bf29aa7080ce2b74 (patch) | |
tree | ae5c2308848578c27ee96adf9fc3086b4e3bd705 /libavcodec/armv4l | |
parent | daab32960343de43172ebf965099dd4c6939fb86 (diff) | |
download | ffmpeg-4fb518c392c0b30b17962e44bf29aa7080ce2b74.tar.gz |
the return of the idct with 16bit output by ("Ivan Kalvachev" <ivan at cacad dot com>)
Originally committed as revision 1983 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/armv4l')
-rw-r--r-- | libavcodec/armv4l/dsputil_arm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/armv4l/dsputil_arm.c b/libavcodec/armv4l/dsputil_arm.c index e3cc05f638..74eb96961a 100644 --- a/libavcodec/armv4l/dsputil_arm.c +++ b/libavcodec/armv4l/dsputil_arm.c @@ -48,6 +48,7 @@ void dsputil_init_armv4l(DSPContext* c, AVCodecContext *avctx) if(idct_algo==FF_IDCT_AUTO || idct_algo==FF_IDCT_ARM){ c->idct_put= arm_idct_put; c->idct_add= arm_idct_add; + c->idct = j_rev_dct_ARM; c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM;/* FF_NO_IDCT_PERM */ } } |