mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends
Required for upcoming libyuv update
This commit is contained in:
parent
c0c76cd455
commit
42f3296899
19 changed files with 431 additions and 451 deletions
|
|
@ -45,10 +45,10 @@ YUVType TypeFromSize(int ywidth, int yheight, int cbcrwidth, int cbcrheight);
|
|||
|
||||
// Convert a frame of YUV to 32 bit ARGB.
|
||||
// Pass in YV16/YV12 depending on source format
|
||||
void ConvertYCbCrToRGB32(const uint8* yplane,
|
||||
const uint8* uplane,
|
||||
const uint8* vplane,
|
||||
uint8* rgbframe,
|
||||
void ConvertYCbCrToRGB32(const uint8_t* yplane,
|
||||
const uint8_t* uplane,
|
||||
const uint8_t* vplane,
|
||||
uint8_t* rgbframe,
|
||||
int pic_x,
|
||||
int pic_y,
|
||||
int pic_width,
|
||||
|
|
@ -59,10 +59,10 @@ void ConvertYCbCrToRGB32(const uint8* yplane,
|
|||
YUVType yuv_type,
|
||||
YUVColorSpace yuv_color_space);
|
||||
|
||||
void ConvertYCbCrToRGB32_deprecated(const uint8* yplane,
|
||||
const uint8* uplane,
|
||||
const uint8* vplane,
|
||||
uint8* rgbframe,
|
||||
void ConvertYCbCrToRGB32_deprecated(const uint8_t* yplane,
|
||||
const uint8_t* uplane,
|
||||
const uint8_t* vplane,
|
||||
uint8_t* rgbframe,
|
||||
int pic_x,
|
||||
int pic_y,
|
||||
int pic_width,
|
||||
|
|
@ -74,10 +74,10 @@ void ConvertYCbCrToRGB32_deprecated(const uint8* yplane,
|
|||
|
||||
// Scale a frame of YUV to 32 bit ARGB.
|
||||
// Supports rotation and mirroring.
|
||||
void ScaleYCbCrToRGB32(const uint8* yplane,
|
||||
const uint8* uplane,
|
||||
const uint8* vplane,
|
||||
uint8* rgbframe,
|
||||
void ScaleYCbCrToRGB32(const uint8_t* yplane,
|
||||
const uint8_t* uplane,
|
||||
const uint8_t* vplane,
|
||||
uint8_t* rgbframe,
|
||||
int source_width,
|
||||
int source_height,
|
||||
int width,
|
||||
|
|
@ -89,10 +89,10 @@ void ScaleYCbCrToRGB32(const uint8* yplane,
|
|||
YUVColorSpace yuv_color_space,
|
||||
ScaleFilter filter);
|
||||
|
||||
void ScaleYCbCrToRGB32_deprecated(const uint8* yplane,
|
||||
const uint8* uplane,
|
||||
const uint8* vplane,
|
||||
uint8* rgbframe,
|
||||
void ScaleYCbCrToRGB32_deprecated(const uint8_t* yplane,
|
||||
const uint8_t* uplane,
|
||||
const uint8_t* vplane,
|
||||
uint8_t* rgbframe,
|
||||
int source_width,
|
||||
int source_height,
|
||||
int width,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue