diff dsputil.c @ 3656:1cc5bdadd487 libavcodec

New qpel MC functions conforming to VC-1 standard. Existing DSPUtil functions cause chroma artifacts on some files.
author kostya
date Thu, 31 Aug 2006 04:44:54 +0000
parents 47821be55b6c
children 8e180a3276fe
line wrap: on
line diff
--- a/dsputil.c	Thu Aug 31 04:42:13 2006 +0000
+++ b/dsputil.c	Thu Aug 31 04:44:54 2006 +0000
@@ -2598,6 +2598,10 @@
 void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) {
     put_pixels8_c(dst, src, stride, 8);
 }
+
+void ff_put_vc1_qpel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) {
+    put_pixels8_c(dst, src, stride, 8);
+}
 #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */
 
 static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){