PublishController.h
1.26 KB
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
//
// PublishController.h
// RTMPiOSDemo
//
// Created by 蓝鲸 on 16/4/1.
// Copyright © 2016年 tencent. All rights reserved.
//
#import <UIKit/UIKit.h>
//#import <AVFoundation/AVFoundation.h>
#import "TXLivePush.h"
@interface PublishController : UIViewController
{
BOOL _publish_switch;
BOOL _hardware_switch;
BOOL _log_switch;
BOOL _camera_switch;
int _beauty_level;
int _whitening_level;
int _hd_level;
BOOL _torch_switch;
UIButton* _btnPublish;
UIButton* _btnCamera;
UIButton* _btnBeauty;
UIButton* _btnHardware;
UIButton* _btnLog;
UIButton* _btnResolution;
UIButton* _btnTorch;
UIButton* _radioBtnHD;
UIButton* _radioBtnSD;
UIButton* _radioBtnAUTO;
UISlider* _sdBeauty;
UISlider* _sdWhitening;
UIView* _cover;
UIControl* _vBeauty;
UIControl* _vHD;
TXLivePush * _txLivePublisher;
UITextView* _statusView;
UITextView* _logViewEvt;
unsigned long long _startTime;
unsigned long long _lastTime;
//kuentest
NSString* _logMsg;
NSString* _tipsMsg;
NSString* _testPath;
}
@property (nonatomic, retain) UITextField* txtRtmpUrl;
@end