Lines Matching refs:LZWState
46 struct LZWState {
70 static int lzw_get_code(struct LZWState * s)
99 int ff_lzw_decode_tail(LZWState *p)
101 struct LZWState *s = (struct LZWState *)p;
113 av_cold void ff_lzw_decode_open(LZWState **p)
115 *p = av_mallocz(sizeof(struct LZWState));
118 av_cold void ff_lzw_decode_close(LZWState **p)
131 int ff_lzw_decode_init(LZWState *p, int csize, const uint8_t *buf, int buf_size, int mode)
133 struct LZWState *s = (struct LZWState *)p;
169 int ff_lzw_decode(LZWState *p, uint8_t *buf, int len){
172 struct LZWState *s = (struct LZWState *)p;