home *** CD-ROM | disk | FTP | other *** search
/ NeXTIME / NEXTIME.iso / NextLibrary / NEXTIME / Components / NTMicroWavelet.bundle / NT.component < prev    next >
Encoding:
Text File  |  1994-05-04  |  1.1 KB  |  56 lines

  1. NTComponentTypeName = (NTDecompressor, NTCompressor, NTConverter);
  2. NTComponentSubtypeName = NTMicroWavelet;
  3. NTVendor = "NeXT Computer, Inc.";
  4. NTMediaType = NTVideo;
  5.  
  6.  
  7. NTDecompressor = {
  8.     NTConfiguration = {
  9.     NTSampleInput = {
  10.         NTFormatType = NTCompressed;
  11.         NTFormatSubtype = NTMicroWavelet;
  12.     };
  13.     NTSampleOutput = {
  14.         NTFormatType = NTRaw;
  15.         NTFormatSubtype = NTRaw;
  16.     };
  17.     };
  18.     NTComponentPrincipalClass = NTMicroWaveletDecoder;
  19. };
  20.  
  21. NTCompressor = {
  22.     NTConfiguration = {
  23.     NTSampleInput = {
  24.         NTFormatType = NTRaw;
  25.         NTFormatSubtype = NTRaw;
  26.     };
  27.     NTSampleOutput = {
  28.         NTFormatType = NTCompressed;
  29.         NTFormatSubtype = NTMicroWavelet;
  30.     };
  31.     };
  32.     NTComponentPrincipalClass = NTMicroWaveletEncoder;
  33. };
  34.  
  35.  
  36. /* 
  37.  * We need another entry here since the encoder can also "transcode"
  38.  * directly from YUV422 
  39.  */
  40.  
  41. NTConverter = {
  42.     NTConfiguration = {
  43.     NTSampleInput = {
  44.         NTFormatType = NTRaw;
  45.         NTFormatSubtype = NTYUV422;
  46.     };
  47.     NTSampleOutput = {
  48.         NTFormatType = NTCompressed;
  49.         NTFormatSubtype = NTMicroWavelet;
  50.     };
  51.     };
  52.     NTComponentPrincipalClass = NTMicroWaveletEncoderYUV;
  53. };
  54.  
  55.  
  56.