You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
consts
I have underestimated this a little, and these are just some ... Originally committed as revision 11708 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -43,9 +43,9 @@ typedef void LZWState;
|
||||
/* first two functions de/allocate memory for LZWState */
|
||||
void ff_lzw_decode_open(LZWState **p);
|
||||
void ff_lzw_decode_close(LZWState **p);
|
||||
int ff_lzw_decode_init(LZWState *s, int csize, uint8_t *buf, int buf_size, int mode);
|
||||
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);
|
||||
uint8_t* ff_lzw_cur_ptr(LZWState *lzw);
|
||||
const uint8_t* ff_lzw_cur_ptr(LZWState *lzw);
|
||||
void ff_lzw_decode_tail(LZWState *lzw);
|
||||
|
||||
/** LZW encode state */
|
||||
|
||||
Reference in New Issue
Block a user