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

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

Issue 1204843004: Revert of Video Capture: extract storage info from pixel format in VideoCaptureFormat. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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_aura.h" 5 #include "content/browser/media/capture/desktop_capture_device_aura.h"
6 6
7 #include "base/synchronization/waitable_event.h" 7 #include "base/synchronization/waitable_event.h"
8 #include "content/browser/browser_thread_impl.h" 8 #include "content/browser/browser_thread_impl.h"
9 #include "content/public/browser/desktop_media_id.h" 9 #include "content/public/browser/desktop_media_id.h"
10 #include "media/base/video_capture_types.h" 10 #include "media/base/video_capture_types.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 size_t v_stride, 50 size_t v_stride,
51 const media::VideoCaptureFormat& frame_format, 51 const media::VideoCaptureFormat& frame_format,
52 int clockwise_rotation, 52 int clockwise_rotation,
53 const base::TimeTicks& timestamp)); 53 const base::TimeTicks& timestamp));
54 MOCK_METHOD0(DoReserveOutputBuffer, void(void)); 54 MOCK_METHOD0(DoReserveOutputBuffer, void(void));
55 MOCK_METHOD0(DoOnIncomingCapturedBuffer, void(void)); 55 MOCK_METHOD0(DoOnIncomingCapturedBuffer, void(void));
56 MOCK_METHOD0(DoOnIncomingCapturedVideoFrame, void(void)); 56 MOCK_METHOD0(DoOnIncomingCapturedVideoFrame, void(void));
57 MOCK_METHOD1(OnError, void(const std::string& reason)); 57 MOCK_METHOD1(OnError, void(const std::string& reason));
58 58
59 // Trampoline methods to workaround GMOCK problems with scoped_ptr<>. 59 // Trampoline methods to workaround GMOCK problems with scoped_ptr<>.
60 scoped_ptr<Buffer> ReserveOutputBuffer( 60 scoped_ptr<Buffer> ReserveOutputBuffer(media::VideoPixelFormat format,
61 const gfx::Size& dimensions, 61 const gfx::Size& dimensions) override {
62 media::VideoPixelFormat format,
63 media::VideoPixelStorage storage) override {
64 EXPECT_TRUE((format == media::PIXEL_FORMAT_I420 &&
65 storage == media::PIXEL_STORAGE_CPU) ||
66 (format == media::PIXEL_FORMAT_ARGB &&
67 storage == media::PIXEL_STORAGE_TEXTURE));
68 DoReserveOutputBuffer(); 62 DoReserveOutputBuffer();
69 return scoped_ptr<Buffer>(); 63 return scoped_ptr<Buffer>();
70 } 64 }
71 void OnIncomingCapturedBuffer(scoped_ptr<Buffer> buffer, 65 void OnIncomingCapturedBuffer(scoped_ptr<Buffer> buffer,
72 const media::VideoCaptureFormat& frame_format, 66 const media::VideoCaptureFormat& frame_format,
73 const base::TimeTicks& timestamp) override { 67 const base::TimeTicks& timestamp) override {
74 DoOnIncomingCapturedBuffer(); 68 DoOnIncomingCapturedBuffer();
75 } 69 }
76 void OnIncomingCapturedVideoFrame( 70 void OnIncomingCapturedVideoFrame(
77 scoped_ptr<Buffer> buffer, 71 scoped_ptr<Buffer> buffer,
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 media::VideoCaptureParams capture_params; 139 media::VideoCaptureParams capture_params;
146 capture_params.requested_format.frame_size.SetSize(640, 480); 140 capture_params.requested_format.frame_size.SetSize(640, 480);
147 capture_params.requested_format.frame_rate = kFrameRate; 141 capture_params.requested_format.frame_rate = kFrameRate;
148 capture_params.requested_format.pixel_format = media::PIXEL_FORMAT_I420; 142 capture_params.requested_format.pixel_format = media::PIXEL_FORMAT_I420;
149 capture_device->AllocateAndStart(capture_params, client.Pass()); 143 capture_device->AllocateAndStart(capture_params, client.Pass());
150 capture_device->StopAndDeAllocate(); 144 capture_device->StopAndDeAllocate();
151 } 145 }
152 146
153 } // namespace 147 } // namespace
154 } // namespace content 148 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698