summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/vp3dsp_altivec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-30 11:48:50 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-30 11:48:54 +0200
commit09c94b57ca2c567ed6520c28f20a6a25c2950cb4 (patch)
tree4e13f50392fffbfcd6be8d41e3e1c503db5d2cdb /libavcodec/ppc/vp3dsp_altivec.c
parente45e72f5f89ef5a5791562cfcb935028b46ecd0a (diff)
parenta6b650118543e1580e872896d8976042b7c32d01 (diff)
downloadffmpeg-09c94b57ca2c567ed6520c28f20a6a25c2950cb4.tar.gz
Merge commit 'a6b650118543e1580e872896d8976042b7c32d01'
* commit 'a6b650118543e1580e872896d8976042b7c32d01': ppc: cosmetics: Consistently format CPU flag detection invocations Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ppc/vp3dsp_altivec.c')
-rw-r--r--libavcodec/ppc/vp3dsp_altivec.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/ppc/vp3dsp_altivec.c b/libavcodec/ppc/vp3dsp_altivec.c
index 502b8b7266..56c2d0b822 100644
--- a/libavcodec/ppc/vp3dsp_altivec.c
+++ b/libavcodec/ppc/vp3dsp_altivec.c
@@ -180,9 +180,10 @@ static void vp3_idct_add_altivec(uint8_t *dst, int stride, int16_t block[64])
av_cold void ff_vp3dsp_init_ppc(VP3DSPContext *c, int flags)
{
#if HAVE_ALTIVEC
- if (av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC) {
- c->idct_put = vp3_idct_put_altivec;
- c->idct_add = vp3_idct_add_altivec;
- }
+ if (!(av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC))
+ return;
+
+ c->idct_put = vp3_idct_put_altivec;
+ c->idct_add = vp3_idct_add_altivec;
#endif
}