home *** CD-ROM | disk | FTP | other *** search
- Here's a little patch that fixes mpeg.2.0 so that it will work on
- White hardware as well. Note: you need a fairly fast CPU, fast disk,
- and lots of RAM.
-
- I'll put the usual bitch here about NeXT not supporting synchronous
- transfer mode on SCSI-II...
-
- -Philip
-
- *** 12bit.c.old Thu Feb 25 11:40:19 1993
- --- 12bit.c Wed Mar 30 17:05:32 1994
- ***************
- *** 114,123 ****
- --- 114,130 ----
- R = L + cb_r;
- G = L + cr_g + cb_g;
- B = L + cr_b;
- + #ifdef m68k
- b = (CLAMP(0,B,UP(255)) & 0xf000) >> 8;
- g = (CLAMP(0,G,UP(255)) & 0xf000) >> 4;
- r = (CLAMP(0,R,UP(255)) & 0xf000);
- YUV_to_RGB[ll << 10 | rr << 5 | bb] = r | g | b | 0x000f;
- + #else
- + b = (CLAMP(0,B,UP(255)) & 0xf000);
- + g = (CLAMP(0,G,UP(255)) & 0xf000) >> 12;
- + r = (CLAMP(0,R,UP(255)) & 0xf000) >> 8;
- + YUV_to_RGB[ll << 10 | rr << 5 | bb] = r | g | b | 0x0f00;
- + #endif
- }
- }
- }
-