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

Unified Diff: source/libvpx/test/idct_test.cc

Issue 23530058: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 3 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/test/idct8x8_test.cc ('k') | source/libvpx/test/intrapred_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/test/idct_test.cc
===================================================================
--- source/libvpx/test/idct_test.cc (revision 223100)
+++ source/libvpx/test/idct_test.cc (working copy)
@@ -16,7 +16,9 @@
#include "test/register_state_check.h"
#include "third_party/googletest/src/include/gtest/gtest.h"
-typedef void (*idct_fn_t)(short *input, unsigned char *pred_ptr,
+#include "vpx/vpx_integer.h"
+
+typedef void (*idct_fn_t)(int16_t *input, unsigned char *pred_ptr,
int pred_stride, unsigned char *dst_ptr,
int dst_stride);
namespace {
@@ -34,7 +36,7 @@
virtual void TearDown() { libvpx_test::ClearSystemState(); }
idct_fn_t UUT;
- short input[16];
+ int16_t input[16];
unsigned char output[256];
unsigned char predict[256];
};
« no previous file with comments | « source/libvpx/test/idct8x8_test.cc ('k') | source/libvpx/test/intrapred_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698