Commit 7b151a98 authored by Reimar Döffinger's avatar Reimar Döffinger

Document padding requirements of mszh_decomp srcptr buffer

Originally committed as revision 19049 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5e5fe7da
......@@ -71,6 +71,9 @@ typedef struct LclDecContext {
} LclDecContext;
/**
* \param srcptr compressed source buffer, must be padded with at least 4 extra bytes
*/
static unsigned int mszh_decomp(unsigned char * srcptr, int srclen, unsigned char * destptr, unsigned int destsize)
{
unsigned char *destptr_bak = destptr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment