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

Side by Side Diff: content/browser/renderer_host/media/video_capture_manager_unittest.cc

Issue 2121043002: 16 bpp video stream capture, render and WebGL usage - Realsense R200 & SR300 support. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tests: cc, skcanvas_video_renderer, wrtcrecorder... Fake capture supports Y16. Created 4 years, 2 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Unit test for VideoCaptureManager. 5 // Unit test for VideoCaptureManager.
6 6
7 #include "content/browser/renderer_host/media/video_capture_manager.h" 7 #include "content/browser/renderer_host/media/video_capture_manager.h"
8 8
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 class MockFrameObserver : public VideoCaptureControllerEventHandler { 50 class MockFrameObserver : public VideoCaptureControllerEventHandler {
51 public: 51 public:
52 MOCK_METHOD1(OnError, void(VideoCaptureControllerID id)); 52 MOCK_METHOD1(OnError, void(VideoCaptureControllerID id));
53 53
54 void OnBufferCreated(VideoCaptureControllerID id, 54 void OnBufferCreated(VideoCaptureControllerID id,
55 base::SharedMemoryHandle handle, 55 base::SharedMemoryHandle handle,
56 int length, int buffer_id) override {} 56 int length, int buffer_id) override {}
57 void OnBufferCreated2(VideoCaptureControllerID id, 57 void OnBufferCreated2(VideoCaptureControllerID id,
58 const std::vector<gfx::GpuMemoryBufferHandle>& handles, 58 const std::vector<gfx::GpuMemoryBufferHandle>& handles,
59 const gfx::Size& size, 59 const gfx::Size& size,
60 media::VideoPixelFormat format,
60 int buffer_id) override {} 61 int buffer_id) override {}
61 void OnBufferDestroyed(VideoCaptureControllerID id, int buffer_id) override {} 62 void OnBufferDestroyed(VideoCaptureControllerID id, int buffer_id) override {}
62 void OnBufferReady(VideoCaptureControllerID id, 63 void OnBufferReady(VideoCaptureControllerID id,
63 int buffer_id, 64 int buffer_id,
64 const scoped_refptr<media::VideoFrame>& frame) override {} 65 const scoped_refptr<media::VideoFrame>& frame) override {}
65 void OnEnded(VideoCaptureControllerID id) override {} 66 void OnEnded(VideoCaptureControllerID id) override {}
66 67
67 void OnGotControllerCallback(VideoCaptureControllerID) {} 68 void OnGotControllerCallback(VideoCaptureControllerID) {}
68 }; 69 };
69 70
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 // Wait to check callbacks before removing the listener. 617 // Wait to check callbacks before removing the listener.
617 base::RunLoop().RunUntilIdle(); 618 base::RunLoop().RunUntilIdle();
618 vcm_->Unregister(); 619 vcm_->Unregister();
619 } 620 }
620 #endif 621 #endif
621 622
622 // TODO(mcasas): Add a test to check consolidation of the supported formats 623 // TODO(mcasas): Add a test to check consolidation of the supported formats
623 // provided by the device when http://crbug.com/323913 is closed. 624 // provided by the device when http://crbug.com/323913 is closed.
624 625
625 } // namespace content 626 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698