Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
11ee2482
Commit
11ee2482
authored
Sep 15, 2014
by
Deb Mukherjee
Committed by
Gerrit Code Review
Sep 15, 2014
Browse files
Merge "Visual Studio build (warning) fix"
parents
10a9456a
41e6ec4a
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/fdct8x8_test.cc
View file @
11ee2482
...
...
@@ -373,7 +373,7 @@ class FwdTrans8x8TestBase {
reference_8x8_dct_2d
(
in
,
out_r
);
for
(
int
j
=
0
;
j
<
kNumCoeffs
;
++
j
)
coeff
[
j
]
=
round
(
out_r
[
j
]);
coeff
[
j
]
=
static_cast
<
tran_low_t
>
(
round
(
out_r
[
j
])
)
;
if
(
bit_depth_
==
VPX_BITS_8
)
{
ASM_REGISTER_STATE_CHECK
(
RunInvTxfm
(
coeff
,
dst
,
pitch_
));
...
...
@@ -416,7 +416,7 @@ class FwdTrans8x8TestBase {
RunFwdTxfm
(
in
,
coeff
,
pitch_
);
reference_8x8_dct_2d
(
in
,
out_r
);
for
(
int
j
=
0
;
j
<
kNumCoeffs
;
++
j
)
coeff_r
[
j
]
=
round
(
out_r
[
j
]);
coeff_r
[
j
]
=
static_cast
<
tran_low_t
>
(
round
(
out_r
[
j
])
)
;
for
(
int
j
=
0
;
j
<
kNumCoeffs
;
++
j
)
{
const
uint32_t
diff
=
coeff
[
j
]
-
coeff_r
[
j
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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