]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/gdv: Remove unused variable
authorMichael Niedermayer <michael@niedermayer.cc>
Sun, 30 Sep 2018 19:50:30 +0000 (21:50 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 30 Sep 2018 20:23:02 +0000 (22:23 +0200)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/gdv.c

index b54f7373d1cad2439642dff24486546baade6f4b..538bc38e3eadf6feb9f68a9a3702cddf46f96b9e 100644 (file)
@@ -74,7 +74,7 @@ static av_cold int gdv_decode_init(AVCodecContext *avctx)
 
 static void rescale(GDVContext *gdv, uint8_t *dst, int w, int h, int scale_v, int scale_h)
 {
-    int i, j, y, x;
+    int j, y, x;
 
     if ((gdv->scale_v == scale_v) && (gdv->scale_h == scale_h)) {
         return;