| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "media/base/callback.h" | 6 #include "media/base/callback.h" |
| 7 #include "media/base/data_buffer.h" | 7 #include "media/base/data_buffer.h" |
| 8 #include "remoting/host/encoder_vp8.h" | 8 #include "remoting/host/encoder_vp8.h" |
| 9 | 9 |
| 10 extern "C" { | 10 extern "C" { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 void EncoderVp8::SetSize(int width, int height) { | 124 void EncoderVp8::SetSize(int width, int height) { |
| 125 width_ = width; | 125 width_ = width; |
| 126 height_ = height; | 126 height_ = height; |
| 127 } | 127 } |
| 128 | 128 |
| 129 void EncoderVp8::SetPixelFormat(PixelFormat pixel_format) { | 129 void EncoderVp8::SetPixelFormat(PixelFormat pixel_format) { |
| 130 pixel_format_ = pixel_format; | 130 pixel_format_ = pixel_format; |
| 131 } | 131 } |
| 132 | 132 |
| 133 } // namespace remoting | 133 } // namespace remoting |
| OLD | NEW |