| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "content/browser/media/capture/desktop_capture_device.h" | 5 #include "content/browser/media/capture/desktop_capture_device.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/synchronization/waitable_event.h" | 10 #include "base/synchronization/waitable_event.h" |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 const uint8_t kFakePixelValueFirst = 2; | 52 const uint8_t kFakePixelValueFirst = 2; |
| 53 | 53 |
| 54 class MockDeviceClient : public media::VideoCaptureDevice::Client { | 54 class MockDeviceClient : public media::VideoCaptureDevice::Client { |
| 55 public: | 55 public: |
| 56 MOCK_METHOD5(OnIncomingCapturedData, | 56 MOCK_METHOD5(OnIncomingCapturedData, |
| 57 void(const uint8* data, | 57 void(const uint8* data, |
| 58 int length, | 58 int length, |
| 59 const media::VideoCaptureFormat& frame_format, | 59 const media::VideoCaptureFormat& frame_format, |
| 60 int rotation, | 60 int rotation, |
| 61 const base::TimeTicks& timestamp)); | 61 const base::TimeTicks& timestamp)); |
| 62 MOCK_METHOD9(OnIncomingCapturedYuvData, | |
| 63 void (const uint8* y_data, | |
| 64 const uint8* u_data, | |
| 65 const uint8* v_data, | |
| 66 size_t y_stride, | |
| 67 size_t u_stride, | |
| 68 size_t v_stride, | |
| 69 const media::VideoCaptureFormat& frame_format, | |
| 70 int clockwise_rotation, | |
| 71 const base::TimeTicks& timestamp)); | |
| 72 MOCK_METHOD2(ReserveOutputBuffer, | 62 MOCK_METHOD2(ReserveOutputBuffer, |
| 73 scoped_refptr<Buffer>(media::VideoFrame::Format format, | 63 scoped_refptr<Buffer>(media::VideoFrame::Format format, |
| 74 const gfx::Size& dimensions)); | 64 const gfx::Size& dimensions)); |
| 75 MOCK_METHOD3(OnIncomingCapturedVideoFrame, | 65 MOCK_METHOD3(OnIncomingCapturedVideoFrame, |
| 76 void(const scoped_refptr<Buffer>& buffer, | 66 void(const scoped_refptr<Buffer>& buffer, |
| 77 const scoped_refptr<media::VideoFrame>& frame, | 67 const scoped_refptr<media::VideoFrame>& frame, |
| 78 const base::TimeTicks& timestamp)); | 68 const base::TimeTicks& timestamp)); |
| 79 MOCK_METHOD1(OnError, void(const std::string& reason)); | 69 MOCK_METHOD1(OnError, void(const std::string& reason)); |
| 80 }; | 70 }; |
| 81 | 71 |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 frame_size); | 412 frame_size); |
| 423 for (int i = 0; i < output_frame_->size().height(); ++i) { | 413 for (int i = 0; i < output_frame_->size().height(); ++i) { |
| 424 EXPECT_EQ(0, | 414 EXPECT_EQ(0, |
| 425 memcmp(inverted_frame->data() + i * inverted_frame->stride(), | 415 memcmp(inverted_frame->data() + i * inverted_frame->stride(), |
| 426 output_frame_->data() + i * output_frame_->stride(), | 416 output_frame_->data() + i * output_frame_->stride(), |
| 427 output_frame_->stride())); | 417 output_frame_->stride())); |
| 428 } | 418 } |
| 429 } | 419 } |
| 430 | 420 |
| 431 } // namespace content | 421 } // namespace content |
| OLD | NEW |