home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / NEXTIME / NullVideoCodec / NT.component < prev    next >
Text File  |  1995-02-03  |  731b  |  37 lines

  1. {
  2.     NTComponentTypeName = (NTDecompressor, NTCompressor);
  3.     NTComponentSubtypeName = NullVideo;
  4.     NTVendor = "NeXT Computer, Inc.";
  5.     NTMediaType = NTVideo;
  6.     
  7.     
  8.     NTDecompressor = {
  9.     NTConfiguration = {
  10.         NTSampleInput = {
  11.         NTFormatType = NTCompressed;
  12.         NTFormatSubtype = NullVideo;
  13.         };
  14.         NTSampleOutput = {
  15.         NTFormatType = NTRaw;
  16.         NTFormatSubtype = NTRaw;
  17.         };
  18.     };
  19.     NTComponentPrincipalClass = NullDecoder;
  20.     };
  21.     
  22.     NTCompressor = {
  23.     NTConfiguration = {
  24.         NTSampleInput = {
  25.         NTFormatType = NTRaw;
  26.         NTFormatSubtype = NTRaw;
  27.         };
  28.         NTSampleOutput = {
  29.         NTFormatType = NTCompressed;
  30.         NTFormatSubtype = NullVideo;
  31.         };
  32.     };
  33.     NTComponentPrincipalClass = NullEncoder;
  34.     };
  35. }
  36.     
  37.