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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 MOCK_METHOD9(OnIncomingCapturedYuvData, | 62 MOCK_METHOD9(OnIncomingCapturedYuvData, |
63 void (const uint8* y_data, | 63 void (const uint8* y_data, |
64 const uint8* u_data, | 64 const uint8* u_data, |
65 const uint8* v_data, | 65 const uint8* v_data, |
66 size_t y_stride, | 66 size_t y_stride, |
67 size_t u_stride, | 67 size_t u_stride, |
68 size_t v_stride, | 68 size_t v_stride, |
69 const media::VideoCaptureFormat& frame_format, | 69 const media::VideoCaptureFormat& frame_format, |
70 int clockwise_rotation, | 70 int clockwise_rotation, |
71 const base::TimeTicks& timestamp)); | 71 const base::TimeTicks& timestamp)); |
72 MOCK_METHOD2(ReserveOutputBuffer, | 72 MOCK_METHOD1(ReserveOutputBuffer, |
73 scoped_refptr<Buffer>(media::VideoFrame::Format format, | 73 scoped_refptr<Buffer>(const media::VideoCaptureFormat& format)); |
74 const gfx::Size& dimensions)); | |
75 MOCK_METHOD3(OnIncomingCapturedVideoFrame, | 74 MOCK_METHOD3(OnIncomingCapturedVideoFrame, |
76 void(const scoped_refptr<Buffer>& buffer, | 75 void(const scoped_refptr<Buffer>& buffer, |
77 const scoped_refptr<media::VideoFrame>& frame, | 76 const scoped_refptr<media::VideoFrame>& frame, |
78 const base::TimeTicks& timestamp)); | 77 const base::TimeTicks& timestamp)); |
79 MOCK_METHOD1(OnError, void(const std::string& reason)); | 78 MOCK_METHOD1(OnError, void(const std::string& reason)); |
80 }; | 79 }; |
81 | 80 |
82 // Creates a DesktopFrame that has the first pixel bytes set to | 81 // Creates a DesktopFrame that has the first pixel bytes set to |
83 // kFakePixelValueFirst, and the rest of the bytes set to kFakePixelValue, for | 82 // kFakePixelValueFirst, and the rest of the bytes set to kFakePixelValue, for |
84 // UnpackedFrame and InvertedFrame verification. | 83 // UnpackedFrame and InvertedFrame verification. |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 frame_size); | 421 frame_size); |
423 for (int i = 0; i < output_frame_->size().height(); ++i) { | 422 for (int i = 0; i < output_frame_->size().height(); ++i) { |
424 EXPECT_EQ(0, | 423 EXPECT_EQ(0, |
425 memcmp(inverted_frame->data() + i * inverted_frame->stride(), | 424 memcmp(inverted_frame->data() + i * inverted_frame->stride(), |
426 output_frame_->data() + i * output_frame_->stride(), | 425 output_frame_->data() + i * output_frame_->stride(), |
427 output_frame_->stride())); | 426 output_frame_->stride())); |
428 } | 427 } |
429 } | 428 } |
430 | 429 |
431 } // namespace content | 430 } // namespace content |
OLD | NEW |