OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stdint.h> | 5 #include <stdint.h> |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 EXPECT_EQ(0, transport_.number_of_rtp_packets()); | 556 EXPECT_EQ(0, transport_.number_of_rtp_packets()); |
557 } | 557 } |
558 | 558 |
559 TEST_F(VideoSenderTest, CheckVideoFrameFactoryIsNull) { | 559 TEST_F(VideoSenderTest, CheckVideoFrameFactoryIsNull) { |
560 InitEncoder(false, true); | 560 InitEncoder(false, true); |
561 ASSERT_EQ(STATUS_INITIALIZED, operational_status_); | 561 ASSERT_EQ(STATUS_INITIALIZED, operational_status_); |
562 | 562 |
563 EXPECT_EQ(nullptr, video_sender_->CreateVideoFrameFactory().get()); | 563 EXPECT_EQ(nullptr, video_sender_->CreateVideoFrameFactory().get()); |
564 } | 564 } |
565 | 565 |
| 566 TEST_F(VideoSenderTest, PopulatesResourceUtilizationInFrameMetadata) { |
| 567 InitEncoder(false, true); |
| 568 ASSERT_EQ(STATUS_INITIALIZED, operational_status_); |
| 569 |
| 570 for (int i = 0; i < 3; ++i) { |
| 571 scoped_refptr<media::VideoFrame> video_frame = GetNewVideoFrame(); |
| 572 ASSERT_FALSE(video_frame->metadata()->HasKey( |
| 573 media::VideoFrameMetadata::RESOURCE_UTILIZATION)); |
| 574 |
| 575 const base::TimeTicks reference_time = testing_clock_->NowTicks(); |
| 576 video_sender_->InsertRawVideoFrame(video_frame, reference_time); |
| 577 |
| 578 // Run encode tasks. VideoSender::OnEncodedVideoFrame() will be called once |
| 579 // encoding of the frame is complete, and this is when the |
| 580 // RESOURCE_UTILIZATION metadata is populated. |
| 581 RunTasks(33); |
| 582 |
| 583 // Check that the RESOURCE_UTILIZATION value is set and non-negative. Don't |
| 584 // check for specific values because they are dependent on real-world CPU |
| 585 // encode time, which can vary across test runs. |
| 586 double utilization = -1.0; |
| 587 EXPECT_TRUE(video_frame->metadata()->GetDouble( |
| 588 media::VideoFrameMetadata::RESOURCE_UTILIZATION, &utilization)); |
| 589 EXPECT_LE(0.0, utilization); |
| 590 if (i == 0) |
| 591 EXPECT_GE(1.0, utilization); // Key frames never exceed 1.0. |
| 592 DVLOG(1) << "Utilization computed by VideoSender is: " << utilization; |
| 593 } |
| 594 } |
| 595 |
566 } // namespace cast | 596 } // namespace cast |
567 } // namespace media | 597 } // namespace media |
OLD | NEW |