diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 22:28:41 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-08-24 22:28:41 +0000 |
commit | 802f454e5bf2657c3b95c364b474625539a29cd4 (patch) | |
tree | 70a8fd9f50f3e1affce5976ed9e808ed33bdeadc /libavcodec/vcr1.c | |
parent | acaa20d7bda312362c743f4bc5fb5a51f63c3720 (diff) | |
download | ffmpeg-802f454e5bf2657c3b95c364b474625539a29cd4.tar.gz |
removed unused variable
Originally committed as revision 2162 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vcr1.c')
-rw-r--r-- | libavcodec/vcr1.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c index 18e250dd6b..4905c703f1 100644 --- a/libavcodec/vcr1.c +++ b/libavcodec/vcr1.c @@ -150,9 +150,6 @@ static void common_init(AVCodecContext *avctx){ } static int decode_init(AVCodecContext *avctx){ - VCR1Context * const a = avctx->priv_data; - AVFrame *p= (AVFrame*)&a->picture; - int i; common_init(avctx); @@ -162,8 +159,6 @@ static int decode_init(AVCodecContext *avctx){ } static int encode_init(AVCodecContext *avctx){ - VCR1Context * const a = avctx->priv_data; - int i; common_init(avctx); @@ -171,7 +166,6 @@ static int encode_init(AVCodecContext *avctx){ } static int decode_end(AVCodecContext *avctx){ - VCR1Context * const a = avctx->priv_data; avcodec_default_free_buffers(avctx); |