// // RootViewController.h // AnyChatCallCenter // // Created by alex on 14-1-27. // Copyright (c) 2014年 GuangZhou BaiRui NetWork Technology Co.,Ltd. All rights reserved. // #import #import "AppDelegate.h" #import #import "UserEntity.h" #import #import "MZTimerLabel.h" #import "ACVideoAlertView.h" #import "ACBaseViewController.h" @interface VideoViewController : ACBaseViewController /** 用户信息 */ @property (strong, nonatomic) UserEntity *theUserEntity; /** 视频规格 */ @property (strong, nonatomic) DeviceVideoConfigModel *brModel; /** 视频的设备对象 */ @property(nonatomic, strong) DeviceModel * device; /** 此次视频通话的id */ @property(nonatomic, strong) NSString * video_id; /** 是否是对方拨打 默认是 NO */ @property (assign, nonatomic) BOOL isReceiveCall; /** 0: 视频 1:语音 */ @property (assign, nonatomic) NSInteger callType; /** 通话时长 */ @property (nonatomic) int callDuration; @property (weak, nonatomic) IBOutlet UILabel *theVideoTimeLab; /** 启动视频通话 */ -(void) StartVideoChat:(int) userid; /** 打开远程视频 */ -(void)openRemoteView; @end