projects
/
libav.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
x86: check for AV_CPU_FLAG_AVXSLOW where useful
[libav.git]
/
libavcodec
/
x86
/
dct_init.c
diff --git
a/libavcodec/x86/dct_init.c
b/libavcodec/x86/dct_init.c
index
7bda5e8
..
ca9fbc7
100644
(file)
--- a/
libavcodec/x86/dct_init.c
+++ b/
libavcodec/x86/dct_init.c
@@
-34,6
+34,6
@@
av_cold void ff_dct_init_x86(DCTContext *s)
s->dct32 = ff_dct32_float_sse;
if (EXTERNAL_SSE2(cpu_flags))
s->dct32 = ff_dct32_float_sse2;
- if (EXTERNAL_AVX(cpu_flags))
+ if (EXTERNAL_AVX
_FAST
(cpu_flags))
s->dct32 = ff_dct32_float_avx;
}