diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-15 10:23:04 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-21 20:53:06 +0100 |
commit | 1f3e56b6dcc163a705704e98569d4850a31d651c (patch) | |
tree | 681f2df493d90b5cd4a4b577b7c2758e02ede068 /libavcodec/lzw.h | |
parent | c453723ad7d14abc5e82677eebaa6025fa598f08 (diff) | |
download | ffmpeg-1f3e56b6dcc163a705704e98569d4850a31d651c.tar.gz |
gifdec: convert to bytestream2
Diffstat (limited to 'libavcodec/lzw.h')
-rw-r--r-- | libavcodec/lzw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lzw.h b/libavcodec/lzw.h index ab782f5219..d925d35e27 100644 --- a/libavcodec/lzw.h +++ b/libavcodec/lzw.h @@ -47,7 +47,7 @@ void ff_lzw_decode_open(LZWState **p); void ff_lzw_decode_close(LZWState **p); int ff_lzw_decode_init(LZWState *s, int csize, const uint8_t *buf, int buf_size, int mode); int ff_lzw_decode(LZWState *s, uint8_t *buf, int len); -const uint8_t* ff_lzw_cur_ptr(LZWState *lzw); +int ff_lzw_size_read(LZWState *lzw); void ff_lzw_decode_tail(LZWState *lzw); /** LZW encode state */ |