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

Side by Side Diff: media/cast/sender/video_sender_unittest.cc

Issue 1157193002: RESOURCE_UTILIZATION in VideoFrameMetadata, a consumer feedback signal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@video_frame_done_callback
Patch Set: Addressed hubbe's round 2 comments, and REBASE. 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 unified diff | Download patch
« no previous file with comments | « media/cast/sender/video_sender.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « media/cast/sender/video_sender.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698