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/base/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 "media/base/yuv_convert.h" | 9 #include "media/base/yuv_convert.h" |
10 #include "remoting/base/capture_data.h" | 10 #include "remoting/base/capture_data.h" |
11 #include "remoting/base/util.h" | 11 #include "remoting/base/util.h" |
12 #include "remoting/proto/video.pb.h" | 12 #include "remoting/proto/video.pb.h" |
13 | 13 |
14 extern "C" { | 14 extern "C" { |
15 #define VPX_CODEC_DISABLE_COMPAT 1 | 15 #define VPX_CODEC_DISABLE_COMPAT 1 |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 rect->set_x(r.rect().x()); | 298 rect->set_x(r.rect().x()); |
299 rect->set_y(r.rect().y()); | 299 rect->set_y(r.rect().y()); |
300 rect->set_width(r.rect().width()); | 300 rect->set_width(r.rect().width()); |
301 rect->set_height(r.rect().height()); | 301 rect->set_height(r.rect().height()); |
302 } | 302 } |
303 | 303 |
304 data_available_callback.Run(packet.Pass()); | 304 data_available_callback.Run(packet.Pass()); |
305 } | 305 } |
306 | 306 |
307 } // namespace remoting | 307 } // namespace remoting |
OLD | NEW |