Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(560)

Unified Diff: libvpx/source/libvpx/vp8/decoder/arm/dequantize_arm.c

Issue 7624054: Revert r97185 "Update libvpx snapshot to v0.9.7-p1 (Cayuga)." (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698