diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-18 21:22:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-18 21:25:29 +0200 |
commit | c66978e29ad9cae2c71da83857c6a3cec11bb9cb (patch) | |
tree | 4db204cbf5991bb77498a2d7900814aed71c6fc1 /libswscale/swscale.h | |
parent | 5784a46986be6f87e8041f67acd9ccaecb1f62df (diff) | |
download | ffmpeg-c66978e29ad9cae2c71da83857c6a3cec11bb9cb.tar.gz |
sws: more complete doxy for sws_setColorspaceDetails()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 2b3fc5ccd5..ba781803dd 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -212,7 +212,13 @@ int sws_scale(struct SwsContext *c, const uint8_t *const srcSlice[], uint8_t *const dst[], const int dstStride[]); /** - * @param inv_table the yuv2rgb coefficients, normally ff_yuv2rgb_coeffs[x] + * @param dstRange flag indicating the while-black range of the output (1=jpeg / 0=mpeg) + * @param srcRange flag indicating the while-black range of the input (1=jpeg / 0=mpeg) + * @param table the yuv2rgb coefficients describing the output yuv space, normally ff_yuv2rgb_coeffs[x] + * @param inv_table the yuv2rgb coefficients describing the input yuv space, normally ff_yuv2rgb_coeffs[x] + * @param brightness 16.16 fixed point brightness correction + * @param contrast 16.16 fixed point contrast correction + * @param saturation 16.16 fixed point saturation correction * @return -1 if not supported */ int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], |