Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1795)

Unified Diff: content/browser/media/capture/video_capture_oracle_unittest.cc

Issue 1183553002: Adjust VideoCaptureOracle wrt. out of order captures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/media/capture/video_capture_oracle.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/media/capture/video_capture_oracle_unittest.cc
diff --git a/content/browser/media/capture/video_capture_oracle_unittest.cc b/content/browser/media/capture/video_capture_oracle_unittest.cc
index 2d949508c5f89f0c448c45c8fe0ab24f92a76cba..4943ee34fe6ce87b5ce99b07ef8fed69fe8aa0dc 100644
--- a/content/browser/media/capture/video_capture_oracle_unittest.cc
+++ b/content/browser/media/capture/video_capture_oracle_unittest.cc
@@ -52,9 +52,9 @@ TEST(VideoCaptureOracleTest, EnforcesEventTimeMonotonicity) {
}
}
-// Tests that VideoCaptureOracle is enforcing the requirement that captured
-// frames are delivered in order. Otherwise, downstream consumers could be
-// tripped-up by out-of-order frames or frame timestamps.
+// Tests that VideoCaptureOracle is enforcing the requirement that
+// successfully captured frames are delivered in order. Otherwise, downstream
+// consumers could be tripped-up by out-of-order frames or frame timestamps.
TEST(VideoCaptureOracleTest, EnforcesFramesDeliveredInOrder) {
const base::TimeDelta min_capture_period =
base::TimeDelta::FromSeconds(1) / 30;
@@ -93,7 +93,8 @@ TEST(VideoCaptureOracleTest, EnforcesFramesDeliveredInOrder) {
}
}
- // Pipelined scenario with out-of-order delivery attempts rejected.
+ // Pipelined scenario with successful out-of-order delivery attempts
+ // rejected.
for (int i = 0; i < 50; ++i) {
const int num_in_flight = 1 + i % 3;
for (int j = 0; j < num_in_flight; ++j) {
@@ -109,6 +110,26 @@ TEST(VideoCaptureOracleTest, EnforcesFramesDeliveredInOrder) {
oracle.CompleteCapture(last_frame_number - j, true, &ignored));
}
}
+
+ // Pipelined scenario with successful delivery attempts accepted after an
+ // unsuccessful out of order delivery attempt.
+ for (int i = 0; i < 50; ++i) {
+ const int num_in_flight = 1 + i % 3;
+ for (int j = 0; j < num_in_flight; ++j) {
+ t += event_increment;
+ ASSERT_TRUE(oracle.ObserveEventAndDecideCapture(
+ VideoCaptureOracle::kCompositorUpdate,
+ damage_rect, t));
+ last_frame_number = oracle.RecordCapture();
+ }
+ // Report the last frame as an out of order failure.
+ ASSERT_FALSE(oracle.CompleteCapture(last_frame_number, false, &ignored));
+ for (int j = 1; j < num_in_flight - 1; ++j) {
+ ASSERT_TRUE(
+ oracle.CompleteCapture(last_frame_number - j, true, &ignored));
+ }
+
+ }
}
// Tests that VideoCaptureOracle transitions between using its two samplers in a
« no previous file with comments | « content/browser/media/capture/video_capture_oracle.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698