diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-21 01:54:59 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-21 01:54:59 +0000 |
commit | a1f4b4bb6e7605201d2deee7954d740b8e1c5423 (patch) | |
tree | 38c4f9ed645337348d607ced864edc1bb634ee55 /libswscale/swscale_internal.h | |
parent | bb53e1d188de3e919046e2c21dab99f1e6943b54 (diff) | |
download | ffmpeg-a1f4b4bb6e7605201d2deee7954d740b8e1c5423.tar.gz |
Move fast bilinear scaler code to the existing h[yc]scale_fast() functions.
Originally committed as revision 30098 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
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 c597234b5e..a4e695604d 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -261,10 +261,10 @@ typedef struct SwsContext { const uint8_t *src1, const uint8_t *src2, long width, uint32_t *pal); ///< Unscaled conversion of chroma planes to YV12 for horizontal scaler. void (*hyscale_fast)(struct SwsContext *c, - int16_t *dst, int dstWidth, + int16_t *dst, long dstWidth, const uint8_t *src, int srcW, int xInc); void (*hcscale_fast)(struct SwsContext *c, - int16_t *dst, int dstWidth, + int16_t *dst, long dstWidth, const uint8_t *src1, const uint8_t *src2, int srcW, int xInc); |