# HG changeset patch # User michael # Date 1201874321 0 # Node ID bacdb708975678881b55ec6b4ab20dcebe842657 # Parent 930ac362be5aa9cdb4973a38312b34eff11ba8ea const diff -r 930ac362be5a -r bacdb7089756 pcx.c --- a/pcx.c Fri Feb 01 13:55:15 2008 +0000 +++ b/pcx.c Fri Feb 01 13:58:41 2008 +0000 @@ -42,7 +42,7 @@ /** * @return advanced src pointer */ -static char *pcx_rle_decode(uint8_t *src, uint8_t *dst, +static const char *pcx_rle_decode(const uint8_t *src, uint8_t *dst, unsigned int bytes_per_scanline) { unsigned int i = 0; unsigned char run, value; @@ -61,7 +61,7 @@ return src; } -static void pcx_palette(uint8_t **src, uint32_t *dst, unsigned int pallen) { +static void pcx_palette(const uint8_t **src, uint32_t *dst, unsigned int pallen) { unsigned int i; for (i=0; ipriv_data; AVFrame *picture = data; AVFrame * const p = &s->picture; int xmin, ymin, xmax, ymax; unsigned int w, h, bits_per_pixel, bytes_per_line, nplanes, stride, y, x, bytes_per_scanline; - uint8_t *ptr, *bufstart = buf; + uint8_t *ptr; + uint8_t const *bufstart = buf; if (buf[0] != 0x0a || buf[1] > 5 || buf[1] == 1 || buf[2] != 1) { av_log(avctx, AV_LOG_ERROR, "this is not PCX encoded data\n"); @@ -161,7 +162,7 @@ } else if (nplanes == 1 && bits_per_pixel == 8) { uint8_t scanline[bytes_per_scanline]; - uint8_t *palstart = bufstart + buf_size - 769; + const uint8_t *palstart = bufstart + buf_size - 769; for (y=0; ydata[1], 256); } else if (bits_per_pixel < 8) { - uint8_t *palette = bufstart+16; + const uint8_t *palette = bufstart+16; pcx_palette(&palette, (uint32_t *) p->data[1], 16); }