]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/lzw.c
hpel_motion_search: move code used for asserts under correct #if
[ffmpeg] / libavcodec / lzw.c
index 97f6e6ac829cdb9f7fae23147b5a0cc23931cdf1..43e3e055c26112a2a157d8e081b4d114855de575 100644 (file)
@@ -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;