diff options
Diffstat (limited to 'media/base/yuv_row.h')
-rw-r--r-- | media/base/yuv_row.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/media/base/yuv_row.h b/media/base/yuv_row.h index 0a2990b..262d9a0 100644 --- a/media/base/yuv_row.h +++ b/media/base/yuv_row.h @@ -53,6 +53,7 @@ void DoubleYUVToRGB32Row(const uint8* y_buf, // Handles arbitrary scaling up or down. // Mirroring is supported, but not 90 or 270 degree rotation. // Chroma is under sampled every 2 pixels for performance. +// This is the slowest of the scalers. void ScaleYUVToRGB32Row(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, @@ -60,10 +61,6 @@ void ScaleYUVToRGB32Row(const uint8* y_buf, int width, int source_dx); -// Handles arbitrary scaling up or down with bilinear filtering. -// Mirroring is supported, but not 90 or 270 degree rotation. -// Chroma is under sampled every 2 pixels for performance. -// This is the slowest of the scalers. void LinearScaleYUVToRGB32Row(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, |