Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/cljr.c')
-rw-r--r--libavcodec/cljr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c
index ed0eede5bf..7ae3e7eeeb 100644
--- a/libavcodec/cljr.c
+++ b/libavcodec/cljr.c
@@ -31,7 +31,6 @@
typedef struct CLJRContext {
AVClass *avclass;
- AVCodecContext *avctx;
AVFrame picture;
int dither_type;
} CLJRContext;
@@ -42,7 +41,6 @@ static av_cold int common_init(AVCodecContext *avctx)
avcodec_get_frame_defaults(&a->picture);
avctx->coded_frame = &a->picture;
- a->avctx = avctx;
return 0;
}