forked from ksvc/KSYLive_iOS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKSYGPUPipStreamerKit.h
93 lines (83 loc) · 2.73 KB
/
KSYGPUPipStreamerKit.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
// KSYGPUPipStreamerKit.h
// KSYStreamer
//
// Created by jaingdong on 28/12/16.
// Copyright © 2016 ksyun. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <AVFoundation/AVFoundation.h>
#import <libksygpulive/KSYGPUStreamerKit.h>
@interface KSYGPUPipStreamerKit : KSYGPUStreamerKit
/**
@abstract 画中画通道
*/
@property (nonatomic, readonly) int pipTrack;
/**
@abstract 背景图片图层
*/
@property (nonatomic, readonly) NSInteger bgPicLayer;
/**
@abstract 画中画图层
*/
@property (nonatomic, readonly) NSInteger pipLayer;
/**
@abstract 开启画中画
@param playerUrl:播放视频的url
@param bgUrl:背景图片的url
*/
-(void)startPipWithPlayerUrl:( NSURL* _Nullable )playerUrl
bgPic:( NSURL* _Nullable )bgUrl;
/**
@abstract 停止画中画
**/
-(void)stopPip;
/**
@abstract 背景播放器
*/
@property (nonatomic, readonly) KSYMoviePlayerController * _Nonnull player;
/**
@abstract 背景图片
*/
@property (nonatomic, strong) GPUImagePicture * _Nullable bgPic;
/**
@abstract 画中画图像输入
@discussion 用于衔接画中画播放器和图像混合器 (KSYPicPipLayer = 1)
@discussion 主要用于将图像的原始数据上传到GPU
*/
@property (nonatomic, readonly)KSYGPUPicInput * _Nonnull yuvInput;
/**
@abstract 背景图片的位置和大小
@discussion 位置和大小的单位为预览视图的百分比, 左上角为(0,0), 右下角为(1.0, 1.0)
@discussion 如果宽为0, 则根据图像的宽高比, 和设置的高度比例, 计算得到宽度的比例
@discussion 如果高为0, 方法同上
*/
@property (nonatomic, readwrite) CGRect bgPicRect;
/**
@abstract 画中画的位置和大小
@discussion 位置和大小的单位为预览视图的百分比, 左上角为(0,0), 右下角为(1.0, 1.0)
@discussion 如果宽为0, 则根据图像的宽高比, 和设置的高度比例, 计算得到宽度的比例
@discussion 如果高为0, 方法同上
*/
@property (nonatomic, readwrite) CGRect pipRect;
/**
@abstract 相机的位置和大小
@discussion 位置和大小的单位为预览视图的百分比, 左上角为(0,0), 右下角为(1.0, 1.0)
@discussion 如果宽为0, 则根据图像的宽高比, 和设置的高度比例, 计算得到宽度的比例
@discussion 如果高为0, 方法同上
*/
@property (nonatomic, readwrite) CGRect cameraRect;
/**
@abstract 获取状态对应的字符串
@param stat 状态
*/
- (NSString*_Nonnull) getPipStateName : (MPMoviePlaybackState) stat;
/**
@abstract 获取当前状态对应的字符串
*/
- (NSString*_Nonnull) getCurPipStateName;
/**
@abstract 播放状态
*/
@property (nonatomic, readonly) MPMoviePlaybackState PipState;
@end