cljr: remove unused code

Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
Paul B Mahol 2011-12-09 00:45:27 +00:00 committed by Diego Biurrun
parent 3c1f60860d
commit 65c1011404
1 changed files with 0 additions and 2 deletions

View File

@ -29,7 +29,6 @@
#include "put_bits.h" #include "put_bits.h"
typedef struct CLJRContext { typedef struct CLJRContext {
AVCodecContext *avctx;
AVFrame picture; AVFrame picture;
} CLJRContext; } CLJRContext;
@ -38,7 +37,6 @@ static av_cold int common_init(AVCodecContext *avctx)
CLJRContext * const a = avctx->priv_data; CLJRContext * const a = avctx->priv_data;
avctx->coded_frame = &a->picture; avctx->coded_frame = &a->picture;
a->avctx = avctx;
return 0; return 0;
} }