changeset 5966:1275461ae6f8 libavcodec

Fix some spelling mistakes.
author diego
date Sun, 02 Dec 2007 14:06:28 +0000
parents febfff2ccb8d
children 15ed47af1838
files apedec.c mpegvideo.h
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/apedec.c	Sun Dec 02 06:24:34 2007 +0000
+++ b/apedec.c	Sun Dec 02 14:06:28 2007 +0000
@@ -514,7 +514,7 @@
     memset(p->historybuffer, 0, PREDICTOR_SIZE * sizeof(int32_t));
     p->buf = p->historybuffer;
 
-    /* Initialize and zero the co-efficients */
+    /* Initialize and zero the coefficients */
     memcpy(p->coeffsA[0], initial_coeffs, sizeof(initial_coeffs));
     memcpy(p->coeffsA[1], initial_coeffs, sizeof(initial_coeffs));
     memset(p->coeffsB, 0, sizeof(p->coeffsB));
--- a/mpegvideo.h	Sun Dec 02 06:24:34 2007 +0000
+++ b/mpegvideo.h	Sun Dec 02 14:06:28 2007 +0000
@@ -94,7 +94,7 @@
     uint8_t permutated[64];
     uint8_t raster_end[64];
 #ifdef ARCH_POWERPC
-                /** Used by dct_quantize_alitvec to find last-non-zero */
+                /** Used by dct_quantize_altivec to find last-non-zero */
     DECLARE_ALIGNED_8(uint8_t, inverse[64]);
 #endif
 } ScanTable;
@@ -111,7 +111,7 @@
     uint8_t *interpolated[3];
     int16_t (*motion_val_base[2])[2];
     uint32_t *mb_type_base;
-#define MB_TYPE_INTRA MB_TYPE_INTRA4x4 //default mb_type if theres just one type
+#define MB_TYPE_INTRA MB_TYPE_INTRA4x4 //default mb_type if there is just one type
 #define IS_INTRA4x4(a)   ((a)&MB_TYPE_INTRA4x4)
 #define IS_INTRA16x16(a) ((a)&MB_TYPE_INTRA16x16)
 #define IS_PCM(a)        ((a)&MB_TYPE_INTRA_PCM)