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

Side by Side Diff: remoting/codec/video_encoder_vp8.cc

Issue 11470028: Move screen capturers to remoting/capturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « remoting/codec/video_encoder_verbatim.cc ('k') | remoting/codec/video_encoder_vp8_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « remoting/codec/video_encoder_verbatim.cc ('k') | remoting/codec/video_encoder_vp8_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698