home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.0 (User) / OS_user_4.0.iso / NextLibrary / Frameworks / NEXTIME.framework / Components / NTPioneerLD.bundle / Resources / NT.component < prev   
Encoding:
Text File  |  1994-12-20  |  1.4 KB  |  55 lines

  1. {
  2.     NTComponentTypeName = NTVideoSrcPeripheral;
  3.     NTVendor = "NeXT Computer, Inc.";
  4.     
  5.     NTVideoSrcPeripheral = 
  6.     {
  7.         NTComponentSubtypeName = NTPioneerLD;
  8.         NTComponentPrincipalClass = NTPioneerLD;
  9.         NTDebugFile = "/tmp/NTPioneerLD";
  10.         /* Basic properties of driver */
  11.         MediaType = (CAV, CLV, CD);
  12.         DoesSeekToFrame = YES;
  13.         DoesSeekToTime = YES;
  14.         DoesStepByFrame = YES;
  15.         
  16.         /* Serial Comm setup */
  17.         SIOBaud = 4800;
  18.         SIOParity = 0;    /* No parity */
  19.         
  20.         /* Goodies specific to this implementation */
  21.         CommandSuffix = "\r";
  22.         ReplySuffix = "\r";
  23.         CommandCompleteReply = "R";
  24.         CommandErrorReply = "EXX";
  25.         
  26.         /* generic commands */
  27.         DoorOpen = "OP";
  28.         DoorClose = "CO";
  29.         StopDisk = "RJ";
  30.         StartDisk = "SA";
  31.         Play = "PL";
  32.         Pause = "PA";
  33.         ReportFrame = "?F";
  34.         
  35.         /* Latency info for getting sound synced up, in seconds */
  36.         PlayFromStillLatency = 0.0;
  37.         /* Preroll needed for getting sound synced up, in seconds */
  38.         PlayFromStillPreroll = 0.3;
  39.         
  40.         /* How many frames are there in a second for this medium? */
  41.         PlayFrameRate = 24;
  42.     
  43.         /* CAV disks */
  44.         SeekToFrame = "FR%05dSE";
  45.         StepForward = "SF";
  46.         StepReverse = "SR";
  47.         StillFrame = "ST";
  48.         
  49.         /* CLV disks */
  50.         SeekToTime = "TM%d%02d%02dSE";    /* HMMSS time format */
  51.         
  52.         PlayerActiveModeRequest = "?P";
  53.     };
  54. }
  55.