linux_aura: Disable the plugin install infobar.
[chromium-blink-merge.git] / media / video / capture / mac / video_capture_device_avfoundation_mac.h
blob1c607b1918b8358b46bd49f9d0deb0d8a77e5931
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
3 // found in the LICENSE file.
5 #ifndef MEDIA_VIDEO_CAPTURE_MAC_VIDEO_CAPTURE_DEVICE_AVFOUNDATION_MAC_H_
6 #define MEDIA_VIDEO_CAPTURE_MAC_VIDEO_CAPTURE_DEVICE_AVFOUNDATION_MAC_H_
8 #import <Foundation/Foundation.h>
10 #import "base/mac/scoped_nsobject.h"
11 #include "base/synchronization/lock.h"
12 #include "base/threading/thread_checker.h"
13 #include "media/video/capture/video_capture_device.h"
14 #include "media/video/capture/video_capture_types.h"
15 #import "media/video/capture/mac/avfoundation_glue.h"
16 #import "media/video/capture/mac/platform_video_capturing_mac.h"
18 namespace media {
19 class VideoCaptureDeviceMac;
22 @class CrAVCaptureDevice;
23 @class CrAVCaptureSession;
24 @class CrAVCaptureVideoDataOutput;
26 // Class used by VideoCaptureDeviceMac (VCDM) for video capture using
27 // AVFoundation API. This class lives inside the thread created by its owner
28 // VCDM.
30 // * Clients (VCDM) should call +deviceNames to fetch the list of devices
31 // available in the system; this method returns the list of device names that
32 // have to be used with -setCaptureDevice:.
33 // * Previous to any use, clients (VCDM) must call -initWithFrameReceiver: to
34 // initialise an object of this class and register a |frameReceiver_|.
35 // * Frame receiver registration or removal can also happen via explicit call
36 // to -setFrameReceiver:. Re-registrations are safe and allowed, even during
37 // capture using this method.
38 // * Method -setCaptureDevice: must be called at least once with a device
39 // identifier from +deviceNames. Creates all the necessary AVFoundation
40 // objects on first call; it connects them ready for capture every time.
41 // This method should not be called during capture (i.e. between
42 // -startCapture and -stopCapture).
43 // * -setCaptureWidth:height:frameRate: is called if a resolution or frame rate
44 // different than the by default one set by -setCaptureDevice: is needed.
45 // This method should not be called during capture. This method must be
46 // called after -setCaptureDevice:.
47 // * -startCapture registers the notification listeners and starts the
48 // capture. The capture can be stop using -stopCapture. The capture can be
49 // restarted and restoped multiple times, reconfiguring or not the device in
50 // between.
51 // * -setCaptureDevice can be called with a |nil| value, case in which it stops
52 // the capture and disconnects the library objects. This step is not
53 // necessary.
54 // * Deallocation of the library objects happens gracefully on destruction of
55 // the VideoCaptureDeviceAVFoundation object.
58 @interface VideoCaptureDeviceAVFoundation
59 : NSObject<CrAVCaptureVideoDataOutputSampleBufferDelegate,
60 PlatformVideoCapturingMac> {
61 @private
62 // The following attributes are set via -setCaptureHeight:width:frameRate:.
63 int frameWidth_;
64 int frameHeight_;
65 int frameRate_;
67 base::Lock lock_; // Protects concurrent setting and using of frameReceiver_.
68 media::VideoCaptureDeviceMac* frameReceiver_; // weak.
70 base::scoped_nsobject<CrAVCaptureSession> captureSession_;
72 // |captureDevice_| is an object coming from AVFoundation, used only to be
73 // plugged in |captureDeviceInput_| and to query for session preset support.
74 CrAVCaptureDevice* captureDevice_;
75 // |captureDeviceInput_| is owned by |captureSession_|.
76 CrAVCaptureDeviceInput* captureDeviceInput_;
77 base::scoped_nsobject<CrAVCaptureVideoDataOutput> captureVideoDataOutput_;
79 base::ThreadChecker main_thread_checker_;
80 base::ThreadChecker callback_thread_checker_;
83 // Returns a dictionary of capture devices with friendly name and unique id.
84 + (NSDictionary*)deviceNames;
86 // Retrieve the capture supported formats for a given device |name|.
87 + (void)getDevice:(const media::VideoCaptureDevice::Name&)name
88 supportedFormats:(media::VideoCaptureFormats*)formats;
90 // Initializes the instance and the underlying capture session and registers the
91 // frame receiver.
92 - (id)initWithFrameReceiver:(media::VideoCaptureDeviceMac*)frameReceiver;
94 // Sets the frame receiver.
95 - (void)setFrameReceiver:(media::VideoCaptureDeviceMac*)frameReceiver;
97 // Sets which capture device to use by name, retrieved via |deviceNames|. Once
98 // the deviceId is known, the library objects are created if needed and
99 // connected for the capture, and a by default resolution is set. If deviceId is
100 // nil, then the eventual capture is stopped and library objects are
101 // disconnected. Returns YES on sucess, NO otherwise. This method should not be
102 // called during capture.
103 - (BOOL)setCaptureDevice:(NSString*)deviceId;
105 // Configures the capture properties for the capture session and the video data
106 // output; this means it MUST be called after setCaptureDevice:. Return YES on
107 // success, else NO.
108 - (BOOL)setCaptureHeight:(int)height width:(int)width frameRate:(int)frameRate;
110 // Starts video capturing and register the notification listeners. Must be
111 // called after setCaptureDevice:, and, eventually, also after
112 // setCaptureHeight:width:frameRate:. Returns YES on sucess, NO otherwise.
113 - (BOOL)startCapture;
115 // Stops video capturing and stops listening to notifications.
116 - (void)stopCapture;
118 @end
120 #endif // MEDIA_VIDEO_CAPTURE_MAC_VIDEO_CAPTURE_DEVICE_AVFOUNDATION_MAC_H_