diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-07-05 18:19:26 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-06 03:33:36 +0200 |
commit | f28aaae1c5e99eba51761d7c7cd0ae7e03232b54 (patch) | |
tree | c473088d1998be378e79e39c9f41621fd7dc730c /libswscale/swscale_internal.h | |
parent | dfd8116986a30e312a27269fbac702e885e0e673 (diff) | |
download | ffmpeg-f28aaae1c5e99eba51761d7c7cd0ae7e03232b54.tar.gz |
swscale: amend documentation to mention use of native depth for scaling.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 340227dc00..b3698a3d94 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -429,7 +429,10 @@ typedef struct SwsContext { * @param dstW width of destination image * @param src pointer to source data to be scaled. If scaling depth * is 8, this is 8bpp in 8bpp (uint8_t) width. If scaling - * depth is 16, this is 16bpp in 16bpp (uint16_t) depth. + * depth is 16, this is native depth in 16bbp (uint16_t) + * width. In other words, for 9-bit YUV input, this is + * 9bpp, for 10-bit YUV input, this is 10bpp, and for + * 16-bit RGB or YUV, this is 16bpp. * @param filter filter coefficients to be used per output pixel for * scaling. This contains 14bpp filtering coefficients. * Guaranteed to contain dstW * filterSize entries. |