File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RTC_OBJC_EXPORT
31
31
dstV : (uint8_t *)dstV
32
32
dstStrideV : (int )dstStrideV
33
33
width : (int )width
34
- width : (int )height
34
+ height : (int )height
35
35
mode : (RTCVideoRotation)mode ;
36
36
37
37
+ (int )I420ToNV12 : (const uint8_t *)srcY
@@ -45,7 +45,7 @@ RTC_OBJC_EXPORT
45
45
dstUV : (uint8_t *)dstUV
46
46
dstStrideUV : (int )dstStrideUV
47
47
width : (int )width
48
- width : (int )height ;
48
+ height : (int )height ;
49
49
50
50
+ (int )I420ToNV21 : (const uint8_t *)srcY
51
51
srcStrideY : (int )srcStrideY
@@ -58,7 +58,7 @@ RTC_OBJC_EXPORT
58
58
dstUV : (uint8_t *)dstUV
59
59
dstStrideUV : (int )dstStrideUV
60
60
width : (int )width
61
- width : (int )height ;
61
+ height : (int )height ;
62
62
63
63
+ (int )I420ToARGB : (const uint8_t *)srcY
64
64
srcStrideY : (int )srcStrideY
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ + (void)I420Rotate:(const uint8_t*)srcY
27
27
dstV : (uint8_t *)dstV
28
28
dstStrideV : (int )dstStrideV
29
29
width : (int )width
30
- width : (int )height
30
+ height : (int )height
31
31
mode : (RTCVideoRotation)mode {
32
32
libyuv::I420Rotate (srcY,
33
33
srcStrideY,
@@ -57,7 +57,7 @@ + (int)I420ToNV12:(const uint8_t*)srcY
57
57
dstUV : (uint8_t *)dstUV
58
58
dstStrideUV : (int )dstStrideUV
59
59
width : (int )width
60
- width : (int )height {
60
+ height : (int )height {
61
61
return libyuv::I420ToNV12 (srcY,
62
62
srcStrideY,
63
63
srcU,
@@ -83,7 +83,7 @@ + (int)I420ToNV21:(const uint8_t*)srcY
83
83
dstUV : (uint8_t *)dstUV
84
84
dstStrideUV : (int )dstStrideUV
85
85
width : (int )width
86
- width : (int )height {
86
+ height : (int )height {
87
87
return libyuv::I420ToNV21 (srcY,
88
88
srcStrideY,
89
89
srcU,
You can’t perform that action at this time.
0 commit comments