1 /* 2 * Copyright (c) 2022 The WebRTC project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #include "modules/video_coding/frame_helpers.h" 12 13 #include "api/units/timestamp.h" 14 #include "test/gtest.h" 15 16 namespace webrtc { 17 namespace { 18 TEST(FrameHasBadRenderTimingTest,LargePositiveFrameDelayIsBad)19TEST(FrameHasBadRenderTimingTest, LargePositiveFrameDelayIsBad) { 20 Timestamp render_time = Timestamp::Seconds(12); 21 Timestamp now = Timestamp::Seconds(0); 22 23 EXPECT_TRUE(FrameHasBadRenderTiming(render_time, now)); 24 } 25 TEST(FrameHasBadRenderTimingTest,LargeNegativeFrameDelayIsBad)26TEST(FrameHasBadRenderTimingTest, LargeNegativeFrameDelayIsBad) { 27 Timestamp render_time = Timestamp::Seconds(12); 28 Timestamp now = Timestamp::Seconds(24); 29 30 EXPECT_TRUE(FrameHasBadRenderTiming(render_time, now)); 31 } 32 33 } // namespace 34 } // namespace webrtc 35