| Index: libvpx/source/libvpx/vp8/decoder/arm/dequantize_arm.c
|
| diff --git a/libvpx/source/libvpx/vp8/decoder/arm/dequantize_arm.c b/libvpx/source/libvpx/vp8/decoder/arm/dequantize_arm.c
|
| index 98db6eefff30b36c192b983d658024ce8461a806..d88adb729e37ebbfd69c77fbda47b56b7489d907 100644
|
| --- a/libvpx/source/libvpx/vp8/decoder/arm/dequantize_arm.c
|
| +++ b/libvpx/source/libvpx/vp8/decoder/arm/dequantize_arm.c
|
| @@ -26,6 +26,7 @@ extern void vp8_dequantize_b_loop_v6(short *Q, short *DQC, short *DQ);
|
|
|
| void vp8_dequantize_b_neon(BLOCKD *d)
|
| {
|
| + int i;
|
| short *DQ = d->dqcoeff;
|
| short *Q = d->qcoeff;
|
| short *DQC = d->dequant;
|
| @@ -37,6 +38,7 @@ void vp8_dequantize_b_neon(BLOCKD *d)
|
| #if HAVE_ARMV6
|
| void vp8_dequantize_b_v6(BLOCKD *d)
|
| {
|
| + int i;
|
| short *DQ = d->dqcoeff;
|
| short *Q = d->qcoeff;
|
| short *DQC = d->dequant;
|
|
|