[FFmpeg-cvslog] r9816 - in trunk/libavcodec: bitstream.c ppc/snow_altivec.c snow.c
diego
subversion
Sat Jul 28 14:50:28 CEST 2007
Author: diego
Date: Sat Jul 28 14:50:28 2007
New Revision: 9816
Log:
Ahem, fix typos overlooked in last commit.
Modified:
trunk/libavcodec/bitstream.c
trunk/libavcodec/ppc/snow_altivec.c
trunk/libavcodec/snow.c
Modified: trunk/libavcodec/bitstream.c
==============================================================================
--- trunk/libavcodec/bitstream.c (original)
+++ trunk/libavcodec/bitstream.c Sat Jul 28 14:50:28 2007
@@ -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);
Modified: trunk/libavcodec/ppc/snow_altivec.c
==============================================================================
--- trunk/libavcodec/ppc/snow_altivec.c (original)
+++ trunk/libavcodec/ppc/snow_altivec.c Sat Jul 28 14:50:28 2007
@@ -522,7 +522,7 @@ static void inner_add_yblock_bw_8_obmc_1
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_
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
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_obm
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);
Modified: trunk/libavcodec/snow.c
==============================================================================
--- trunk/libavcodec/snow.c (original)
+++ trunk/libavcodec/snow.c Sat Jul 28 14:50:28 2007
@@ -2520,7 +2520,7 @@ void ff_snow_inner_add_yblock(const uint
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);
More information about the ffmpeg-cvslog
mailing list