This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
fixing normal mmx idct
Originally committed as revision 835 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer
23 years ago
parent
32b9092155
commit
fc2bb4f44d
1 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-2
libavcodec/dsputil.c
+ 3
- 2
libavcodec/dsputil.c
View File
@@ -1294,11 +1294,12 @@ void dsputil_init(void)
ff_idct_put = simple_idct_put;
ff_idct_add = simple_idct_add;
use_permuted_idct=0;
} else {
}
#endif
if(ff_idct != NULL) {
ff_idct_put = gen_idct_put;
ff_idct_add = gen_idct_add;
}
#endif
if(use_permuted_idct)
#ifdef SIMPLE_IDCT
Write
Preview
Loading…
Cancel
Save