home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Graphics / movie / mpeg.2.0.patch < prev    next >
Encoding:
Text File  |  1994-03-31  |  966 b   |  32 lines

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