-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Mac/iOS] feat: Add RTCYUVHelper for darwin. (#28)
* feat: Add RTCYUVHelper for darwin. * chore: Add newline end of files.
- Loading branch information
1 parent
89117a2
commit 3808ee0
Showing
3 changed files
with
302 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/* | ||
* Copyright 2016 The WebRTC project authors. All Rights Reserved. | ||
* | ||
* Use of this source code is governed by a BSD-style license | ||
* that can be found in the LICENSE file in the root of the source | ||
* tree. An additional intellectual property rights grant can be found | ||
* in the file PATENTS. All contributing project authors may | ||
* be found in the AUTHORS file in the root of the source tree. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
#import "RTCMacros.h" | ||
#import "RTCVideoFrame.h" | ||
|
||
RTC_OBJC_EXPORT | ||
@interface RTC_OBJC_TYPE (RTCYUVHelper) : NSObject | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
|
||
+ (void)I420Rotate:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstY:(uint8_t*)dstY | ||
dstStrideY:(int)dstStrideY | ||
dstU:(uint8_t*)dstU | ||
dstStrideU:(int)dstStrideU | ||
dstV:(uint8_t*)dstV | ||
dstStrideV:(int)dstStrideV | ||
width:(int)width | ||
width:(int)height | ||
mode:(RTCVideoRotation)mode; | ||
|
||
+ (int)I420ToNV12:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstY:(uint8_t*)dstY | ||
dstStrideY:(int)dstStrideY | ||
dstUV:(uint8_t*)dstUV | ||
dstStrideUV:(int)dstStrideUV | ||
width:(int)width | ||
width:(int)height; | ||
|
||
+ (int)I420ToNV21:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstY:(uint8_t*)dstY | ||
dstStrideY:(int)dstStrideY | ||
dstUV:(uint8_t*)dstUV | ||
dstStrideUV:(int)dstStrideUV | ||
width:(int)width | ||
width:(int)height; | ||
|
||
+ (int)I420ToARGB:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstARGB:(uint8_t*)dstARGB | ||
dstStrideARGB:(int)dstStrideARGB | ||
width:(int)width | ||
height:(int)height; | ||
|
||
+ (int)I420ToBGRA:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstBGRA:(uint8_t*)dstBGRA | ||
dstStrideBGRA:(int)dstStrideBGRA | ||
width:(int)width | ||
height:(int)height; | ||
|
||
+ (int)I420ToABGR:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstABGR:(uint8_t*)dstABGR | ||
dstStrideABGR:(int)dstStrideABGR | ||
width:(int)width | ||
height:(int)height; | ||
|
||
+ (int)I420ToRGBA:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstRGBA:(uint8_t*)dstRGBA | ||
dstStrideRGBA:(int)dstStrideRGBA | ||
width:(int)width | ||
height:(int)height; | ||
|
||
+ (int)I420ToRGB24:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstRGB24:(uint8_t*)dstRGB24 | ||
dstStrideRGB24:(int)dstStrideRGB24 | ||
width:(int)width | ||
height:(int)height; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
/* | ||
* Copyright 2016 The WebRTC project authors. All Rights Reserved. | ||
* | ||
* Use of this source code is governed by a BSD-style license | ||
* that can be found in the LICENSE file in the root of the source | ||
* tree. An additional intellectual property rights grant can be found | ||
* in the file PATENTS. All contributing project authors may | ||
* be found in the AUTHORS file in the root of the source tree. | ||
*/ | ||
|
||
#import "RTCYUVHelper.h" | ||
|
||
#include "third_party/libyuv/include/libyuv.h" | ||
|
||
@implementation RTC_OBJC_TYPE (RTCYUVHelper) | ||
|
||
+ (void)I420Rotate:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstY:(uint8_t*)dstY | ||
dstStrideY:(int)dstStrideY | ||
dstU:(uint8_t*)dstU | ||
dstStrideU:(int)dstStrideU | ||
dstV:(uint8_t*)dstV | ||
dstStrideV:(int)dstStrideV | ||
width:(int)width | ||
width:(int)height | ||
mode:(RTCVideoRotation)mode { | ||
libyuv::I420Rotate(srcY, | ||
srcStrideY, | ||
srcU, | ||
srcStrideU, | ||
srcV, | ||
srcStrideV, | ||
dstY, | ||
dstStrideY, | ||
dstU, | ||
dstStrideU, | ||
dstV, | ||
dstStrideV, | ||
width, | ||
height, | ||
(libyuv::RotationMode)mode); | ||
} | ||
|
||
+ (int)I420ToNV12:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstY:(uint8_t*)dstY | ||
dstStrideY:(int)dstStrideY | ||
dstUV:(uint8_t*)dstUV | ||
dstStrideUV:(int)dstStrideUV | ||
width:(int)width | ||
width:(int)height { | ||
return libyuv::I420ToNV12(srcY, | ||
srcStrideY, | ||
srcU, | ||
srcStrideU, | ||
srcV, | ||
srcStrideV, | ||
dstY, | ||
dstStrideY, | ||
dstUV, | ||
dstStrideUV, | ||
width, | ||
height); | ||
} | ||
|
||
+ (int)I420ToNV21:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstY:(uint8_t*)dstY | ||
dstStrideY:(int)dstStrideY | ||
dstUV:(uint8_t*)dstUV | ||
dstStrideUV:(int)dstStrideUV | ||
width:(int)width | ||
width:(int)height { | ||
return libyuv::I420ToNV21(srcY, | ||
srcStrideY, | ||
srcU, | ||
srcStrideU, | ||
srcV, | ||
srcStrideV, | ||
dstY, | ||
dstStrideY, | ||
dstUV, | ||
dstStrideUV, | ||
width, | ||
height); | ||
} | ||
|
||
+ (int)I420ToARGB:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstARGB:(uint8_t*)dstARGB | ||
dstStrideARGB:(int)dstStrideARGB | ||
width:(int)width | ||
height:(int)height { | ||
return libyuv::I420ToARGB( | ||
srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstARGB, dstStrideARGB, width, height); | ||
} | ||
|
||
+ (int)I420ToBGRA:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstBGRA:(uint8_t*)dstBGRA | ||
dstStrideBGRA:(int)dstStrideBGRA | ||
width:(int)width | ||
height:(int)height { | ||
return libyuv::I420ToBGRA( | ||
srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstBGRA, dstStrideBGRA, width, height); | ||
} | ||
|
||
+ (int)I420ToABGR:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstABGR:(uint8_t*)dstABGR | ||
dstStrideABGR:(int)dstStrideABGR | ||
width:(int)width | ||
height:(int)height { | ||
return libyuv::I420ToABGR( | ||
srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstABGR, dstStrideABGR, width, height); | ||
} | ||
|
||
+ (int)I420ToRGBA:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstRGBA:(uint8_t*)dstRGBA | ||
dstStrideRGBA:(int)dstStrideRGBA | ||
width:(int)width | ||
height:(int)height { | ||
return libyuv::I420ToRGBA( | ||
srcY, srcStrideY, srcU, srcStrideU, srcV, srcStrideV, dstRGBA, dstStrideRGBA, width, height); | ||
} | ||
|
||
+ (int)I420ToRGB24:(const uint8_t*)srcY | ||
srcStrideY:(int)srcStrideY | ||
srcU:(const uint8_t*)srcU | ||
srcStrideU:(int)srcStrideU | ||
srcV:(const uint8_t*)srcV | ||
srcStrideV:(int)srcStrideV | ||
dstRGB24:(uint8_t*)dstRGB24 | ||
dstStrideRGB24:(int)dstStrideRGB24 | ||
width:(int)width | ||
height:(int)height { | ||
return libyuv::I420ToRGB24(srcY, | ||
srcStrideY, | ||
srcU, | ||
srcStrideU, | ||
srcV, | ||
srcStrideV, | ||
dstRGB24, | ||
dstStrideRGB24, | ||
width, | ||
height); | ||
} | ||
|
||
@end |