diff dsputil.h @ 11378:f46b68960464 libavcodec

Move some VC1 dsp prototypes to dsputil.h; they are defined in dsputil.c Also fix function definitions to match prototypes (missing const).
author mru
date Sat, 06 Mar 2010 22:36:55 +0000
parents 0b220468ba0d
children 4b0cc1b97def
line wrap: on
line diff
--- a/dsputil.h	Sat Mar 06 22:36:52 2010 +0000
+++ b/dsputil.h	Sat Mar 06 22:36:55 2010 +0000
@@ -96,6 +96,10 @@
 void ff_vp6_filter_diag4_c(uint8_t *dst, uint8_t *src, int stride,
                            const int16_t *h_weights, const int16_t *v_weights);
 
+/* VC1 functions */
+void ff_put_vc1_mspel_mc00_c(uint8_t *dst, const uint8_t *src, int stride, int rnd);
+void ff_avg_vc1_mspel_mc00_c(uint8_t *dst, const uint8_t *src, int stride, int rnd);
+
 /* 1/2^n downscaling functions from imgconvert.c */
 void ff_img_copy_plane(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
 void ff_shrink22(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);