summaryrefslogtreecommitdiff
path: root/vpx
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-09-30 15:29:36 -0700
committerJames Zern <jzern@google.com>2014-09-30 16:08:55 -0700
commit4a296e6baa1fc2faf9dfcb9b8611fd73bad2c004 (patch)
treeaf6d5eb15774a7264c1d0614cbfb5fd94fa7f3ae /vpx
parente8a74f4b072f65a700ea44af84520c49da9ef1b2 (diff)
downloadlibvpx-4a296e6baa1fc2faf9dfcb9b8611fd73bad2c004.tar
libvpx-4a296e6baa1fc2faf9dfcb9b8611fd73bad2c004.tar.gz
libvpx-4a296e6baa1fc2faf9dfcb9b8611fd73bad2c004.tar.bz2
libvpx-4a296e6baa1fc2faf9dfcb9b8611fd73bad2c004.zip
Revert "Fix compiling error in vp9_idct.h"
This reverts commit eafc8c9c40d712aabe234bed5269a02c62fa0bfc. tran_low_t/tran_high_t don't belong in a public header, they're private. Similarly the public headers shouldn't rely on config defines, vpx_config.h isn't installed. Change-Id: I194ec273598da418df8dd727b6c0e78a556740ad
Diffstat (limited to 'vpx')
-rw-r--r--vpx/vpx_integer.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/vpx/vpx_integer.h b/vpx/vpx_integer.h
index 8eee303f4..ffeefb819 100644
--- a/vpx/vpx_integer.h
+++ b/vpx/vpx_integer.h
@@ -63,15 +63,4 @@ typedef size_t uintptr_t;
#include <inttypes.h>
#endif
-// Note:
-// tran_low_t is the datatype used for final transform coefficients.
-// tran_high_t is the datatype used for intermediate transform stages.
-#if CONFIG_VP9_HIGHBITDEPTH && CONFIG_VP9
-typedef int64_t tran_high_t;
-typedef int32_t tran_low_t;
-#else
-typedef int32_t tran_high_t;
-typedef int16_t tran_low_t;
-#endif
-
#endif // VPX_VPX_INTEGER_H_