comparison qpeg.c @ 6276:e9cff14a5ae5 libavcodec

forgotten const
author michael
date Fri, 01 Feb 2008 15:41:16 +0000
parents 458c2f742eef
children c32be43b52b2
comparison
equal deleted inserted replaced
6275:2ce4b47513a0 6276:e9cff14a5ae5
115 { 0x00, 0x20, 0x18, 0x08, 0x18, 0x10, 0x20, 0x10, 0x08, 0x10, 0x20, 0x20, 0x08, 0x10, 0x18, 0x04}; 115 { 0x00, 0x20, 0x18, 0x08, 0x18, 0x10, 0x20, 0x10, 0x08, 0x10, 0x20, 0x20, 0x08, 0x10, 0x18, 0x04};
116 116
117 /* Decodes delta frames */ 117 /* Decodes delta frames */
118 static void qpeg_decode_inter(const uint8_t *src, uint8_t *dst, int size, 118 static void qpeg_decode_inter(const uint8_t *src, uint8_t *dst, int size,
119 int stride, int width, int height, 119 int stride, int width, int height,
120 int delta, uint8_t *ctable, uint8_t *refdata) 120 int delta, const uint8_t *ctable, uint8_t *refdata)
121 { 121 {
122 int i, j; 122 int i, j;
123 int code; 123 int code;
124 int filled = 0; 124 int filled = 0;
125 int orig_height; 125 int orig_height;