home *** CD-ROM | disk | FTP | other *** search
/ NeXTIME / NEXTIME.iso / NextLibrary / NEXTIME / Components / NTJPEG.bundle / NT.component next >
Encoding:
Text File  |  1994-05-28  |  765 b   |  35 lines

  1. NTComponentTypeName = (NTDecompressor, NTCompressor);
  2. NTComponentSubtypeName = NT_JPEG1;
  3. NTVendor = "NeXT Computer, Inc.";
  4. NTMediaType = NTVideo;
  5.  
  6. // This software is based in part on the work of the Independent JPEG Group
  7.  
  8. NTDecompressor = {
  9.     NTConfiguration = {
  10.     NTSampleInput = {
  11.         NTFormatType = NTCompressed;
  12.         NTFormatSubtype = NT_JPEG1;
  13.     };
  14.     NTSampleOutput = {
  15.         NTFormatType = NTRaw;
  16.         NTFormatSubtype = NTRaw;
  17.     };
  18.     };
  19.     NTComponentPrincipalClass = NTJPEGDecoder;
  20. };
  21.  
  22. NTCompressor = {
  23.     NTConfiguration = {
  24.     NTSampleInput = {
  25.         NTFormatType = NTRaw;
  26.         NTFormatSubtype = NTRaw;
  27.     };
  28.     NTSampleOutput = {
  29.         NTFormatType = NTCompressed;
  30.         NTFormatSubtype = NT_JPEG1;
  31.     };
  32.     };
  33.     NTComponentPrincipalClass = NTJPEGEncoder;
  34. };
  35.