comparison armv4l/dsputil_arm.c @ 1324:7d328fd9d8a5 libavcodec

the return of the idct with 16bit output by ("Ivan Kalvachev" <ivan at cacad dot com>)
author michaelni
date Sat, 21 Jun 2003 01:11:31 +0000
parents f59c3f66363b
children cca26199ab17
comparison
equal deleted inserted replaced
1323:e9da5a651eab 1324:7d328fd9d8a5
46 ff_add_pixels_clamped = c->add_pixels_clamped; 46 ff_add_pixels_clamped = c->add_pixels_clamped;
47 47
48 if(idct_algo==FF_IDCT_AUTO || idct_algo==FF_IDCT_ARM){ 48 if(idct_algo==FF_IDCT_AUTO || idct_algo==FF_IDCT_ARM){
49 c->idct_put= arm_idct_put; 49 c->idct_put= arm_idct_put;
50 c->idct_add= arm_idct_add; 50 c->idct_add= arm_idct_add;
51 c->idct = j_rev_dct_ARM;
51 c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM;/* FF_NO_IDCT_PERM */ 52 c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM;/* FF_NO_IDCT_PERM */
52 } 53 }
53 } 54 }