You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
fixing normal mmx idct
Originally committed as revision 835 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -1294,11 +1294,12 @@ void dsputil_init(void)
|
|||||||
ff_idct_put = simple_idct_put;
|
ff_idct_put = simple_idct_put;
|
||||||
ff_idct_add = simple_idct_add;
|
ff_idct_add = simple_idct_add;
|
||||||
use_permuted_idct=0;
|
use_permuted_idct=0;
|
||||||
} else {
|
}
|
||||||
|
#endif
|
||||||
|
if(ff_idct != NULL) {
|
||||||
ff_idct_put = gen_idct_put;
|
ff_idct_put = gen_idct_put;
|
||||||
ff_idct_add = gen_idct_add;
|
ff_idct_add = gen_idct_add;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
if(use_permuted_idct)
|
if(use_permuted_idct)
|
||||||
#ifdef SIMPLE_IDCT
|
#ifdef SIMPLE_IDCT
|
||||||
|
Reference in New Issue
Block a user