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)); |
62 MOCK_METHOD2(ReserveOutputBuffer, | 72 MOCK_METHOD2(ReserveOutputBuffer, |
63 scoped_refptr<Buffer>(media::VideoFrame::Format format, | 73 scoped_refptr<Buffer>(media::VideoFrame::Format format, |
64 const gfx::Size& dimensions)); | 74 const gfx::Size& dimensions)); |
65 MOCK_METHOD3(OnIncomingCapturedVideoFrame, | 75 MOCK_METHOD3(OnIncomingCapturedVideoFrame, |
66 void(const scoped_refptr<Buffer>& buffer, | 76 void(const scoped_refptr<Buffer>& buffer, |
67 const scoped_refptr<media::VideoFrame>& frame, | 77 const scoped_refptr<media::VideoFrame>& frame, |
68 const base::TimeTicks& timestamp)); | 78 const base::TimeTicks& timestamp)); |
69 MOCK_METHOD1(OnError, void(const std::string& reason)); | 79 MOCK_METHOD1(OnError, void(const std::string& reason)); |
70 }; | 80 }; |
71 | 81 |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 frame_size); | 422 frame_size); |
413 for (int i = 0; i < output_frame_->size().height(); ++i) { | 423 for (int i = 0; i < output_frame_->size().height(); ++i) { |
414 EXPECT_EQ(0, | 424 EXPECT_EQ(0, |
415 memcmp(inverted_frame->data() + i * inverted_frame->stride(), | 425 memcmp(inverted_frame->data() + i * inverted_frame->stride(), |
416 output_frame_->data() + i * output_frame_->stride(), | 426 output_frame_->data() + i * output_frame_->stride(), |
417 output_frame_->stride())); | 427 output_frame_->stride())); |
418 } | 428 } |
419 } | 429 } |
420 | 430 |
421 } // namespace content | 431 } // namespace content |
OLD | NEW |