diff options
-rw-r--r-- | graphics/yuv_to_rgb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/yuv_to_rgb.h b/graphics/yuv_to_rgb.h index 68a0449d2c..0e832be0ec 100644 --- a/graphics/yuv_to_rgb.h +++ b/graphics/yuv_to_rgb.h @@ -82,8 +82,9 @@ public: * * Since the chroma has a very low resolution in 410, we perform bilinear scaling * on the two chroma planes to produce the image. The chroma planes must have - * at least one extra row that can be read from in order to produce a proper - * image (filled with 0x80). This is required in order to speed up this function. + * at least one extra row and one extra column that can be read from in order to + * produce a proper image. It is suggested that you fill these in with the previous + * row and column's data. This is required in order to speed up this function. * * @param dst the destination surface * @param scale the scale of the luminance values |