home *** CD-ROM | disk | FTP | other *** search
/ Dream 44 / Amiga_Dream_44.iso / Linux / Apps / xanim.tgz / xanim / xanim27064 / xa_color.h < prev    next >
Text File  |  1997-01-26  |  903b  |  41 lines

  1.  
  2. /*
  3.  * xa_color.h
  4.  *
  5.  * Copyright (C) 1995,1995,1996,1997 by Mark Podlipec.
  6.  * All rights reserved.
  7.  *
  8.  * This software may be freely copied, modified and redistributed without
  9.  * fee for non-commerical purposes provided that this copyright notice is
  10.  * preserved intact on all copies and modified copies.
  11.  *
  12.  * There is no warranty or other guarantee of fitness of this software.
  13.  * It is provided solely "as is". The author(s) disclaim(s) all
  14.  * responsibility and liability with respect to this software's usage
  15.  * or its effect upon hardware or computer systems.
  16.  *
  17.  */
  18.  
  19. typedef struct
  20. {
  21.   xaUBYTE *Ybuf;
  22.   xaUBYTE *Ubuf;
  23.   xaUBYTE *Vbuf;
  24.   xaUBYTE *the_buf;
  25.   xaULONG  the_buf_size;
  26.   xaUSHORT y_w,y_h;
  27.   xaUSHORT uv_w,uv_h;
  28. } YUVBufs;
  29.  
  30. typedef struct
  31. {
  32.   xaULONG Uskip_mask;
  33.   xaLONG *YUV_Y_tab;
  34.   xaLONG *YUV_UB_tab;
  35.   xaLONG *YUV_VR_tab;
  36.   xaLONG *YUV_UG_tab;
  37.   xaLONG *YUV_VG_tab;
  38. } YUVTabs;
  39.  
  40.  
  41.