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 // AVFoundation API is only introduced in Mac OS X > 10.6, and there is only one
6 // build of Chromium, so the (potential) linking with AVFoundation has to happen
7 // in runtime. For this to be clean, an AVFoundationGlue class is defined to try
8 // and load these AVFoundation system libraries. If it succeeds, subsequent
9 // clients can use AVFoundation via the rest of the classes declared in this
12 #ifndef MEDIA_BASE_MAC_AVFOUNDATION_GLUE_H_
13 #define MEDIA_BASE_MAC_AVFOUNDATION_GLUE_H_
15 #import <Foundation/Foundation.h>
17 #include "base/basictypes.h"
18 #include "media/base/mac/coremedia_glue.h"
19 #include "media/base/media_export.h"
21 class MEDIA_EXPORT AVFoundationGlue
{
23 // This method returns true if the OS version supports AVFoundation and the
24 // AVFoundation bundle could be loaded correctly, or false otherwise.
25 static bool IsAVFoundationSupported();
27 static NSBundle
const* AVFoundationBundle();
29 // Originally coming from AVCaptureDevice.h but in global namespace.
30 static NSString
* AVCaptureDeviceWasConnectedNotification();
31 static NSString
* AVCaptureDeviceWasDisconnectedNotification();
33 // Originally coming from AVMediaFormat.h but in global namespace.
34 static NSString
* AVMediaTypeVideo();
35 static NSString
* AVMediaTypeAudio();
36 static NSString
* AVMediaTypeMuxed();
38 // Originally from AVCaptureSession.h but in global namespace.
39 static NSString
* AVCaptureSessionRuntimeErrorNotification();
40 static NSString
* AVCaptureSessionDidStopRunningNotification();
41 static NSString
* AVCaptureSessionErrorKey();
43 // Originally from AVVideoSettings.h but in global namespace.
44 static NSString
* AVVideoScalingModeKey();
45 static NSString
* AVVideoScalingModeResizeAspectFill();
47 static Class
AVCaptureSessionClass();
48 static Class
AVCaptureVideoDataOutputClass();
51 DISALLOW_IMPLICIT_CONSTRUCTORS(AVFoundationGlue
);
54 // Originally AVCaptureDevice and coming from AVCaptureDevice.h
56 @interface CrAVCaptureDevice
: NSObject
58 - (BOOL
)hasMediaType
:(NSString
*)mediaType
;
59 - (NSString
*)uniqueID
;
60 - (NSString
*)localizedName
;
63 - (int32_t)transportType
;
67 // Originally AVCaptureDeviceFormat and coming from AVCaptureDevice.h.
69 @interface CrAVCaptureDeviceFormat
: NSObject
71 - (CoreMediaGlue::CMFormatDescriptionRef
)formatDescription
;
72 - (NSArray
*)videoSupportedFrameRateRanges
;
76 // Originally AVFrameRateRange and coming from AVCaptureDevice.h.
78 @interface CrAVFrameRateRange
: NSObject
80 - (Float64
)maxFrameRate
;
85 @interface CrAVCaptureInput
// Originally from AVCaptureInput.h.
89 @interface CrAVCaptureOutput
// Originally from AVCaptureOutput.h.
92 // Originally AVCaptureSession and coming from AVCaptureSession.h.
94 @interface CrAVCaptureSession
: NSObject
97 - (void)addInput
:(CrAVCaptureInput
*)input
;
98 - (void)removeInput
:(CrAVCaptureInput
*)input
;
99 - (void)addOutput
:(CrAVCaptureOutput
*)output
;
100 - (void)removeOutput
:(CrAVCaptureOutput
*)output
;
102 - (void)startRunning
;
107 // Originally AVCaptureConnection and coming from AVCaptureSession.h.
109 @interface CrAVCaptureConnection
: NSObject
111 - (BOOL
)isVideoMinFrameDurationSupported
;
112 - (void)setVideoMinFrameDuration
:(CoreMediaGlue::CMTime
)minFrameRate
;
113 - (BOOL
)isVideoMaxFrameDurationSupported
;
114 - (void)setVideoMaxFrameDuration
:(CoreMediaGlue::CMTime
)maxFrameRate
;
118 // Originally AVCaptureDeviceInput and coming from AVCaptureInput.h.
120 @interface CrAVCaptureDeviceInput
: CrAVCaptureInput
124 // Originally AVCaptureVideoDataOutputSampleBufferDelegate from
125 // AVCaptureOutput.h.
126 @protocol CrAVCaptureVideoDataOutputSampleBufferDelegate
<NSObject
>
130 - (void)captureOutput
:(CrAVCaptureOutput
*)captureOutput
131 didOutputSampleBuffer
:(CoreMediaGlue::CMSampleBufferRef
)sampleBuffer
132 fromConnection
:(CrAVCaptureConnection
*)connection
;
136 // Originally AVCaptureVideoDataOutput and coming from AVCaptureOutput.h.
138 @interface CrAVCaptureVideoDataOutput
: CrAVCaptureOutput
140 - (oneway
void)release
;
141 - (void)setSampleBufferDelegate
:(id
)sampleBufferDelegate
142 queue
:(dispatch_queue_t
)sampleBufferCallbackQueue
;
144 - (void)setAlwaysDiscardsLateVideoFrames
:(BOOL
)flag
;
145 - (void)setVideoSettings
:(NSDictionary
*)videoSettings
;
146 - (NSDictionary
*)videoSettings
;
147 - (CrAVCaptureConnection
*)connectionWithMediaType
:(NSString
*)mediaType
;
151 // Class to provide access to class methods of AVCaptureDevice.
153 @interface AVCaptureDeviceGlue
: NSObject
157 + (CrAVCaptureDevice
*)deviceWithUniqueID
:(NSString
*)deviceUniqueID
;
161 // Class to provide access to class methods of AVCaptureDeviceInput.
163 @interface AVCaptureDeviceInputGlue
: NSObject
165 + (CrAVCaptureDeviceInput
*)deviceInputWithDevice
:(CrAVCaptureDevice
*)device
166 error
:(NSError
**)outError
;
170 #endif // MEDIA_BASE_MAC_AVFOUNDATION_GLUE_H_