Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
c6818876
Commit
c6818876
authored
12 years ago
by
Yaowu Xu
Browse files
Options
Downloads
Patches
Plain Diff
fixed build issue with round()
not defined in msvc Change-Id: I8fe8462a0c2f636d8b43c0243832ca67578f3665
parent
7fa3deb1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/dct32x32_test.cc
+8
-0
8 additions, 0 deletions
test/dct32x32_test.cc
vp9/common/vp9_systemdependent.h
+14
-0
14 additions, 0 deletions
vp9/common/vp9_systemdependent.h
with
22 additions
and
0 deletions
test/dct32x32_test.cc
+
8
−
0
View file @
c6818876
...
...
@@ -27,6 +27,14 @@ extern "C" {
using
libvpx_test
::
ACMRandom
;
namespace
{
#ifdef _MSC_VER
static
int
round
(
double
x
)
{
if
(
x
<
0
)
return
(
int
)
ceil
(
x
-
0.5
);
else
return
(
int
)
floor
(
x
+
0.5
);
}
#endif
#if !CONFIG_DWT32X32HYBRID
static
const
double
kPi
=
3.141592653589793238462643383279502884
;
...
...
This diff is collapsed.
Click to expand it.
vp9/common/vp9_systemdependent.h
+
14
−
0
View file @
c6818876
...
...
@@ -10,6 +10,10 @@
#ifndef VP9_COMMON_VP9_SYSTEMDEPENDENT_H_
#define VP9_COMMON_VP9_SYSTEMDEPENDENT_H_
#ifdef _MSC_VER
#include
<math.h>
#endif
#include
"vpx_ports/config.h"
#if ARCH_X86 || ARCH_X86_64
void
vpx_reset_mmx_state
(
void
);
...
...
@@ -18,6 +22,16 @@ void vpx_reset_mmx_state(void);
#define vp9_clear_system_state()
#endif
#ifdef _MSC_VER
// round is not defined in MSVC
static
int
round
(
double
x
)
{
if
(
x
<
0
)
return
(
int
)
ceil
(
x
-
0
.
5
);
else
return
(
int
)
floor
(
x
+
0
.
5
);
}
#endif
struct
VP9Common
;
void
vp9_machine_specific_config
(
struct
VP9Common
*
);
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment