Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-12-05 20:06:54 +0400
committerPaul B Mahol <onemda@gmail.com>2012-12-08 05:13:07 +0400
commit3fd60d804996031ceaba9cad0b38652b92551eb0 (patch)
tree00c87a8b359a760044c38fac4bd12df122581183 /libavcodec/lzw.c
parente0a553d526d59dad63f0be29269df8b00189a16f (diff)
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.c')
-rw-r--r--libavcodec/lzw.c5
1 files changed, 0 insertions, 5 deletions
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;