]> git.sesse.net Git - ffmpeg/commitdiff
Remove 2 unneeded variables from common_init() found by CSA.
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 17 Apr 2009 14:59:04 +0000 (14:59 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 17 Apr 2009 14:59:04 +0000 (14:59 +0000)
Originally committed as revision 18560 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ffv1.c

index c6767493af59dc036f9831e77ef94accb84c47a7..86f28974344d3238672ae9f2ffac47b79201b215 100644 (file)
@@ -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;
 }