blob: ac20a43cb9ebd49556ff7fec0d8f5ff44113bbc5 [file] [log] [blame]
The Android Open Source Projectc2eacae2009-03-03 19:29:32 -08001/******************************************************************************
Chris Craik9aef3ea2013-06-24 19:34:25 -07002
3gif_hash.h - magfic constants and declarations for GIF LZW
4
The Android Open Source Projectc2eacae2009-03-03 19:29:32 -08005******************************************************************************/
6
7#ifndef _GIF_HASH_H_
8#define _GIF_HASH_H_
9
The Android Open Source Projectc2eacae2009-03-03 19:29:32 -080010#include <unistd.h>
Chris Craik9aef3ea2013-06-24 19:34:25 -070011#include <stdint.h>
The Android Open Source Projectc2eacae2009-03-03 19:29:32 -080012
13#define HT_SIZE 8192 /* 12bits = 4096 or twice as big! */
14#define HT_KEY_MASK 0x1FFF /* 13bits keys */
15#define HT_KEY_NUM_BITS 13 /* 13bits keys */
16#define HT_MAX_KEY 8191 /* 13bits - 1, maximal code possible */
17#define HT_MAX_CODE 4095 /* Biggest code possible in 12 bits. */
18
19/* The 32 bits of the long are divided into two parts for the key & code: */
20/* 1. The code is 12 bits as our compression algorithm is limited to 12bits */
21/* 2. The key is 12 bits Prefix code + 8 bit new char or 20 bits. */
22/* The key is the upper 20 bits. The code is the lower 12. */
23#define HT_GET_KEY(l) (l >> 12)
24#define HT_GET_CODE(l) (l & 0x0FFF)
25#define HT_PUT_KEY(l) (l << 12)
26#define HT_PUT_CODE(l) (l & 0x0FFF)
27
28typedef struct GifHashTableType {
Chris Craik9aef3ea2013-06-24 19:34:25 -070029 uint32_t HTable[HT_SIZE];
The Android Open Source Projectc2eacae2009-03-03 19:29:32 -080030} GifHashTableType;
31
32GifHashTableType *_InitHashTable(void);
33void _ClearHashTable(GifHashTableType *HashTable);
Chris Craik9aef3ea2013-06-24 19:34:25 -070034void _InsertHashTable(GifHashTableType *HashTable, uint32_t Key, int Code);
35int _ExistsHashTable(GifHashTableType *HashTable, uint32_t Key);
The Android Open Source Projectc2eacae2009-03-03 19:29:32 -080036
37#endif /* _GIF_HASH_H_ */
Chris Craik9aef3ea2013-06-24 19:34:25 -070038
39/* end */