From 6081c30b81a1d912f12cfa3fa5b8154557971c79 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 17 Apr 2009 14:59:04 +0000 Subject: [PATCH] Remove 2 unneeded variables from common_init() found by CSA. Originally committed as revision 18560 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ffv1.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index c6767493af5..86f28974344 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -530,17 +530,16 @@ static void write_header(FFV1Context *f){ static av_cold int common_init(AVCodecContext *avctx){ FFV1Context *s = avctx->priv_data; - int width, height; s->avctx= avctx; s->flags= avctx->flags; dsputil_init(&s->dsp, avctx); - width= s->width= avctx->width; - height= s->height= avctx->height; + s->width = avctx->width; + s->height= avctx->height; - assert(width && height); + assert(s->width && s->height); return 0; } -- 2.39.2