1 #ifndef BITIO_UWE_H
2 #define BITIO_UWE_H
3
4 #include <stdio.h>
5
6 #include "defs.h"
7
8 #define BUFSIZE 32768
9
10
11 #define GOB_EMPTY 0
12 #define GOB_PENDING 1
13 #define GOB_COMPLETE 2
14 #define GOB_LOADED 3
15
16
17 typedef struct BitstreamStruct {
18 int ValidBits;
19 unsigned long Cache;
20 unsigned char *ByteBuffer;
21 unsigned char *BufferPtr;
22 unsigned char *GOBend;
23 int EOB;
24 int BufState;
25 int BufferAllocated;
26 } Bitstream;
27
28
29
30 /* Include prototype file */
31 #include "bitIn.p"
32
33 #endif /* #ifndef BITIO_UWE_H */
34
35
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.