PublishController.h 1.26 KB
//
//  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