OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "remoting/test/test_video_renderer.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "remoting/proto/video.pb.h" |
| 9 |
| 10 namespace remoting { |
| 11 namespace test { |
| 12 |
| 13 TestVideoRenderer::TestVideoRenderer() : video_frames_processed_(0) { |
| 14 } |
| 15 |
| 16 TestVideoRenderer::~TestVideoRenderer() { |
| 17 } |
| 18 |
| 19 void TestVideoRenderer::OnSessionConfig(const protocol::SessionConfig& config) { |
| 20 DVLOG(2) << "TestVideoRenderer::OnSessionConfig() Called"; |
| 21 } |
| 22 |
| 23 ChromotingStats* TestVideoRenderer::GetStats() { |
| 24 DVLOG(2) << "TestVideoRenderer::GetStats() Called"; |
| 25 return nullptr; |
| 26 } |
| 27 |
| 28 protocol::VideoStub* TestVideoRenderer::GetVideoStub() { |
| 29 DVLOG(2) << "TestVideoRenderer::GetVideoStub() Called"; |
| 30 return this; |
| 31 } |
| 32 |
| 33 void TestVideoRenderer::ProcessVideoPacket(scoped_ptr<VideoPacket> video_packet, |
| 34 const base::Closure& done) { |
| 35 if (!video_packet->data().empty()) { |
| 36 // If the video frame was not a keep alive frame (i.e. not empty) then |
| 37 // count it. |
| 38 DVLOG(2) << "Video Packet Processed, Total: " << ++video_frames_processed_; |
| 39 } else { |
| 40 // Log at a high verbosity level as we receive empty packets frequently and |
| 41 // they can clutter up the debug output if the level is set too low. |
| 42 DVLOG(3) << "Empty Video Packet received."; |
| 43 } |
| 44 |
| 45 done.Run(); |
| 46 } |
| 47 |
| 48 } // namespace test |
| 49 } // namespace remoting |
OLD | NEW |