-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCVPPixelBuffer.m
63 lines (47 loc) · 868 Bytes
/
CVPPixelBuffer.m
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
54
55
56
57
58
59
60
61
62
63
#import "CVPPixelBuffer.h"
@interface CVPPixelBuffer ()
{
@private
CVPixelBufferRef buffer;
}
@end
@implementation CVPPixelBuffer
+ (instancetype)bufferWithCVPixelBuffer:(CVPixelBufferRef)buffer
{
return [[self alloc] initWithCVPixelBuffer:buffer];
}
- (instancetype)initWithCVPixelBuffer:(CVPixelBufferRef)buffer_
{
if (buffer_ == nil)
{
return nil;
}
self = [super init];
if(self != nil)
{
buffer = buffer_;
CVPixelBufferRetain(buffer);
}
return self;
}
- (void)dealloc
{
CVPixelBufferRelease(buffer);
}
- (CVPixelBufferRef)CVPixelBuffer
{
return buffer;
}
- (NSString *)description
{
return [NSString stringWithFormat:@"<%@: %p %@>", self.class, self, buffer];
}
@end
#if COREVIDEO_SUPPORTS_IOSURFACE
@implementation CVPPixelBuffer (IOSurface)
- (IOSurfaceRef)IOSurface
{
return CVPixelBufferGetIOSurface(buffer);
}
@end
#endif