mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
Did some changing of how capture types/devices are handled internally, and how settings are changed. Moved to an event driven model instead of a timer. Frames are now processed as soon as the capture device/API provides them.
15 lines
302 B
Objective-C
15 lines
302 B
Objective-C
//
|
|
// AVCaptureDeviceFormat+CocoaSplitAdditions.h
|
|
// CocoaSplit
|
|
//
|
|
// Created by Zakk on 1/19/13.
|
|
// Copyright (c) 2013 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
@interface AVCaptureDeviceFormat (CocoaSplitAdditions)
|
|
|
|
@property (readonly) NSString *localizedName;
|
|
|
|
@end
|