JLChen
2021-11-04 1443556e9ccb1a19ed8e6710c16c8adc4d4f4fb3
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
//
//  Copyright © 2020 dahua. All rights reserved.
//
 
#import "LCVideotapePlayerPersenter.h"
#import <LCOpenSDKDynamic/LCOpenSDK/LCOpenSDK_Download.h>
 
 
NS_ASSUME_NONNULL_BEGIN
 
@interface LCVideotapePlayerPersenter (Control)
 
//全屏
- (void)onFullScreen:(LCButton *)btn;
 
//点击播放速度
- (void)onSpeed:(LCButton *)btn;
 
//点击音频
- (void)onAudio:(LCButton *)btn;
 
//点击对讲
- (void)onPlay:(nullable LCButton *)btn;
 
//点击抓图
- (void)onSnap:(LCButton *)btn;
 
//点击录制
- (void)onRecording:(LCButton *)btn;
 
/**
 点击锁定全屏
 */
-(void)onLockFullScreen:(LCButton *)btn;
 
//点击下载
- (void)onDownload:(LCButton *)btn;
 
/**
 改变进度
 */
-(void)onChangeOffset:(NSInteger)offsetTime;
 
-(void)startPlay:(NSInteger)offsetTime;
//停止播放
- (void)stopPlay;
 
@end
 
NS_ASSUME_NONNULL_END