-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathADLVideoFrame.h
54 lines (47 loc) · 2.62 KB
/
ADLVideoFrame.h
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
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, May 19, 2018 at 4:51:44 PM Eastern Daylight Time
* Operating System: Version 10.2 (Build 14C92)
* Image Source: /var/containers/Bundle/Application/7AB1B6B1-534C-4BF9-A7EB-BE2BD4C13043/Snapchat.app/Snapchat
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
@class NSData;
@interface ADLVideoFrame : NSObject {
int _width;
int _height;
int _stride0;
int _stride1;
int _stride2;
long long _format;
NSData* _plane0;
NSData* _plane1;
NSData* _plane2;
long long _pts;
long long _nativeBuffer;
}
@property (nonatomic,readonly) long long format; //@synthesize format=_format - In the implementation block
@property (nonatomic,readonly) int width; //@synthesize width=_width - In the implementation block
@property (nonatomic,readonly) int height; //@synthesize height=_height - In the implementation block
@property (nonatomic,readonly) int stride0; //@synthesize stride0=_stride0 - In the implementation block
@property (nonatomic,readonly) int stride1; //@synthesize stride1=_stride1 - In the implementation block
@property (nonatomic,readonly) int stride2; //@synthesize stride2=_stride2 - In the implementation block
@property (nonatomic,readonly) NSData * plane0; //@synthesize plane0=_plane0 - In the implementation block
@property (nonatomic,readonly) NSData * plane1; //@synthesize plane1=_plane1 - In the implementation block
@property (nonatomic,readonly) NSData * plane2; //@synthesize plane2=_plane2 - In the implementation block
@property (nonatomic,readonly) long long pts; //@synthesize pts=_pts - In the implementation block
@property (nonatomic,readonly) long long nativeBuffer; //@synthesize nativeBuffer=_nativeBuffer - In the implementation block
+(id)VideoFrameWithFormat:(long long)arg1 width:(int)arg2 height:(int)arg3 stride0:(int)arg4 stride1:(int)arg5 stride2:(int)arg6 plane0:(id)arg7 plane1:(id)arg8 plane2:(id)arg9 pts:(long long)arg10 nativeBuffer:(long long)arg11 ;
-(id)initWithFormat:(long long)arg1 width:(int)arg2 height:(int)arg3 stride0:(int)arg4 stride1:(int)arg5 stride2:(int)arg6 plane0:(id)arg7 plane1:(id)arg8 plane2:(id)arg9 pts:(long long)arg10 nativeBuffer:(long long)arg11 ;
-(int)stride0;
-(int)stride1;
-(int)stride2;
-(NSData *)plane0;
-(NSData *)plane1;
-(NSData *)plane2;
-(long long)nativeBuffer;
-(id)description;
-(long long)format;
-(int)width;
-(int)height;
-(long long)pts;
@end