home *** CD-ROM | disk | FTP | other *** search
/ Geek 6 / Geek-006.iso / linux / video / xmovie-1.5.3.tar.gz / xmovie-1.5.3.tar / xmovie-1.5.3 / quicktime / raw.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  306b  |  15 lines

  1. #ifndef QUICKTIME_RAW_H
  2. #define QUICKTIME_RAW_H
  3.  
  4. #include "graphics.h"
  5.  
  6. typedef struct
  7. {
  8.     unsigned char *temp_frame;  /* For changing color models and scaling */
  9.     unsigned char **temp_rows;  /* For changing color models and scaling */
  10.  
  11.     quicktime_scaletable_t *scaletable;
  12. } quicktime_raw_codec_t;
  13.  
  14. #endif
  15.