| OLD | NEW |
| 1 ; | 1 ; |
| 2 ; jccolmmx.asm - colorspace conversion (MMX) | 2 ; jccolmmx.asm - colorspace conversion (MMX) |
| 3 ; | 3 ; |
| 4 ; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB | 4 ; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB |
| 5 ; Copyright 2009 D. R. Commander | 5 ; Copyright 2009 D. R. Commander |
| 6 ; | 6 ; |
| 7 ; Based on | 7 ; Based on |
| 8 ; x86 SIMD extension for IJG JPEG library | 8 ; x86 SIMD extension for IJG JPEG library |
| 9 ; Copyright (C) 1999-2006, MIYASAKA Masaru. | 9 ; Copyright (C) 1999-2006, MIYASAKA Masaru. |
| 10 ; For conditions of distribution and use, see copyright notice in jsimdext.inc | 10 ; For conditions of distribution and use, see copyright notice in jsimdext.inc |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 PW_F0299_F0337 times 2 dw F_0_299, F_0_337 | 44 PW_F0299_F0337 times 2 dw F_0_299, F_0_337 |
| 45 PW_F0114_F0250 times 2 dw F_0_114, F_0_250 | 45 PW_F0114_F0250 times 2 dw F_0_114, F_0_250 |
| 46 PW_MF016_MF033 times 2 dw -F_0_168,-F_0_331 | 46 PW_MF016_MF033 times 2 dw -F_0_168,-F_0_331 |
| 47 PW_MF008_MF041 times 2 dw -F_0_081,-F_0_418 | 47 PW_MF008_MF041 times 2 dw -F_0_081,-F_0_418 |
| 48 PD_ONEHALFM1_CJ times 2 dd (1 << (SCALEBITS-1)) - 1 + (CENTERJSAMPLE << SCALEBI
TS) | 48 PD_ONEHALFM1_CJ times 2 dd (1 << (SCALEBITS-1)) - 1 + (CENTERJSAMPLE << SCALEBI
TS) |
| 49 PD_ONEHALF times 2 dd (1 << (SCALEBITS-1)) | 49 PD_ONEHALF times 2 dd (1 << (SCALEBITS-1)) |
| 50 | 50 |
| 51 alignz 16 | 51 alignz 16 |
| 52 | 52 |
| 53 ; -------------------------------------------------------------------------- | 53 ; -------------------------------------------------------------------------- |
| 54 SECTION SEG_TEXT |
| 55 BITS 32 |
| 56 |
| 54 %include "jcclrmmx.asm" | 57 %include "jcclrmmx.asm" |
| 55 | 58 |
| 56 %undef RGB_RED | 59 %undef RGB_RED |
| 57 %undef RGB_GREEN | 60 %undef RGB_GREEN |
| 58 %undef RGB_BLUE | 61 %undef RGB_BLUE |
| 59 %undef RGB_PIXELSIZE | 62 %undef RGB_PIXELSIZE |
| 60 %define RGB_RED 0 | 63 %define RGB_RED 0 |
| 61 %define RGB_GREEN 1 | 64 %define RGB_GREEN 1 |
| 62 %define RGB_BLUE 2 | 65 %define RGB_BLUE 2 |
| 63 %define RGB_PIXELSIZE 3 | 66 %define RGB_PIXELSIZE 3 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 %undef RGB_RED | 114 %undef RGB_RED |
| 112 %undef RGB_GREEN | 115 %undef RGB_GREEN |
| 113 %undef RGB_BLUE | 116 %undef RGB_BLUE |
| 114 %undef RGB_PIXELSIZE | 117 %undef RGB_PIXELSIZE |
| 115 %define RGB_RED 1 | 118 %define RGB_RED 1 |
| 116 %define RGB_GREEN 2 | 119 %define RGB_GREEN 2 |
| 117 %define RGB_BLUE 3 | 120 %define RGB_BLUE 3 |
| 118 %define RGB_PIXELSIZE 4 | 121 %define RGB_PIXELSIZE 4 |
| 119 %define jsimd_rgb_ycc_convert_mmx jsimd_extxrgb_ycc_convert_mmx | 122 %define jsimd_rgb_ycc_convert_mmx jsimd_extxrgb_ycc_convert_mmx |
| 120 %include "jcclrmmx.asm" | 123 %include "jcclrmmx.asm" |
| OLD | NEW |