summaryrefslogtreecommitdiff
path: root/libavcodec/i386
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-06-12 18:50:50 +0000
committerDiego Biurrun <diego@biurrun.de>2007-06-12 18:50:50 +0000
commit90b5b51eab008ddb24701bb95aa4c017e62bb111 (patch)
tree47bc9eb153584ccf309c27277fb56c2d1468230f /libavcodec/i386
parentc294d7c6bafb5115dbaffd12aec4530ffed3a0b4 (diff)
misc typo fixes
Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386')
-rw-r--r--libavcodec/i386/idct_mmx.c4
-rw-r--r--libavcodec/i386/mpegvideo_mmx_template.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/i386/idct_mmx.c b/libavcodec/i386/idct_mmx.c
index b3a5267f42..1a692f57bd 100644
--- a/libavcodec/i386/idct_mmx.c
+++ b/libavcodec/i386/idct_mmx.c
@@ -33,7 +33,7 @@
#define rounder(bias) {round (bias), round (bias)}
#if 0
-/* C row IDCT - its just here to document the MMXEXT and MMX versions */
+/* C row IDCT - it is just here to document the MMXEXT and MMX versions */
static inline void idct_row (int16_t * row, int offset,
int16_t * table, int32_t * rounder)
{
@@ -313,7 +313,7 @@ static inline void mmx_row_mid (int16_t * row, int store,
#if 0
-// C column IDCT - its just here to document the MMXEXT and MMX versions
+// C column IDCT - it is just here to document the MMXEXT and MMX versions
static inline void idct_col (int16_t * col, int offset)
{
/* multiplication - as implemented on mmx */
diff --git a/libavcodec/i386/mpegvideo_mmx_template.c b/libavcodec/i386/mpegvideo_mmx_template.c
index b8f1ee39dc..9c9c763b21 100644
--- a/libavcodec/i386/mpegvideo_mmx_template.c
+++ b/libavcodec/i386/mpegvideo_mmx_template.c
@@ -96,7 +96,7 @@ static int RENAME(dct_quantize)(MpegEncContext *s,
int qscale, int *overflow)
{
long last_non_zero_p1;
- int level=0, q; //=0 is cuz gcc says uninitalized ...
+ int level=0, q; //=0 is cuz gcc says uninitialized ...
const uint16_t *qmat, *bias;
DECLARE_ALIGNED_16(int16_t, temp_block[64]);