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

Originally committed as revision 18560 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Michael Niedermayer 16 years ago
parent d0d62cc955
commit 6081c30b81
  1. 7
      libavcodec/ffv1.c

@ -530,17 +530,16 @@ static void write_header(FFV1Context *f){
static av_cold int common_init(AVCodecContext *avctx){ static av_cold int common_init(AVCodecContext *avctx){
FFV1Context *s = avctx->priv_data; FFV1Context *s = avctx->priv_data;
int width, height;
s->avctx= avctx; s->avctx= avctx;
s->flags= avctx->flags; s->flags= avctx->flags;
dsputil_init(&s->dsp, avctx); dsputil_init(&s->dsp, avctx);
width= s->width= avctx->width; s->width = avctx->width;
height= s->height= avctx->height; s->height= avctx->height;
assert(width && height); assert(s->width && s->height);
return 0; return 0;
} }

Loading…
Cancel
Save