diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-07-15 20:56:29 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-16 14:38:42 +0200 |
commit | 9bc0410e4f891719b54a5788665526e22d94bb50 (patch) | |
tree | 49aef19274f2361649aa9eb930f9513103ba60b0 | |
parent | ea6178fff8ee0ccf145a2cbd5ab3c1bf73cd03d2 (diff) | |
download | ffmpeg-9bc0410e4f891719b54a5788665526e22d94bb50.tar.gz |
vp9: remove unused assignment
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Reviewed-by: BBB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/vp9.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c index 56975bd577..96da823826 100644 --- a/libavcodec/vp9.c +++ b/libavcodec/vp9.c @@ -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); |