Browse code

sws: more complete doxy for sws_setColorspaceDetails()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2012/07/19 04:22:05
Showing 1 changed files
... ...
@@ -212,7 +212,13 @@ int sws_scale(struct SwsContext *c, const uint8_t *const srcSlice[],
212 212
               uint8_t *const dst[], const int dstStride[]);
213 213
 
214 214
 /**
215
- * @param inv_table the yuv2rgb coefficients, normally ff_yuv2rgb_coeffs[x]
215
+ * @param dstRange flag indicating the while-black range of the output (1=jpeg / 0=mpeg)
216
+ * @param srcRange flag indicating the while-black range of the input (1=jpeg / 0=mpeg)
217
+ * @param table the yuv2rgb coefficients describing the output yuv space, normally ff_yuv2rgb_coeffs[x]
218
+ * @param inv_table the yuv2rgb coefficients describing the input yuv space, normally ff_yuv2rgb_coeffs[x]
219
+ * @param brightness 16.16 fixed point brightness correction
220
+ * @param contrast 16.16 fixed point contrast correction
221
+ * @param saturation 16.16 fixed point saturation correction
216 222
  * @return -1 if not supported
217 223
  */
218 224
 int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4],