]> git.sesse.net Git - ffmpeg/commitdiff
vp9: remove unused assignment
authorTimothy Gu <timothygu99@gmail.com>
Wed, 16 Jul 2014 03:56:29 +0000 (20:56 -0700)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 16 Jul 2014 12:38:42 +0000 (14:38 +0200)
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Reviewed-by: BBB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/vp9.c

index 56975bd577c77df713aabfa4cbf8d8482ac8180d..96da823826b50f1b1ab274453f04cee8a384b9cb 100644 (file)
@@ -2479,7 +2479,6 @@ static void intra_recon(AVCodecContext *ctx, ptrdiff_t y_off, ptrdiff_t uv_off)
     }
 
     // U/V
-    h4 >>= 1;
     w4 >>= 1;
     end_x >>= 1;
     end_y >>= 1;
@@ -2760,8 +2759,6 @@ static void inter_recon(AVCodecContext *ctx)
         }
 
         // uv itxfm add
-        h4 >>= 1;
-        w4 >>= 1;
         end_x >>= 1;
         end_y >>= 1;
         step = 1 << (b->uvtx * 2);