kgv1dec: remove unused avctx from codec private context

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2013-08-30 13:16:50 +00:00
parent 057dce5f21
commit c042684476
1 changed files with 0 additions and 2 deletions

View File

@ -31,7 +31,6 @@
#include "internal.h"
typedef struct {
AVCodecContext *avctx;
AVFrame *prev;
} KgvContext;
@ -158,7 +157,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
{
KgvContext * const c = avctx->priv_data;
c->avctx = avctx;
avctx->pix_fmt = AV_PIX_FMT_RGB555;
avctx->flags |= CODEC_FLAG_EMU_EDGE;