Searched refs:LZWState (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlzw.h40 /* clients should not know what LZWState is */
41 typedef void LZWState; typedef
43 /* first two functions de/allocate memory for LZWState */
44 void ff_lzw_decode_open(LZWState **p);
45 void ff_lzw_decode_close(LZWState **p);
46 int ff_lzw_decode_init(LZWState *s, int csize, const uint8_t *buf, int buf_size, int mode);
47 int ff_lzw_decode(LZWState *s, uint8_t *buf, int len);
48 const uint8_t* ff_lzw_cur_ptr(LZWState *lzw);
49 void ff_lzw_decode_tail(LZWState *lzw);
H A Dlzw.c44 struct LZWState { struct
68 static int lzw_get_code(struct LZWState * s)
94 const uint8_t* ff_lzw_cur_ptr(LZWState *p)
96 return ((struct LZWState*)p)->pbuf;
99 void ff_lzw_decode_tail(LZWState *p)
101 struct LZWState *s = (struct LZWState *)p;
112 av_cold void ff_lzw_decode_open(LZWState **p)
114 *p = av_mallocz(sizeof(struct LZWState));
117 av_cold void ff_lzw_decode_close(LZWState **
[all...]
H A Dgifdec.c52 LZWState *lzw;
H A Dtiff.c53 LZWState *lzw;

Completed in 89 milliseconds