Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
d7e4bed3
Commit
d7e4bed3
authored
Sep 30, 2014
by
Jingning Han
Committed by
Gerrit Code Review
Sep 30, 2014
Browse files
Merge "Fix compiling error in vp9_idct.h"
parents
63e49be3
eafc8c9c
Changes
4
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_blockd.h
View file @
d7e4bed3
...
...
@@ -21,7 +21,6 @@
#include
"vp9/common/vp9_common_data.h"
#include
"vp9/common/vp9_enums.h"
#include
"vp9/common/vp9_filter.h"
#include
"vp9/common/vp9_idct.h"
#include
"vp9/common/vp9_mv.h"
#include
"vp9/common/vp9_scale.h"
#include
"vp9/common/vp9_seg_common.h"
...
...
vp9/common/vp9_idct.h
View file @
d7e4bed3
...
...
@@ -36,17 +36,6 @@ extern "C" {
#define dual_set_epi16(a, b) \
_mm_set_epi16(b, b, b, b, a, a, a, a)
// 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
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
// Constants:
// for (int i = 1; i< 32; ++i)
// printf("static const int cospi_%d_64 = %.0f;\n", i,
...
...
vp9/common/vp9_rtcd_defs.pl
View file @
d7e4bed3
...
...
@@ -6,7 +6,6 @@ print <<EOF
#include "vpx/vpx_integer.h"
#include "vp9/common/vp9_enums.h"
#include "vp9/common/vp9_idct.h"
struct macroblockd;
...
...
vpx/vpx_integer.h
View file @
d7e4bed3
...
...
@@ -63,4 +63,15 @@ 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_
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment