Commit 6081c30b authored by Michael Niedermayer's avatar Michael Niedermayer

Remove 2 unneeded variables from common_init() found by CSA.

Originally committed as revision 18560 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d0d62cc9
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment