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

Unified Diff: source/libvpx/vp9/encoder/x86/vp9_dct_impl_sse2.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
« no previous file with comments | « source/libvpx/vp9/encoder/x86/vp9_avg_intrin_sse2.c ('k') | source/libvpx/vp9/encoder/x86/vp9_dct_ssse3.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vp9/encoder/x86/vp9_dct_impl_sse2.c
diff --git a/source/libvpx/vp9/encoder/x86/vp9_dct_impl_sse2.c b/source/libvpx/vp9/encoder/x86/vp9_dct_impl_sse2.c
index 12fa747e859beccf7cfb01cc4fe3dc41291e57d3..e03a76d2e894305145da306ec96aa113d33a472a 100644
--- a/source/libvpx/vp9/encoder/x86/vp9_dct_impl_sse2.c
+++ b/source/libvpx/vp9/encoder/x86/vp9_dct_impl_sse2.c
@@ -578,7 +578,7 @@ void FDCT16x16_2D(const int16_t *input, tran_low_t *output, int stride) {
// in normal/row positions).
int pass;
// We need an intermediate buffer between passes.
- DECLARE_ALIGNED_ARRAY(16, int16_t, intermediate, 256);
+ DECLARE_ALIGNED(16, int16_t, intermediate[256]);
const int16_t *in = input;
int16_t *out0 = intermediate;
tran_low_t *out1 = output;
« no previous file with comments | « source/libvpx/vp9/encoder/x86/vp9_avg_intrin_sse2.c ('k') | source/libvpx/vp9/encoder/x86/vp9_dct_ssse3.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698