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

  1.  
  2. #import <NEXTIME/NTSampleProcessor.h>
  3.                     
  4.  
  5. @interface NullDecoder: NTSampleProcessor
  6. {
  7.     int sWidth, sHeight;    /* source width and height */
  8.     int dWidth, dHeight;    /* dest width and height */
  9.     NSMutableDictionary * sampleDescription;
  10.     NSMutableData *frameBuffer;
  11. }
  12.  
  13. @end
  14.  
  15.