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
90d21bb2
Commit
90d21bb2
authored
Aug 15, 2014
by
James Zern
Committed by
Gerrit Code Review
Aug 15, 2014
Browse files
Merge "frame_size_tests: reduce 'large' size for win32"
parents
0b8b682b
d637c2b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/frame_size_tests.cc
View file @
90d21bb2
...
...
@@ -72,7 +72,13 @@ TEST_F(VP9FrameSizeTestsLarge, ValidSizes) {
// one for each lag in frames (for 2 pass), and then one for each possible
// reference buffer (8) - we can end up with up to 30 buffers of roughly this
// size or almost 1 gig of memory.
// In total the allocations will exceed 2GiB which may cause a failure with
// mingw + wine, use a smaller size in that case.
#if defined(_WIN32) && !defined(_WIN64)
video
.
SetSize
(
4096
,
3072
);
#else
video
.
SetSize
(
4096
,
4096
);
#endif
video
.
set_limit
(
2
);
expected_res_
=
VPX_CODEC_OK
;
ASSERT_NO_FATAL_FAILURE
(
RunLoop
(
&
video
));
...
...
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