| # | Line 41 | Line 41 | static BYTE chroma[3][NINC] = { | |
|---|---|---|
| 41 | ||
| 42 | #ifdef NTSC | |
| 43 | static float xyz2rgbmat[3][3] = { /* XYZ to RGB (NTSC) */ | |
| 44 | < | 1.73, -.48, -.26, |
| 45 | < | -.81, 1.65, -.02, |
| 46 | < | .08, -.17, 1.28, |
| 44 | > | {1.73, -.48, -.26}, |
| 45 | > | {-.81, 1.65, -.02}, |
| 46 | > | {.08, -.17, 1.28} |
| 47 | }; | |
| 48 | #else | |
| 49 | static float xyz2rgbmat[3][3] = { /* XYZ to RGB (color monitor) */ | |
| 50 | < | 2.739, -1.145, -.424, |
| 51 | < | -1.119, 2.029, .033, |
| 52 | < | .138, -.333, 1.105, |
| 50 | > | {2.739, -1.145, -.424}, |
| 51 | > | {-1.119, 2.029, .033}, |
| 52 | > | {.138, -.333, 1.105} |
| 53 | }; | |
| 54 | #endif | |
| 55 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |