diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-06-05 22:27:45 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-06-07 10:05:54 -0400 |
commit | df91d091747395384a7c585cee568f9949e6c9f2 (patch) | |
tree | 92f11543bc73ed932a5f0a52ddc408d3a80417db /libswscale/swscale_internal.h | |
parent | 0fb5193156053b820579df9ab4596b950eb05d4d (diff) | |
download | ffmpeg-df91d091747395384a7c585cee568f9949e6c9f2.tar.gz |
swscale: integrate yuv2nv12X_C into yuv2yuvX() function pointers.
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index a9adb3f07a..dcf8eb522a 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -250,12 +250,6 @@ typedef struct SwsContext { #endif /* function pointers for swScale() */ - void (*yuv2nv12X )(struct SwsContext *c, - const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize, - const int16_t *chrFilter, const int16_t **chrUSrc, - const int16_t **chrVSrc, int chrFilterSize, - uint8_t *dest, uint8_t *uDest, - int dstW, int chrDstW, int dstFormat); void (*yuv2yuv1 )(struct SwsContext *c, const int16_t *lumSrc, const int16_t *chrUSrc, const int16_t *chrVSrc, const int16_t *alpSrc, |