diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-05-02 18:45:04 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-05-02 18:45:04 +0000 |
commit | a487e0f6544729b6c26115b15e2d7d45df0a99c8 (patch) | |
tree | b099b0eff21ab7eb8cd0c8e5100bb55cc2f2a137 | |
parent | 7923a3f904b419857f0d0b468910acddf5352cad (diff) | |
download | ffmpeg-a487e0f6544729b6c26115b15e2d7d45df0a99c8.tar.gz |
Macosx fix
Originally committed as revision 5342 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/dsputil_snow_altivec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ppc/dsputil_snow_altivec.c b/libavcodec/ppc/dsputil_snow_altivec.c index 06157e0cf2..8c39cda273 100644 --- a/libavcodec/ppc/dsputil_snow_altivec.c +++ b/libavcodec/ppc/dsputil_snow_altivec.c @@ -626,11 +626,11 @@ static void inner_add_yblock_bw_16_obmc_32_altivec(uint8_t *obmc, vec_splat_u32(7))),\ vec_splat_u32(8));\ \ - mask = vec_sl((vector signed int)\ + mask = (vector bool int) vec_sl((vector signed int)\ vec_cmpeq(v[x],v[x]),vec_splat_u32(8));\ - mask = vec_and(v[x],vec_nor(mask,mask));\ + mask = (vector bool int) vec_and(v[x],vec_nor(mask,mask));\ \ - mask = (vector signed int)\ + mask = (vector bool int)\ vec_cmpeq((vector signed int)mask,\ (vector signed int)vec_splat_u32(0));\ \ |