summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2011-12-09 00:45:27 +0000
committerDiego Biurrun <diego@biurrun.de>2011-12-10 20:11:28 +0100
commit65c1011404dc936ca93175d6c8bd439c657c66e4 (patch)
tree531f2bc1a8ac5ab6e441a9eae4fcf98f5d5f089d /libavcodec
parent3c1f60860da70e074c54bbbbe720474688eaafe9 (diff)
cljr: remove unused code
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/cljr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c
index 65b7433498..a5ee73864c 100644
--- a/libavcodec/cljr.c
+++ b/libavcodec/cljr.c
@@ -29,7 +29,6 @@
#include "put_bits.h"
typedef struct CLJRContext {
- AVCodecContext *avctx;
AVFrame picture;
} CLJRContext;
@@ -38,7 +37,6 @@ static av_cold int common_init(AVCodecContext *avctx)
CLJRContext * const a = avctx->priv_data;
avctx->coded_frame = &a->picture;
- a->avctx = avctx;
return 0;
}