Browse Source

j2kdec: fix a bunch of const compiler warnings.

tags/n0.9
Clément Bœsch 14 years ago
parent
commit
454f165728
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavcodec/j2kdec.c

+ 4
- 4
libavcodec/j2kdec.c View File

@@ -64,9 +64,9 @@ typedef struct {
J2kCodingStyle codsty[4];
J2kQuantStyle qntsty[4];

uint8_t *buf_start;
uint8_t *buf;
uint8_t *buf_end;
const uint8_t *buf_start;
const uint8_t *buf;
const uint8_t *buf_end;
int bit_index;

int16_t curtileno;
@@ -903,7 +903,7 @@ static int decode_codestream(J2kDecoderContext *s)

for (;;){
int marker, len, ret = 0;
uint8_t *oldbuf;
const uint8_t *oldbuf;
if (s->buf_end - s->buf < 2){
av_log(s->avctx, AV_LOG_ERROR, "Missing EOC\n");
break;


Loading…
Cancel
Save