[FFmpeg-cvslog] r11123 - in trunk/libavcodec: ppc/dsputil_altivec.c vc1.c

vitor subversion
Sat Dec 1 23:35:38 CET 2007


Author: vitor
Date: Sat Dec  1 23:35:38 2007
New Revision: 11123

Log:
Fix alignment broke by my last patch

Modified:
   trunk/libavcodec/ppc/dsputil_altivec.c
   trunk/libavcodec/vc1.c

Modified: trunk/libavcodec/ppc/dsputil_altivec.c
==============================================================================
--- trunk/libavcodec/ppc/dsputil_altivec.c	(original)
+++ trunk/libavcodec/ppc/dsputil_altivec.c	Sat Dec  1 23:35:38 2007
@@ -1094,7 +1094,7 @@ POWERPC_PERF_START_COUNT(altivec_hadamar
       dstV =                                                            \
         (vector signed short)vec_mergeh((vector signed char)vzero,      \
         (vector signed char)dstO);                                      \
-      /* subtractions inside the first butterfly */                    \
+      /* subtractions inside the first butterfly */                     \
       but0 = vec_sub(srcV, dstV);                                       \
       op1 = vec_perm(but0, but0, perm1);                                \
       but1 = vec_mladd(but0, vprod1, op1);                              \
@@ -1267,7 +1267,7 @@ static int hadamard8_diff16x8_altivec(/*
       dstW =                                                            \
         (vector signed short)vec_mergel((vector signed char)vzero,      \
         (vector signed char)dstO);                                      \
-      /* subtractions inside the first butterfly */                    \
+      /* subtractions inside the first butterfly */                     \
       but0 = vec_sub(srcV, dstV);                                       \
       but0S = vec_sub(srcW, dstW);                                      \
       op1 = vec_perm(but0, but0, perm1);                                \

Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c	(original)
+++ trunk/libavcodec/vc1.c	Sat Dec  1 23:35:38 2007
@@ -4102,7 +4102,7 @@ assert(s->current_picture.pict_type == s
     }
 
     /* Return the Picture timestamp as the frame number */
-    /* we subtract 1 because it is added on utils.c    */
+    /* we subtract 1 because it is added on utils.c     */
     avctx->frame_number = s->picture_number - 1;
 
     av_free(buf2);




More information about the ffmpeg-cvslog mailing list