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

Side by Side Diff: media/capture/video/mac/video_capture_device_decklink_mac.h

Issue 2068763002: Re-Reland: Make media/capture gn and gyps produce components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable warning 4267 in Win capture.gyp (probs. lost in the previous relanding). Rebase Created 4 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // Implementation of VideoCaptureDevice class for Blackmagic video capture 5 // Implementation of VideoCaptureDevice class for Blackmagic video capture
6 // devices by using the DeckLink SDK. 6 // devices by using the DeckLink SDK.
7 7
8 #ifndef MEDIA_CAPTURE_VIDEO_MAC_VIDEO_CAPTURE_DEVICE_DECKLINK_MAC_H_ 8 #ifndef MEDIA_CAPTURE_VIDEO_MAC_VIDEO_CAPTURE_DEVICE_DECKLINK_MAC_H_
9 #define MEDIA_CAPTURE_VIDEO_MAC_VIDEO_CAPTURE_DEVICE_DECKLINK_MAC_H_ 9 #define MEDIA_CAPTURE_VIDEO_MAC_VIDEO_CAPTURE_DEVICE_DECKLINK_MAC_H_
10 10
(...skipping 14 matching lines...) Expand all
25 namespace tracked_objects { 25 namespace tracked_objects {
26 class Location; 26 class Location;
27 } // namespace tracked_objects 27 } // namespace tracked_objects
28 28
29 namespace media { 29 namespace media {
30 30
31 // Extension of VideoCaptureDevice to create and manipulate Blackmagic devices. 31 // Extension of VideoCaptureDevice to create and manipulate Blackmagic devices.
32 // Creates a reference counted |decklink_capture_delegate_| that does all the 32 // Creates a reference counted |decklink_capture_delegate_| that does all the
33 // DeckLink SDK configuration and capture work while holding a weak reference to 33 // DeckLink SDK configuration and capture work while holding a weak reference to
34 // us for sending back frames, logs and error messages. 34 // us for sending back frames, logs and error messages.
35 class MEDIA_EXPORT VideoCaptureDeviceDeckLinkMac : public VideoCaptureDevice { 35 class CAPTURE_EXPORT VideoCaptureDeviceDeckLinkMac : public VideoCaptureDevice {
36 public: 36 public:
37 // Gets the names of all DeckLink video capture devices connected to this 37 // Gets the names of all DeckLink video capture devices connected to this
38 // computer, as enumerated by the DeckLink SDK. To allow the user to choose 38 // computer, as enumerated by the DeckLink SDK. To allow the user to choose
39 // exactly which capture format she wants, we enumerate as many cameras as 39 // exactly which capture format she wants, we enumerate as many cameras as
40 // capture formats. 40 // capture formats.
41 static void EnumerateDevices(VideoCaptureDevice::Names* device_names); 41 static void EnumerateDevices(VideoCaptureDevice::Names* device_names);
42 42
43 // Gets the supported formats of a particular device attached to the system, 43 // Gets the supported formats of a particular device attached to the system,
44 // identified by |device|. Formats are retrieved from the DeckLink SDK. 44 // identified by |device|. Formats are retrieved from the DeckLink SDK.
45 // Following the enumeration, each camera will have only one capability. 45 // Following the enumeration, each camera will have only one capability.
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 // Checks for Device (a.k.a. Audio) thread. 84 // Checks for Device (a.k.a. Audio) thread.
85 base::ThreadChecker thread_checker_; 85 base::ThreadChecker thread_checker_;
86 86
87 DISALLOW_COPY_AND_ASSIGN(VideoCaptureDeviceDeckLinkMac); 87 DISALLOW_COPY_AND_ASSIGN(VideoCaptureDeviceDeckLinkMac);
88 }; 88 };
89 89
90 } // namespace media 90 } // namespace media
91 91
92 #endif // MEDIA_CAPTURE_VIDEO_MAC_VIDEO_CAPTURE_DEVICE_DECKLINK_MAC_H_ 92 #endif // MEDIA_CAPTURE_VIDEO_MAC_VIDEO_CAPTURE_DEVICE_DECKLINK_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698