diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-06-05 08:46:47 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-06-10 15:13:57 -0700 |
commit | 27860819d508068f056cf48473af04868791ad77 (patch) | |
tree | 9916fd30fcf28bdd64424daf8021d57686338fef /libavcodec/ppc/h264qpel.c | |
parent | 205fdd4ea5e1264946917a26fde01e137a485f5a (diff) | |
download | ffmpeg-27860819d508068f056cf48473af04868791ad77.tar.gz |
ppc: Consistently use convenience macro for runtime CPU detection
Diffstat (limited to 'libavcodec/ppc/h264qpel.c')
-rw-r--r-- | libavcodec/ppc/h264qpel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ppc/h264qpel.c b/libavcodec/ppc/h264qpel.c index aae6725973..3963344dce 100644 --- a/libavcodec/ppc/h264qpel.c +++ b/libavcodec/ppc/h264qpel.c @@ -22,6 +22,7 @@ #include "libavutil/attributes.h" #include "libavutil/cpu.h" #include "libavutil/intreadwrite.h" +#include "libavutil/ppc/cpu.h" #include "libavutil/ppc/types_altivec.h" #include "libavutil/ppc/util_altivec.h" #include "libavcodec/h264qpel.h" @@ -288,7 +289,7 @@ av_cold void ff_h264qpel_init_ppc(H264QpelContext *c, int bit_depth) #if HAVE_ALTIVEC const int high_bit_depth = bit_depth > 8; - if (!(av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC)) + if (!PPC_ALTIVEC(av_get_cpu_flags())) return; if (!high_bit_depth) { |