00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00030 #ifndef AVCODEC_LZW_H
00031 #define AVCODEC_LZW_H
00032
00033 #include "bitstream.h"
00034
00035 enum FF_LZW_MODES{
00036 FF_LZW_GIF,
00037 FF_LZW_TIFF
00038 };
00039
00040
00041 typedef void LZWState;
00042
00043
00044 void ff_lzw_decode_open(LZWState **p);
00045 void ff_lzw_decode_close(LZWState **p);
00046 int ff_lzw_decode_init(LZWState *s, int csize, const uint8_t *buf, int buf_size, int mode);
00047 int ff_lzw_decode(LZWState *s, uint8_t *buf, int len);
00048 const uint8_t* ff_lzw_cur_ptr(LZWState *lzw);
00049 void ff_lzw_decode_tail(LZWState *lzw);
00050
00052 struct LZWEncodeState;
00053 extern const int ff_lzw_encode_state_size;
00054
00055 void ff_lzw_encode_init(struct LZWEncodeState * s, uint8_t * outbuf, int outsize, int maxbits);
00056 int ff_lzw_encode(struct LZWEncodeState * s, const uint8_t * inbuf, int insize);
00057 int ff_lzw_encode_flush(struct LZWEncodeState * s);
00058
00059 #endif