mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
58b04ef77b
Allow the use of different resolutions (win/android/iOS)
18 lines
445 B
Objective-C
18 lines
445 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
@protocol CameraFrameDelegate <NSObject>
|
|
@required
|
|
- (void) PushCameraImageIOS:(long long)len buffer:(unsigned char*)data;
|
|
@end
|
|
|
|
@interface CameraHelper : NSObject<AVCaptureVideoDataOutputSampleBufferDelegate>
|
|
|
|
@property (nonatomic, strong) id<CameraFrameDelegate> delegate;
|
|
|
|
- (void) setCameraSize:(int)width h:(int)height;
|
|
- (void) startVideo;
|
|
- (void) stopVideo;
|
|
|
|
@end
|