diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:41:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:41:16 +0000 |
commit | 017917866651453df10b945bcdc857394217a78d (patch) | |
tree | 53624bad40886e4af43d81c1acd9dfa9e0f86c14 /libavcodec/qpeg.c | |
parent | 13c2619e7c166ecfa0b444dd5d2b19d7caddbbb8 (diff) | |
download | ffmpeg-017917866651453df10b945bcdc857394217a78d.tar.gz |
forgotten const
Originally committed as revision 11770 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qpeg.c')
-rw-r--r-- | libavcodec/qpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c index 3c0d87e939..5f902e3043 100644 --- a/libavcodec/qpeg.c +++ b/libavcodec/qpeg.c @@ -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; |