Browse Source

avutil/ppc/util_altivec: add () to VEC_LD macro arguments

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.5
Michael Niedermayer 10 years ago
parent
commit
ddac3053cd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/ppc/util_altivec.h

+ 1
- 1
libavutil/ppc/util_altivec.h View File

@@ -87,7 +87,7 @@ do { \

#if HAVE_BIGENDIAN
#define VEC_LD(offset,b) \
vec_perm(vec_ld(offset, b), vec_ld(offset+15, b), vec_lvsl(offset, b))
vec_perm(vec_ld(offset, b), vec_ld((offset)+15, b), vec_lvsl(offset, b))
#else
#define VEC_LD(offset,b) \
vec_vsx_ld(offset, b)


Loading…
Cancel
Save