diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-19 17:59:25 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-19 17:59:25 +0100 |
commit | a1d14336d31c76e3a7f86a10d2ac66a51e32652e (patch) | |
tree | 6e95ec4af9edf6237c11c405cbfc020e60c6427b /libpostproc | |
parent | d85854b2691f9edeaf36ef32c2608c047636e8c0 (diff) | |
download | ffmpeg-a1d14336d31c76e3a7f86a10d2ac66a51e32652e.tar.gz |
pp: fix a few typo in the template.
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess_template.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libpostproc/postprocess_template.c b/libpostproc/postprocess_template.c index 0b775455e7..6f71a6327e 100644 --- a/libpostproc/postprocess_template.c +++ b/libpostproc/postprocess_template.c @@ -128,7 +128,7 @@ static inline int RENAME(vertClassify)(uint8_t src[], int stride, PPContext *c){ "movq %%mm0, %%mm4 \n\t" PMAXUB(%%mm1, %%mm4) PMINUB(%%mm1, %%mm3, %%mm5) - "psubb %%mm1, %%mm0 \n\t" // mm0 = differnece + "psubb %%mm1, %%mm0 \n\t" // mm0 = difference "paddb %%mm7, %%mm0 \n\t" "pcmpgtb %%mm6, %%mm0 \n\t" @@ -2558,7 +2558,7 @@ static av_always_inline void RENAME(do_a_deblock)(uint8_t *src, int step, int st "movq (%%"REG_a"), %%mm1 \n\t" "movq %%mm1, %%mm3 \n\t" "movq %%mm1, %%mm4 \n\t" - "psubb %%mm1, %%mm0 \n\t" // mm0 = differnece + "psubb %%mm1, %%mm0 \n\t" // mm0 = difference "paddb %%mm7, %%mm0 \n\t" "pcmpgtb %%mm6, %%mm0 \n\t" @@ -3077,7 +3077,7 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[ /** * Copy a block from src to dst and fixes the blacklevel. - * levelFix == 0 -> do not touch the brighness & contrast + * levelFix == 0 -> do not touch the brightness & contrast */ #undef REAL_SCALED_CPY #undef SCALED_CPY @@ -3350,7 +3350,7 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[ // From this point on it is guaranteed that we can read and write 16 lines downward // finish 1 block before the next otherwise we might have a problem - // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing + // with the L1 Cache of the P4 ... or only a few blocks at a time or something for(x=0; x<width; x+=BLOCK_SIZE){ #if TEMPLATE_PP_MMXEXT @@ -3459,7 +3459,7 @@ static void RENAME(postProcess)(const uint8_t src[], int srcStride, uint8_t dst[ // From this point on it is guaranteed that we can read and write 16 lines downward // finish 1 block before the next otherwise we might have a problem - // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing + // with the L1 Cache of the P4 ... or only a few blocks at a time or something for(x=0; x<width; x+=BLOCK_SIZE){ const int stride= dstStride; #if TEMPLATE_PP_MMX |