PlayController.h
940 Bytes
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
//
// PlayController.h
// RTMPiOSDemo
//
// Created by 蓝鲸 on 16/4/1.
// Copyright © 2016年 tencent. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TXLivePlayer.h"
#import <Foundation/Foundation.h>
#import <AVFoundation/AVFoundation.h>
@interface PlayController : UIViewController
{
TXLivePlayer * _txLivePlayer;
UITextView* _statusView;
UITextView* _logViewEvt;
unsigned long long _startTime;
unsigned long long _lastTime;
UIButton* _btnPlay;
UIView* _cover;
BOOL _screenPortrait;
BOOL _renderFillScreen;
BOOL _log_switch;
BOOL _play_switch;
AVCaptureSession * _VideoCaptureSession;
NSString* _logMsg;
NSString* _tipsMsg;
NSString* _testPath;
}
@property (nonatomic, retain) UITextField* txtRtmpUrl;
@end