diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-07-28 12:50:28 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-07-28 12:50:28 +0000 |
commit | 1903245071a1b90f08a441517da83cd0dcf676ed (patch) | |
tree | 1bb61cf8d29da53f24de3c30784ecacc110f8ef4 | |
parent | df3a80b50a452f54878f5011207a864d703a943d (diff) | |
download | ffmpeg-1903245071a1b90f08a441517da83cd0dcf676ed.tar.gz |
Ahem, fix typos overlooked in last commit.
Originally committed as revision 9816 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/bitstream.c | 2 | ||||
-rw-r--r-- | libavcodec/ppc/snow_altivec.c | 8 | ||||
-rw-r--r-- | libavcodec/snow.c | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/bitstream.c b/libavcodec/bitstream.c index a5b87a1754..5c50120460 100644 --- a/libavcodec/bitstream.c +++ b/libavcodec/bitstream.c @@ -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); diff --git a/libavcodec/ppc/snow_altivec.c b/libavcodec/ppc/snow_altivec.c index cd438d7b3a..a9d1e116b2 100644 --- a/libavcodec/ppc/snow_altivec.c +++ b/libavcodec/ppc/snow_altivec.c @@ -522,7 +522,7 @@ static void inner_add_yblock_bw_8_obmc_16_altivec(uint8_t *obmc, 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 @@ static void inner_add_yblock_bw_16_obmc_32_altivec(uint8_t *obmc, 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 @@ static void inner_add_yblock_a_bw_8_obmc_16_altivec(uint8_t *obmc, 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 @@ static void inner_add_yblock_a_bw_16_obmc_32_altivec(uint8_t *obmc, 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); diff --git a/libavcodec/snow.c b/libavcodec/snow.c index 35bfc8356e..53680d1486 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -2520,7 +2520,7 @@ void ff_snow_inner_add_yblock(const uint8_t *obmc, const int obmc_stride, uint8_ 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 @@ assert(src_stride > 2*MB_SIZE + 5); 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); |