forked from aricloverEXTRA/YouPiP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAVKit-Header.h
More file actions
19 lines (16 loc) · 815 Bytes
/
Copy pathAVKit-Header.h
File metadata and controls
19 lines (16 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import <AVFoundation/AVFoundation.h>
#import <AVKit/AVKit.h>
#import <UIKit/UIKit.h>
@interface AVPlayerController : UIResponder
@end
@interface AVPictureInPictureControllerContentSource (Private)
@property (assign) bool hasInitialRenderSize;
@end
@interface AVPictureInPictureController (Private)
@property (nonatomic, strong) AVPictureInPictureControllerContentSource *contentSource API_AVAILABLE(ios(15.0));
@property (assign, nonatomic) BOOL canStartAutomaticallyWhenEnteringBackground API_AVAILABLE(ios(14.0));
- (instancetype)initWithContentSource:(AVPictureInPictureControllerContentSource *)contentSource API_AVAILABLE(ios(15.0));
- (void)sampleBufferDisplayLayerRenderSizeDidChangeToSize:(CGSize)renderSize;
- (void)sampleBufferDisplayLayerDidAppear;
- (void)sampleBufferDisplayLayerDidDisappear;
@end