forked from wjhwsh/VideoPlayer-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVideoPicture.m
84 lines (68 loc) · 1.52 KB
/
VideoPicture.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//
// VideoPicture.m
// FFmpegPlayTest
//
// Created by Jack on 12/4/12.
// Copyright (c) 2012 Jack. All rights reserved.
//
#import "VideoPicture.h"
#pragma mark - VideoPicture
//#########################################################################
@interface VideoPicture()
{
AVPicture _avPicture;
uint8_t* _pData;
}
@end
@implementation VideoPicture
@synthesize data=_data,
width=_width,
height=_height,
pts=_pts;
- (id) initWithPixelFormat: (PixelFormat) format
width: (int) width
height: (int) height
{
self = [super init];
if (self) {
_width=width;
_height=height;
int dataSize = avpicture_get_size(format, _width, _height);
_pData = av_malloc(dataSize);
_data = [NSMutableData dataWithBytesNoCopy:(void*)_pData
length:dataSize
freeWhenDone:NO];
//JLogPic(@"Picture data length: %d", [_data length]);
avpicture_fill(&_avPicture, _pData, format,_width,_height);
}
return self;
}
- (const void * const) pdata
{
return _pData;
}
- (AVPicture* const) avPicture
{
return &_avPicture;
}
- (void)dealloc
{
av_free(_pData);
_pData = 0;
[super dealloc];
}
@end
@implementation VideoPicture (YUVPicture)
- (const void * const) yData
{
return _avPicture.data[0];
}
- (const void * const) uData
{
return _avPicture.data[1];
}
- (const void * const) vData
{
return _avPicture.data[2];
}
@end