Commit 4dc70526 authored by michael's avatar michael

forgotten const


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11770 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0fea3dd1
......@@ -117,7 +117,7 @@ static int qpeg_table_w[16] =
/* Decodes delta frames */
static void qpeg_decode_inter(const uint8_t *src, uint8_t *dst, int size,
int stride, int width, int height,
int delta, uint8_t *ctable, uint8_t *refdata)
int delta, const uint8_t *ctable, uint8_t *refdata)
{
int i, j;
int code;
......
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