blob: 1f73689c0a9effe7993a106a23d0ffddee6b7145 [file] [log] [blame]
Rasmus Brandtfb3bd4a2022-10-13 13:43:27 +02001/*
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
16namespace webrtc {
17namespace {
18
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
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