Commit 454f1657 authored by Clément Bœsch's avatar Clément Bœsch

j2kdec: fix a bunch of const compiler warnings.

parent 5fd1a695
...@@ -64,9 +64,9 @@ typedef struct { ...@@ -64,9 +64,9 @@ typedef struct {
J2kCodingStyle codsty[4]; J2kCodingStyle codsty[4];
J2kQuantStyle qntsty[4]; J2kQuantStyle qntsty[4];
uint8_t *buf_start; const uint8_t *buf_start;
uint8_t *buf; const uint8_t *buf;
uint8_t *buf_end; const uint8_t *buf_end;
int bit_index; int bit_index;
int16_t curtileno; int16_t curtileno;
...@@ -903,7 +903,7 @@ static int decode_codestream(J2kDecoderContext *s) ...@@ -903,7 +903,7 @@ static int decode_codestream(J2kDecoderContext *s)
for (;;){ for (;;){
int marker, len, ret = 0; int marker, len, ret = 0;
uint8_t *oldbuf; const uint8_t *oldbuf;
if (s->buf_end - s->buf < 2){ if (s->buf_end - s->buf < 2){
av_log(s->avctx, AV_LOG_ERROR, "Missing EOC\n"); av_log(s->avctx, AV_LOG_ERROR, "Missing EOC\n");
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment