diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-25 18:14:07 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-06-25 18:14:07 +0000 |
commit | d6f8476be4895c620d58e021ab880823d2fe25bf (patch) | |
tree | 6a6b0d4114ddc750b031fb7920cbc5bdbdc80a50 /libavcodec/dsputil.c | |
parent | eb7626a32b5d0b14fdc15d9b1bdf65342efe3b67 (diff) | |
download | ffmpeg-d6f8476be4895c620d58e021ab880823d2fe25bf.tar.gz |
Make VP8 DSP functions take two strides
This isn't useful for the C functions, but will allow re-using H and V functions
for HV functions without adding separate H and V wrappers.
Originally committed as revision 23782 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index fdf23f0a50..0db637a501 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2657,18 +2657,6 @@ static void avg_rv40_qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride){ } #endif /* CONFIG_RV40_DECODER */ -#if CONFIG_VP8_DECODER -void ff_put_vp8_pixels16_c(uint8_t *dst, uint8_t *src, int stride, int h, int x, int y) { - put_pixels16_c(dst, src, stride, h); -} -void ff_put_vp8_pixels8_c(uint8_t *dst, uint8_t *src, int stride, int h, int x, int y) { - put_pixels8_c(dst, src, stride, h); -} -void ff_put_vp8_pixels4_c(uint8_t *dst, uint8_t *src, int stride, int h, int x, int y) { - put_pixels4_c(dst, src, stride, h); -} -#endif - static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){ uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; int i; |