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

Side by Side Diff: content/browser/media/capture/desktop_capture_device_unittest.cc

Issue 1064703002: VideoCaptureBufferPool: Refactor to allow support of non-ShMem backed buffers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: miu@s nits Created 5 years, 8 months 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
OLDNEW
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_METHOD2(ReserveOutputBuffer,
73 scoped_refptr<Buffer>(media::VideoFrame::Format format, 73 scoped_refptr<Buffer>(media::VideoPixelFormat format,
74 const gfx::Size& dimensions)); 74 const gfx::Size& dimensions));
75 MOCK_METHOD3(OnIncomingCapturedVideoFrame, 75 MOCK_METHOD3(OnIncomingCapturedVideoFrame,
76 void(const scoped_refptr<Buffer>& buffer, 76 void(const scoped_refptr<Buffer>& buffer,
77 const scoped_refptr<media::VideoFrame>& frame, 77 const scoped_refptr<media::VideoFrame>& frame,
78 const base::TimeTicks& timestamp)); 78 const base::TimeTicks& timestamp));
79 MOCK_METHOD1(OnError, void(const std::string& reason)); 79 MOCK_METHOD1(OnError, void(const std::string& reason));
80 }; 80 };
81 81
82 // Creates a DesktopFrame that has the first pixel bytes set to 82 // Creates a DesktopFrame that has the first pixel bytes set to
83 // kFakePixelValueFirst, and the rest of the bytes set to kFakePixelValue, for 83 // kFakePixelValueFirst, and the rest of the bytes set to kFakePixelValue, for
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 frame_size); 422 frame_size);
423 for (int i = 0; i < output_frame_->size().height(); ++i) { 423 for (int i = 0; i < output_frame_->size().height(); ++i) {
424 EXPECT_EQ(0, 424 EXPECT_EQ(0,
425 memcmp(inverted_frame->data() + i * inverted_frame->stride(), 425 memcmp(inverted_frame->data() + i * inverted_frame->stride(),
426 output_frame_->data() + i * output_frame_->stride(), 426 output_frame_->data() + i * output_frame_->stride(),
427 output_frame_->stride())); 427 output_frame_->stride()));
428 } 428 }
429 } 429 }
430 430
431 } // namespace content 431 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698