changeset 5409:13d52b7647a0 libavcodec

Ahem, fix typos overlooked in last commit.
author diego
date Sat, 28 Jul 2007 12:50:28 +0000
parents 20bea6a9950c
children 1efd5aa20168
files bitstream.c ppc/snow_altivec.c snow.c
diffstat 3 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/bitstream.c	Sat Jul 28 12:46:26 2007 +0000
+++ b/bitstream.c	Sat Jul 28 12:50:28 2007 +0000
@@ -36,7 +36,7 @@
  * @param[in] ptr The block of memory to reallocate.
  * @param[in] size The requested size.
  * @return Block of memory of requested size.
- * @deprecated. Code which uses ff_realloc_static is broken/misdesigned.
+ * @deprecated. Code which uses ff_realloc_static is broken/misdesigned
  * and should correctly use static arrays
  */
 attribute_deprecated void *ff_realloc_static(void *ptr, unsigned int size);
--- a/ppc/snow_altivec.c	Sat Jul 28 12:46:26 2007 +0000
+++ b/ppc/snow_altivec.c	Sat Jul 28 12:50:28 2007 +0000
@@ -522,7 +522,7 @@
     vector signed int *v = (vector signed int *)vbuf, *d;
 
     for(y=0; y<b_h; y++){
-        //FIXME ugly misue of obmc_stride
+        //FIXME ugly misuse of obmc_stride
 
         uint8_t *obmc1= obmc + y*obmc_stride;
         uint8_t *obmc2= obmc1+ (obmc_stride>>1);
@@ -588,7 +588,7 @@
     vector signed int *v = (vector signed int *)vbuf, *d;
 
     for(y=0; y<b_h; y++){
-        //FIXME ugly misue of obmc_stride
+        //FIXME ugly misuse of obmc_stride
 
         uint8_t *obmc1= obmc + y*obmc_stride;
         uint8_t *obmc2= obmc1+ (obmc_stride>>1);
@@ -671,7 +671,7 @@
     vector signed int *v = (vector signed int *)vbuf, *d;
 
     for(y=0; y<b_h; y++){
-        //FIXME ugly misue of obmc_stride
+        //FIXME ugly misuse of obmc_stride
 
         uint8_t *obmc1= obmc + y*obmc_stride;
         uint8_t *obmc2= obmc1+ (obmc_stride>>1);
@@ -717,7 +717,7 @@
     vector signed int *v = (vector signed int *)vbuf, *d;
 
     for(y=0; y<b_h; y++){
-        //FIXME ugly misue of obmc_stride
+        //FIXME ugly misuse of obmc_stride
 
         uint8_t *obmc1= obmc + y*obmc_stride;
         uint8_t *obmc2= obmc1+ (obmc_stride>>1);
--- a/snow.c	Sat Jul 28 12:46:26 2007 +0000
+++ b/snow.c	Sat Jul 28 12:50:28 2007 +0000
@@ -2520,7 +2520,7 @@
     int y, x;
     DWTELEM * dst;
     for(y=0; y<b_h; y++){
-        //FIXME ugly misue of obmc_stride
+        //FIXME ugly misuse of obmc_stride
         const uint8_t *obmc1= obmc + y*obmc_stride;
         const uint8_t *obmc2= obmc1+ (obmc_stride>>1);
         const uint8_t *obmc3= obmc1+ obmc_stride*(obmc_stride>>1);
@@ -2680,7 +2680,7 @@
         STOP_TIMER("inner_add_yblock")
     }else
     for(y=0; y<b_h; y++){
-        //FIXME ugly misue of obmc_stride
+        //FIXME ugly misuse of obmc_stride
         const uint8_t *obmc1= obmc + y*obmc_stride;
         const uint8_t *obmc2= obmc1+ (obmc_stride>>1);
         const uint8_t *obmc3= obmc1+ obmc_stride*(obmc_stride>>1);