diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-04-12 18:52:16 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-05-09 23:24:07 +0200 |
commit | eeeefd500124a1ec3a7ca75d9c071c5517c3d153 (patch) | |
tree | bddc0204180b7395a3f01a517be86fc718dbab61 /libavcodec | |
parent | 51c4d870936976039807bbc881850cf6491fc89a (diff) | |
download | ffmpeg-eeeefd500124a1ec3a7ca75d9c071c5517c3d153.tar.gz |
vcr1: drop pointless write-only AVCodecContext member from VCR1Context
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vcr1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c index a745e58300..e3e45cc6a5 100644 --- a/libavcodec/vcr1.c +++ b/libavcodec/vcr1.c @@ -28,7 +28,6 @@ #include "dsputil.h" typedef struct VCR1Context { - AVCodecContext *avctx; AVFrame picture; int delta[16]; int offset[4]; @@ -39,7 +38,6 @@ static av_cold void common_init(AVCodecContext *avctx) VCR1Context *const a = avctx->priv_data; avctx->coded_frame = &a->picture; - a->avctx = avctx; } static av_cold int decode_init(AVCodecContext *avctx) |