From 3fd60d804996031ceaba9cad0b38652b92551eb0 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 5 Dec 2012 16:06:54 +0000 Subject: gifdec: port to bytestream2 API While here remove ff_lzw_cur_ptr() as it become obsolete. Signed-off-by: Paul B Mahol --- libavcodec/lzw.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libavcodec/lzw.c') diff --git a/libavcodec/lzw.c b/libavcodec/lzw.c index 97f6e6ac82..43e3e055c2 100644 --- a/libavcodec/lzw.c +++ b/libavcodec/lzw.c @@ -92,11 +92,6 @@ static int lzw_get_code(struct LZWState * s) return c & s->curmask; } -const uint8_t* ff_lzw_cur_ptr(LZWState *p) -{ - return ((struct LZWState*)p)->pbuf; -} - void ff_lzw_decode_tail(LZWState *p) { struct LZWState *s = (struct LZWState *)p; -- cgit v1.2.3