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

Unified Diff: webrtc/modules/video_coding/frame_buffer2_unittest.cc

Issue 2870823003: Configured VCMTiming with sender defining delay times. (Closed)
Patch Set: empty Created 3 years, 7 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
Index: webrtc/modules/video_coding/frame_buffer2_unittest.cc
diff --git a/webrtc/modules/video_coding/frame_buffer2_unittest.cc b/webrtc/modules/video_coding/frame_buffer2_unittest.cc
index 4f1c6369dc276c4b3f3a2559928429080bdbb977..cbfdaea04a23a685165f42bd407803bf0020a1c1 100644
--- a/webrtc/modules/video_coding/frame_buffer2_unittest.cc
+++ b/webrtc/modules/video_coding/frame_buffer2_unittest.cc
@@ -260,6 +260,16 @@ TEST_F(TestFrameBuffer2, OneSuperFrame) {
CheckFrame(1, pid, 1);
}
+TEST_F(TestFrameBuffer2, SetPlayoutDelay) {
+ const int kMinimalPlayoutDelayMs = 200;
+ const int kMaximalPlayoutDelayMs = 1234;
+ std::unique_ptr<FrameObjectFake> test_frame(new FrameObjectFake());
+ test_frame->SetPlayoutDelay(kMinimalPlayoutDelayMs, kMaximalPlayoutDelayMs);
+ buffer_.InsertFrame(std::move(test_frame));
+ EXPECT_EQ(kMinimalPlayoutDelayMs, timing_.min_playout_delay());
+ EXPECT_EQ(kMaximalPlayoutDelayMs, timing_.max_playout_delay());
+}
+
// Flaky test, see bugs.webrtc.org/7068.
TEST_F(TestFrameBuffer2, DISABLED_OneUnorderedSuperFrame) {
uint16_t pid = Rand();
« webrtc/modules/video_coding/frame_buffer2.cc ('K') | « webrtc/modules/video_coding/frame_buffer2.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698