| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "remoting/codec/video_encoder_vp8.h" | 5 #include "remoting/codec/video_encoder_vp8.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/sys_info.h" | 8 #include "base/sys_info.h" |
| 9 #include "base/time.h" | 9 #include "base/time.h" |
| 10 #include "media/base/yuv_convert.h" | 10 #include "media/base/yuv_convert.h" |
| 11 #include "remoting/base/capture_data.h" | |
| 12 #include "remoting/base/util.h" | 11 #include "remoting/base/util.h" |
| 12 #include "remoting/capturer/capture_data.h" |
| 13 #include "remoting/proto/video.pb.h" | 13 #include "remoting/proto/video.pb.h" |
| 14 | 14 |
| 15 extern "C" { | 15 extern "C" { |
| 16 #define VPX_CODEC_DISABLE_COMPAT 1 | 16 #define VPX_CODEC_DISABLE_COMPAT 1 |
| 17 #include "third_party/libvpx/libvpx.h" | 17 #include "third_party/libvpx/libvpx.h" |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| 22 // Defines the dimension of a macro block. This is used to compute the active | 22 // Defines the dimension of a macro block. This is used to compute the active |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 rect->set_x(r.rect().x()); | 304 rect->set_x(r.rect().x()); |
| 305 rect->set_y(r.rect().y()); | 305 rect->set_y(r.rect().y()); |
| 306 rect->set_width(r.rect().width()); | 306 rect->set_width(r.rect().width()); |
| 307 rect->set_height(r.rect().height()); | 307 rect->set_height(r.rect().height()); |
| 308 } | 308 } |
| 309 | 309 |
| 310 data_available_callback.Run(packet.Pass()); | 310 data_available_callback.Run(packet.Pass()); |
| 311 } | 311 } |
| 312 | 312 |
| 313 } // namespace remoting | 313 } // namespace remoting |
| OLD | NEW |