mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
forgotten const
Originally committed as revision 11770 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
13c2619e7c
commit
0179178666
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user