diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-05 12:56:39 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-05 12:56:39 +0100 |
commit | 454f1657288e75a9797381c8a26598674ea9bd68 (patch) | |
tree | 4f928e8857bfc71eb955a93358ca40596cc19ea9 | |
parent | 5fd1a6950943c56e6ffd79345c1c27d2587fd22c (diff) | |
download | ffmpeg-454f1657288e75a9797381c8a26598674ea9bd68.tar.gz |
j2kdec: fix a bunch of const compiler warnings.
-rw-r--r-- | libavcodec/j2kdec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/j2kdec.c b/libavcodec/j2kdec.c index 15e4450251..0fb1600a6d 100644 --- a/libavcodec/j2kdec.c +++ b/libavcodec/j2kdec.c @@ -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; |