| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 "media/base/null_video_sink.h" | 5 #include "media/base/null_video_sink.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/callback_helpers.h" | 8 #include "base/callback_helpers.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 delay += interval_ * (-delay / interval_ + 1); | 82 delay += interval_ * (-delay / interval_ + 1); |
| 83 current_render_time_ = now + delay; | 83 current_render_time_ = now + delay; |
| 84 last_now_ = now; | 84 last_now_ = now; |
| 85 } | 85 } |
| 86 | 86 |
| 87 task_runner_->PostDelayedTask(FROM_HERE, cancelable_worker_.callback(), | 87 task_runner_->PostDelayedTask(FROM_HERE, cancelable_worker_.callback(), |
| 88 delay); | 88 delay); |
| 89 } | 89 } |
| 90 | 90 |
| 91 void NullVideoSink::PaintSingleFrame(const scoped_refptr<VideoFrame>& frame) { | 91 void NullVideoSink::PaintSingleFrame(const scoped_refptr<VideoFrame>& frame) { |
| 92 if (frame == last_frame_) |
| 93 return; |
| 94 last_frame_ = frame; |
| 92 new_frame_cb_.Run(frame); | 95 new_frame_cb_.Run(frame); |
| 93 } | 96 } |
| 94 | 97 |
| 95 } // namespace media | 98 } // namespace media |
| OLD | NEW |