LZWState           44 libavcodec/gif.c     LZWState *lzw;
LZWState           67 libavcodec/gifdec.c     LZWState *lzw;
LZWState           70 libavcodec/lzw.c static int lzw_get_code(struct LZWState * s)
LZWState           96 libavcodec/lzw.c void ff_lzw_decode_tail(LZWState *p)
LZWState           98 libavcodec/lzw.c     struct LZWState *s = (struct LZWState *)p;
LZWState          109 libavcodec/lzw.c av_cold void ff_lzw_decode_open(LZWState **p)
LZWState          111 libavcodec/lzw.c     *p = av_mallocz(sizeof(struct LZWState));
LZWState          114 libavcodec/lzw.c av_cold void ff_lzw_decode_close(LZWState **p)
LZWState          127 libavcodec/lzw.c int ff_lzw_decode_init(LZWState *p, int csize, const uint8_t *buf, int buf_size, int mode)
LZWState          129 libavcodec/lzw.c     struct LZWState *s = (struct LZWState *)p;
LZWState          165 libavcodec/lzw.c int ff_lzw_decode(LZWState *p, uint8_t *buf, int len){
LZWState          168 libavcodec/lzw.c     struct LZWState *s = (struct LZWState *)p;
LZWState           46 libavcodec/lzw.h void ff_lzw_decode_open(LZWState **p);
LZWState           47 libavcodec/lzw.h void ff_lzw_decode_close(LZWState **p);
LZWState           48 libavcodec/lzw.h int ff_lzw_decode_init(LZWState *s, int csize, const uint8_t *buf, int buf_size, int mode);
LZWState           49 libavcodec/lzw.h int ff_lzw_decode(LZWState *s, uint8_t *buf, int len);
LZWState           50 libavcodec/lzw.h void ff_lzw_decode_tail(LZWState *lzw);
LZWState           71 libavcodec/tiff.c     LZWState *lzw;