mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
5fbf2d7713
Add front camera support for Android Allow to change the active camera in-game
18 lines
421 B
Objective-C
18 lines
421 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;
|
|
|
|
- (int) checkPermission;
|
|
- (void) startVideo;
|
|
- (void) stopVideo;
|
|
|
|
@end
|