exr: constify s in rle_uncompress()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
pull/10/head
Paul B Mahol 12 years ago
parent a3d890527e
commit 59015c1118
  1. 2
      libavcodec/exr.c

@ -188,7 +188,7 @@ static void reorder_pixels(uint8_t *src, uint8_t *dst, int size)
static int rle_uncompress(const uint8_t *src, int ssize, uint8_t *dst, int dsize)
{
int8_t *d = (int8_t *)dst;
int8_t *s = (int8_t *)src;
const int8_t *s = (const int8_t *)src;
int8_t *dend = d + dsize;
int count;

Loading…
Cancel
Save