From d6f8476be4895c620d58e021ab880823d2fe25bf Mon Sep 17 00:00:00 2001 From: Jason Garrett-Glaser Date: Fri, 25 Jun 2010 18:14:07 +0000 Subject: 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 --- libavcodec/dsputil.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'libavcodec/dsputil.c') 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; -- cgit v1.2.3