[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/ppc dsputil_h264_template_altivec.c, 1.4, 1.5
Aurelien Jacobs CVS
aurel
Tue Feb 28 22:55:20 CET 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec/ppc
In directory mail:/var2/tmp/cvs-serv19158/libavcodec/ppc
Modified Files:
dsputil_h264_template_altivec.c
Log Message:
use vec_splat_u32 to initialise a v16ui (patch by Likai Liu < liulk _at_ cs.bu.edu >)
Index: dsputil_h264_template_altivec.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/ppc/dsputil_h264_template_altivec.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dsputil_h264_template_altivec.c 21 Feb 2006 22:24:19 -0000 1.4
+++ dsputil_h264_template_altivec.c 28 Feb 2006 21:55:18 -0000 1.5
@@ -426,7 +426,7 @@
const vector signed short v5ss = vec_splat_s16(5);
const vector signed short v1ss = vec_splat_s16(1);
const vector signed int v512si = vec_sl(vec_splat_s32(1),vec_splat_u32(9));
- const vector unsigned int v16ui = vec_sl(vec_splat_u16(1),vec_splat_u16(4));
+ const vector unsigned int v16ui = vec_sl(vec_splat_u32(1),vec_splat_u32(4));
register int align = ((((unsigned long)src) - 2) % 16);
More information about the ffmpeg-cvslog
mailing list