diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-23 18:50:53 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-29 11:31:32 +0200 |
commit | a6b650118543e1580e872896d8976042b7c32d01 (patch) | |
tree | 0b788c4e45c5013338a39c93f27123adb44663cf /libavcodec/ppc/h264dsp.c | |
parent | 67e6a9f558fbf7a72137abd0034a3f11249ab8bb (diff) | |
download | ffmpeg-a6b650118543e1580e872896d8976042b7c32d01.tar.gz |
ppc: cosmetics: Consistently format CPU flag detection invocations
Diffstat (limited to 'libavcodec/ppc/h264dsp.c')
-rw-r--r-- | libavcodec/ppc/h264dsp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/ppc/h264dsp.c b/libavcodec/ppc/h264dsp.c index a46327f8be..df298dd21f 100644 --- a/libavcodec/ppc/h264dsp.c +++ b/libavcodec/ppc/h264dsp.c @@ -745,7 +745,9 @@ av_cold void ff_h264dsp_init_ppc(H264DSPContext *c, const int bit_depth, const int chroma_format_idc) { #if HAVE_ALTIVEC - if (av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC) { + if (!(av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC)) + return; + if (bit_depth == 8) { c->h264_idct_add = h264_idct_add_altivec; if (chroma_format_idc == 1) @@ -764,6 +766,5 @@ av_cold void ff_h264dsp_init_ppc(H264DSPContext *c, const int bit_depth, c->biweight_h264_pixels_tab[0] = biweight_h264_pixels16_altivec; c->biweight_h264_pixels_tab[1] = biweight_h264_pixels8_altivec; } - } #endif /* HAVE_ALTIVEC */ } |