Searched refs:LZWState (Results 1 - 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | lzw.c | 46 struct LZWState { struct 70 static int lzw_get_code(struct LZWState * s) in lzw_get_code() 99 int ff_lzw_decode_tail(LZWState *p) in ff_lzw_decode_tail() 101 struct LZWState *s = (struct LZWState *)p; in ff_lzw_decode_tail() 113 av_cold void ff_lzw_decode_open(LZWState **p) in ff_lzw_decode_open() 115 *p = av_mallocz(sizeof(struct LZWState)); in ff_lzw_decode_open() 118 av_cold void ff_lzw_decode_close(LZWState **p) in ff_lzw_decode_close() 131 int ff_lzw_decode_init(LZWState *p, int csize, const uint8_t *buf, int buf_size, int mode) in ff_lzw_decode_init() 133 struct LZWState * in ff_lzw_decode_init() [all...] |
H A D | lzw.h | 42 /* clients should not know what LZWState is */ 43 typedef void LZWState; typedef 45 /* first two functions de/allocate memory for LZWState */ 46 void ff_lzw_decode_open(LZWState **p); 47 void ff_lzw_decode_close(LZWState **p); 48 int ff_lzw_decode_init(LZWState *s, int csize, const uint8_t *buf, int buf_size, int mode); 49 int ff_lzw_decode(LZWState *s, uint8_t *buf, int len); 50 int ff_lzw_decode_tail(LZWState *lzw);
|
H A D | gifdec.c | 68 LZWState *lzw;
|
H A D | gif.c | 49 LZWState *lzw;
|
H A D | tiff.c | 99 LZWState *lzw;
|
Completed in 6 milliseconds