Commit b148a39d authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '46bacb5c'

* commit '46bacb5c':
  x86: Consistently use cpu flag detection macros in places that still miss it
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 7766c7b7 46bacb5c
...@@ -252,7 +252,7 @@ av_cold void ff_mpadsp_init_x86(MPADSPContext *s) ...@@ -252,7 +252,7 @@ av_cold void ff_mpadsp_init_x86(MPADSPContext *s)
} }
#if HAVE_SSE2_INLINE #if HAVE_SSE2_INLINE
if (cpu_flags & AV_CPU_FLAG_SSE2) { if (INLINE_SSE2(cpu_flags)) {
s->apply_window_float = apply_window_mp3; s->apply_window_float = apply_window_mp3;
} }
#endif /* HAVE_SSE2_INLINE */ #endif /* HAVE_SSE2_INLINE */
......
...@@ -382,11 +382,11 @@ av_cold void ff_sws_init_swscale_x86(SwsContext *c) ...@@ -382,11 +382,11 @@ av_cold void ff_sws_init_swscale_x86(SwsContext *c)
int cpu_flags = av_get_cpu_flags(); int cpu_flags = av_get_cpu_flags();
#if HAVE_MMX_INLINE #if HAVE_MMX_INLINE
if (cpu_flags & AV_CPU_FLAG_MMX) if (INLINE_MMX(cpu_flags))
sws_init_swscale_mmx(c); sws_init_swscale_mmx(c);
#endif #endif
#if HAVE_MMXEXT_INLINE #if HAVE_MMXEXT_INLINE
if (cpu_flags & AV_CPU_FLAG_MMXEXT) if (INLINE_MMXEXT(cpu_flags))
sws_init_swscale_mmxext(c); sws_init_swscale_mmxext(c);
if (cpu_flags & AV_CPU_FLAG_SSE3){ if (cpu_flags & AV_CPU_FLAG_SSE3){
if(c->use_mmx_vfilter && !(c->flags & SWS_ACCURATE_RND)) if(c->use_mmx_vfilter && !(c->flags & SWS_ACCURATE_RND))
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include "libswscale/swscale_internal.h" #include "libswscale/swscale_internal.h"
#include "libavutil/attributes.h" #include "libavutil/attributes.h"
#include "libavutil/x86/asm.h" #include "libavutil/x86/asm.h"
#include "libavutil/x86/cpu.h"
#include "libavutil/cpu.h" #include "libavutil/cpu.h"
#if HAVE_INLINE_ASM #if HAVE_INLINE_ASM
...@@ -74,7 +75,7 @@ av_cold SwsFunc ff_yuv2rgb_init_x86(SwsContext *c) ...@@ -74,7 +75,7 @@ av_cold SwsFunc ff_yuv2rgb_init_x86(SwsContext *c)
int cpu_flags = av_get_cpu_flags(); int cpu_flags = av_get_cpu_flags();
#if HAVE_MMXEXT_INLINE #if HAVE_MMXEXT_INLINE
if (cpu_flags & AV_CPU_FLAG_MMXEXT) { if (INLINE_MMXEXT(cpu_flags)) {
switch (c->dstFormat) { switch (c->dstFormat) {
case AV_PIX_FMT_RGB24: case AV_PIX_FMT_RGB24:
return yuv420_rgb24_mmxext; return yuv420_rgb24_mmxext;
...@@ -84,7 +85,7 @@ av_cold SwsFunc ff_yuv2rgb_init_x86(SwsContext *c) ...@@ -84,7 +85,7 @@ av_cold SwsFunc ff_yuv2rgb_init_x86(SwsContext *c)
} }
#endif #endif
if (cpu_flags & AV_CPU_FLAG_MMX) { if (INLINE_MMX(cpu_flags)) {
switch (c->dstFormat) { switch (c->dstFormat) {
case AV_PIX_FMT_RGB32: case AV_PIX_FMT_RGB32:
if (c->srcFormat == AV_PIX_FMT_YUVA420P) { if (c->srcFormat == AV_PIX_FMT_YUVA420P) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment