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
a0d12207
Commit
a0d12207
authored
Jun 16, 2016
by
Zoe Liu
Committed by
Gerrit Code Review
Jun 16, 2016
Browse files
Merge "Fix the superframe unit test for BIDIR_PRED" into nextgenv2
parents
8192010e
1aa674b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/superframe_test.cc
View file @
a0d12207
...
...
@@ -112,7 +112,13 @@ TEST_P(SuperframeTest, TestSuperframeIndexIsOptional) {
::
libvpx_test
::
I420VideoSource
video
(
"hantro_collage_w352h288.yuv"
,
352
,
288
,
30
,
1
,
0
,
40
);
ASSERT_NO_FATAL_FAILURE
(
RunLoop
(
&
video
));
#if CONFIG_BIDIR_PRED
// NOTE: The use of BWDREF_FRAME will enable the coding of more non-show
// frames besides ALTREF_FRAME.
EXPECT_GE
(
sf_count_
,
1
);
#else
EXPECT_EQ
(
sf_count_
,
1
);
#endif // CONFIG_BIDIR_PRED
}
VP9_INSTANTIATE_TEST_CASE
(
SuperframeTest
,
::
testing
::
Combine
(
...
...
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