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

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

Issue 24615005: Added AVFoundation Glue and Device Monitoring for Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: OVerhauled following mark@ review. Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
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, a 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
10 // file.
11
12 #ifndef MEDIA_VIDEO_CAPTURE_MAC_AVFOUNDATION_GLUE_H_
13 #define MEDIA_VIDEO_CAPTURE_MAC_AVFOUNDATION_GLUE_H_
14
15 #import <Foundation/Foundation.h>
16
17 @interface AVFoundationGlue : NSObject
18
19 // This method returns YES if the OS version supports AVFoundation and the
20 // AVFoundation bundle could be loaded correctly, or NO otherwise.
21 + (BOOL)isAVFoundationSupported;
22
23 + (NSBundle*)avFoundationBundle;
24
25 // Originally coming from AVCaptureDevice.h but in global namespace.
26 + (NSString *const)avCaptureDeviceWasConnectedNotification;
Mark Mentovai 2013/10/01 18:53:23 Be consistent with your spacing on the *s. You did
mcasas 2013/10/02 14:10:39 Done.
27 + (NSString *const)avCaptureDeviceWasDisconnectedNotification;
28
29 // Originally coming from AVMediaFormat.h but in global namespace.
30 + (NSString *const)avMediaTypeVideo;
31 + (NSString *const)avMediaTypeAudio;
32 + (NSString *const)avMediaTypeMuxed;
33
34 @end // @interface AVFoundationGlue
35
36 // Coming from AVCaptureDevice.h
37 @interface AVCaptureDeviceGlue : NSObject
38
39 + (NSArray*)devices;
40
41 + (BOOL)hasMediaType:(NSString *)mediaType forId:(id)device;
42
43 @end
44
45 #endif // MEDIA_VIDEO_CAPTURE_MAC_AVFOUNDATION_GLUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698