Browse Source

cdgraphics: set palette to zero too

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n1.2
Paul B Mahol 13 years ago
parent
commit
85921499c7
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavcodec/cdgraphics.c

+ 3
- 1
libavcodec/cdgraphics.c View File

@@ -291,8 +291,10 @@ static int cdg_decode_frame(AVCodecContext *avctx,
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
return ret;
}
if (!avctx->frame_number)
if (!avctx->frame_number) {
memset(cc->frame.data[0], 0, cc->frame.linesize[0] * avctx->height);
memset(cc->frame.data[1], 0, AVPALETTE_SIZE);
}

command = bytestream_get_byte(&buf);
inst = bytestream_get_byte(&buf);


Loading…
Cancel
Save