From 907fc60f312549ee8e8064f575bb1e16c74e2093 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sat, 22 Dec 2007 02:35:33 +0000 Subject: [PATCH] Cosmetics Originally committed as revision 11299 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ppc/h264_template_altivec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/ppc/h264_template_altivec.c b/libavcodec/ppc/h264_template_altivec.c index c39c13156e..f032b0dab7 100644 --- a/libavcodec/ppc/h264_template_altivec.c +++ b/libavcodec/ppc/h264_template_altivec.c @@ -30,9 +30,9 @@ void PREFIX_h264_chroma_mc8_altivec(uint8_t * dst, uint8_t * src, int stride, in POWERPC_PERF_DECLARE(PREFIX_h264_chroma_mc8_num, 1); DECLARE_ALIGNED_16(signed int, ABCD[4]) = {((8 - x) * (8 - y)), - ((x) * (8 - y)), - ((8 - x) * (y)), - ((x) * (y))}; + (( x) * (8 - y)), + ((8 - x) * ( y)), + (( x) * ( y))}; register int i; vec_u8_t fperm; const vec_s32_t vABCD = vec_ld(0, ABCD);