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 / yv12.h < prev   
C/C++ Source or Header  |  2000-11-29  |  228b  |  15 lines

  1. #ifndef QUICKTIME_YUV2_H
  2. #define QUICKTIME_YUV2_H
  3.  
  4. #include "colormodels.h"
  5. #include "quicktime.h"
  6.  
  7. typedef struct
  8. {
  9.     cmodel_yuv_t yuv_table;
  10.     int coded_w, coded_h;
  11.     unsigned char *work_buffer;
  12. } quicktime_yv12_codec_t;
  13.  
  14. #endif
  15.