diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-07-02 14:47:34 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-14 04:09:49 +0200 |
commit | 96c1e6d40d389eeb628840030dfe340d762a7ac8 (patch) | |
tree | b66be319363b96162dea4f44073eba331e652d07 /libswscale/swscale.h | |
parent | 806212498ae6b333d0c85dbc9c750580da7c6838 (diff) | |
download | ffmpeg-96c1e6d40d389eeb628840030dfe340d762a7ac8.tar.gz |
doxygen: Make sure parameter names match between .c and .h files.
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 80e5eaab00..f05a61e212 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -215,7 +215,7 @@ struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat * top-bottom or bottom-top order. If slices are provided in * non-sequential order the behavior of the function is undefined. * - * @param context the scaling context previously created with + * @param c the scaling context previously created with * sws_getContext() * @param srcSlice the array containing the pointers to the planes of * the source slice @@ -232,8 +232,9 @@ struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat * the destination image * @return the height of the output slice */ -int sws_scale(struct SwsContext *context, const uint8_t* const srcSlice[], const int srcStride[], - int srcSliceY, int srcSliceH, uint8_t* const dst[], const int dstStride[]); +int sws_scale(struct SwsContext *c, const uint8_t* const srcSlice[], + const int srcStride[], int srcSliceY, int srcSliceH, + uint8_t* const dst[], const int dstStride[]); /** * @param inv_table the yuv2rgb coefficients, normally ff_yuv2rgb_coeffs[x] |