0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

fix function definition names for two of the conversion functions

This commit is contained in:
jp9000 2013-10-25 10:30:50 -07:00
parent a43e291577
commit 75a1a02a97

View File

@ -175,7 +175,7 @@ void compress_uyvx_to_nv12_aligned(const void *input,
start_y, end_y, row_bytes_out, output);
}
void decompress_i420(const void *input_v, uint32_t width, uint32_t height,
void decompress_420(const void *input_v, uint32_t width, uint32_t height,
uint32_t row_bytes, uint32_t start_y, uint32_t end_y,
void *output_v)
{
@ -214,7 +214,7 @@ void decompress_i420(const void *input_v, uint32_t width, uint32_t height,
}
}
void decompress_i422(const void *input_v, uint32_t width, uint32_t height,
void decompress_422(const void *input_v, uint32_t width, uint32_t height,
uint32_t row_bytes, uint32_t start_y, uint32_t end_y,
void *output_v, bool leading_lum)
{