diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-06-26 14:41:44 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-06-26 14:41:44 -0700 |
commit | 97535ffb9795f59c4fbfacfe1541d752ed47218e (patch) | |
tree | ad28975df7944d9798a28f84fb398877148302eb /libswscale/swscale_internal.h | |
parent | 9a0dda8b3ab07fa7be60335715a6c350c907a7b8 (diff) | |
download | ffmpeg-97535ffb9795f59c4fbfacfe1541d752ed47218e.tar.gz |
swscale: remove unused xInc/srcW arguments from hScale().
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index ea34d8ce0e..9967c99eda 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -306,8 +306,8 @@ typedef struct SwsContext { const uint8_t *src1, const uint8_t *src2, int srcW, int xInc); - void (*hScale)(int16_t *dst, int dstW, const uint8_t *src, int srcW, - int xInc, const int16_t *filter, const int16_t *filterPos, + void (*hScale)(int16_t *dst, int dstW, const uint8_t *src, + const int16_t *filter, const int16_t *filterPos, int filterSize); void (*lumConvertRange)(int16_t *dst, int width); ///< Color range conversion function for luma plane if needed. |