1 
2 /*
3  * xa_raw.h
4  *
5  * Copyright (C) 1998,1999 by Mark Podlipec.
6  * All rights reserved.
7  *
8  * This software may be freely used, copied and redistributed without
9  * fee for non-commerical purposes provided that this copyright
10  * notice is preserved intact on all copies.
11  *
12  * There is no warranty or other guarantee of fitness of this software.
13  * It is provided solely "as is". The author disclaims 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 /* The following copyright applies to all Ultimotion Segments of the Code:
20  *
21  * "Copyright International Business Machines Corporation 1994, All rights
22  *  reserved. This product uses Ultimotion(tm) IBM video technology."
23  *
24  */
25 
26 
27 #include "xanim.h"
28 
29 #define RAW_QCIF 0x51434946
30 #define RAW_CIF  0x43494620
31 
32 typedef struct RAW_FRAME_STRUCT
33 {
34   xaULONG time;
35   xaULONG timelo;
36   XA_ACTION *act;
37   struct RAW_FRAME_STRUCT *next;
38 } RAW_FRAME;
39 
40