diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-21 01:41:29 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-12-21 01:41:29 +0000 |
commit | bb53e1d188de3e919046e2c21dab99f1e6943b54 (patch) | |
tree | 8348879b0a43aba3d38d7db3bfd2420e4481c745 /libswscale/swscale_internal.h | |
parent | e7a47515abbcf2c8a07c280ea3d04129fc3aaaf6 (diff) | |
download | ffmpeg-bb53e1d188de3e919046e2c21dab99f1e6943b54.tar.gz |
Rename function pointers used to convert from the input pixel format to the
intermediate YV12 to a more descriptive name.
Originally committed as revision 30097 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index eb73fa6dae..c597234b5e 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -253,13 +253,13 @@ typedef struct SwsContext { const int16_t **alpSrc, uint8_t *dest, long dstW, long dstY); - void (*hyscale_internal)(uint8_t *dst, const uint8_t *src, - long width, uint32_t *pal); - void (*hascale_internal)(uint8_t *dst, const uint8_t *src, - long width, uint32_t *pal); - void (*hcscale_internal)(uint8_t *dstU, uint8_t *dstV, - const uint8_t *src1, const uint8_t *src2, - long width, uint32_t *pal); + void (*lumToYV12)(uint8_t *dst, const uint8_t *src, + long width, uint32_t *pal); ///< Unscaled conversion of luma plane to YV12 for horizontal scaler. + void (*alpToYV12)(uint8_t *dst, const uint8_t *src, + long width, uint32_t *pal); ///< Unscaled conversion of alpha plane to YV12 for horizontal scaler. + void (*chrToYV12)(uint8_t *dstU, uint8_t *dstV, + 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, const uint8_t *src, int srcW, int xInc); |