From dc789ada44691f18d3334581d887a922ea702a41 Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Mon, 10 Oct 2016 04:49:27 -0700 Subject: [PATCH] fix a typo in WebPPictureYUVAToARGB's doc method -> colorspace Change-Id: I5c9a2ccc909c967a936758dde2cfce92eb95462a --- src/webp/encode.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/webp/encode.h b/src/webp/encode.h index 9291b719..b65e27e7 100644 --- a/src/webp/encode.h +++ b/src/webp/encode.h @@ -481,10 +481,10 @@ WEBP_EXTERN(int) WebPPictureARGBToYUVADithered( WEBP_EXTERN(int) WebPPictureSmartARGBToYUVA(WebPPicture* picture); // Converts picture->yuv to picture->argb and sets picture->use_argb to true. -// The input format must be YUV_420 or YUV_420A. -// Note that the use of this method is discouraged if one has access to the -// raw ARGB samples, since using YUV420 is comparatively lossy. Also, the -// conversion from YUV420 to ARGB incurs a small loss too. +// The input format must be YUV_420 or YUV_420A. The conversion from YUV420 to +// ARGB incurs a small loss too. +// Note that the use of this colorspace is discouraged if one has access to the +// raw ARGB samples, since using YUV420 is comparatively lossy. // Returns false in case of error. WEBP_EXTERN(int) WebPPictureYUVAToARGB(WebPPicture* picture);