zdk.objc
ZDKVideoCallInfo.h
1//
2// ZDKVideoCallInfo.h
3// ZDK
4//
5
6#ifndef ZDKVideoCallInfo_h
7#define ZDKVideoCallInfo_h
8
9#import <Foundation/Foundation.h>
10#import "ZDKAudioVideoCodecs.h"
11#import "ZDKOriginType.h"
12#import "ZDKZHandle.h"
13
14NS_ASSUME_NONNULL_BEGIN
15
17
22@property(nonatomic) long int threadID;
23
28@property(nonatomic) ZDKAudioVideoCodecs codec;
29
34@property(nonatomic) ZDKOriginType dir;
35
40@property(nonatomic) int width;
41
46@property(nonatomic) int height;
47
52@property(nonatomic) float fps;
53
62@property(nonatomic, readonly) BOOL outStarted;
63
72@property(nonatomic, readonly) BOOL incStarted;
73
82@property(nonatomic, readonly) BOOL anyStarted;
83
88@property(nonatomic) BOOL hangUpRequested;
89
94@property(nonatomic) BOOL hwdAccelerated;
95
100@property(nonatomic) BOOL answerWithVideo;
101
107-(void)start:(ZDKOriginType)dir value:(BOOL)value ;
108-(NSString*)handlesDescription;
109
110@end
111
112NS_ASSUME_NONNULL_END
113
114#endif
Definition: ZDKVideoCallInfo.h:16
int height
Sets the height of the frame.
Definition: ZDKVideoCallInfo.h:46
BOOL outStarted
Get the state of the outgoing video.
Definition: ZDKVideoCallInfo.h:62
int width
Sets the width of the frame.
Definition: ZDKVideoCallInfo.h:40
ZDKOriginType dir
Sets the direction of the video call.
Definition: ZDKVideoCallInfo.h:34
ZDKAudioVideoCodecs codec
Sets the codec used in the video call.
Definition: ZDKVideoCallInfo.h:28
long int threadID
Sets the thread id for the video call.
Definition: ZDKVideoCallInfo.h:22
BOOL hwdAccelerated
Sets the state of the hardware acceleration.
Definition: ZDKVideoCallInfo.h:94
BOOL incStarted
Get the state of the incoming video.
Definition: ZDKVideoCallInfo.h:72
BOOL answerWithVideo
Sets the state of answer with video.
Definition: ZDKVideoCallInfo.h:100
BOOL anyStarted
Get the state of the both direction of video.
Definition: ZDKVideoCallInfo.h:82
BOOL hangUpRequested
Sets the state of the hang up request.
Definition: ZDKVideoCallInfo.h:88
float fps
Sets the frames per second.
Definition: ZDKVideoCallInfo.h:52
Definition: ZDKZHandle.h:13