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 / yuv9.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  371b  |  21 lines

  1. #ifndef QUICKTIME_YUV9_H
  2. #define QUICKTIME_YUV9_H
  3.  
  4. #include "yuv.h"
  5.  
  6. typedef struct
  7. {
  8.     quicktime_yuv_t *yuv;
  9.     unsigned char *work_buffer;
  10.  
  11. /* The YUV9 codec requires a bytes per line that is a multiple of 16 */
  12.     int bytes_per_line;
  13. /* Actual rows encoded in the yuv4 format */
  14.     int rows;
  15. } quicktime_yuv4_codec_t;
  16.  
  17.  
  18. /* Now storing data as rows of UVYYYYUVYYYY */
  19.  
  20. #endif
  21.