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

Unified Diff: source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_dspr2.c

Issue 1124333011: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: only update to last nights LKGR Created 5 years, 7 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: source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_dspr2.c
diff --git a/source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_dspr2.c b/source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_dspr2.c
index 0ef9dd508e50aff5df997256809911f6dec542a1..58b50d2df9386401e458282f7d888800df69e8fd 100644
--- a/source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_dspr2.c
+++ b/source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_dspr2.c
@@ -950,7 +950,7 @@ void vp9_convolve8_dspr2(const uint8_t *src, ptrdiff_t src_stride,
const int16_t *filter_x, int x_step_q4,
const int16_t *filter_y, int y_step_q4,
int w, int h) {
- DECLARE_ALIGNED_ARRAY(32, uint8_t, temp, 64 * 135);
+ DECLARE_ALIGNED(32, uint8_t, temp[64 * 135]);
int32_t intermediate_height = ((h * y_step_q4) >> 4) + 7;
uint32_t pos = 38;

Powered by Google App Engine
This is Rietveld 408576698