summaryrefslogtreecommitdiff
path: root/libavcodec/lzw.h
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-12-05 16:06:54 +0000
committerPaul B Mahol <onemda@gmail.com>2012-12-08 01:13:07 +0000
commit3fd60d804996031ceaba9cad0b38652b92551eb0 (patch)
tree00c87a8b359a760044c38fac4bd12df122581183 /libavcodec/lzw.h
parente0a553d526d59dad63f0be29269df8b00189a16f (diff)
downloadffmpeg-3fd60d804996031ceaba9cad0b38652b92551eb0.tar.gz
gifdec: port to bytestream2 API
While here remove ff_lzw_cur_ptr() as it become obsolete. Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/lzw.h')
-rw-r--r--libavcodec/lzw.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/lzw.h b/libavcodec/lzw.h
index 115ca4edb4..4653c1c74f 100644
--- a/libavcodec/lzw.h
+++ b/libavcodec/lzw.h
@@ -47,7 +47,6 @@ 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);
void ff_lzw_decode_tail(LZWState *lzw);
/** LZW encode state */