Commit c44843ee authored by michael's avatar michael

const


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11745 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e9e2d35b
......@@ -42,12 +42,13 @@ static int sunrast_init(AVCodecContext *avctx) {
}
static int sunrast_decode_frame(AVCodecContext *avctx, void *data,
int *data_size, uint8_t *buf, int buf_size) {
int *data_size, const uint8_t *buf, int buf_size) {
SUNRASTContext * const s = avctx->priv_data;
AVFrame *picture = data;
AVFrame * const p = &s->picture;
unsigned int w, h, depth, type, maptype, maplength, stride, x, y, len, alen;
uint8_t *ptr, *bufstart = buf;
uint8_t *ptr;
const uint8_t *bufstart = buf;
if (AV_RB32(buf) != 0x59a66a95) {
av_log(avctx, AV_LOG_ERROR, "this is not sunras encoded data\n");
......
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