diff dsputil.c @ 1866:1755f959ab7f libavcodec

seperated out the C-based VP3 DSP functions into a different file; also ported the MMX-optimized versions of those functions
author melanson
date Mon, 08 Mar 2004 02:13:45 +0000
parents 9a73e6dc5d68
children 55b7435c59b8
line wrap: on
line diff
--- a/dsputil.c	Sat Mar 06 12:33:56 2004 +0000
+++ b/dsputil.c	Mon Mar 08 02:13:45 2004 +0000
@@ -3124,6 +3124,11 @@
         c->idct_permutation_type= FF_NO_IDCT_PERM;
     }
 
+    /* VP3 DSP support */
+    c->vp3_dsp_init = vp3_dsp_init_c;
+    c->vp3_idct_put = vp3_idct_put_c;
+    c->vp3_idct_add = vp3_idct_add_c;
+
     c->get_pixels = get_pixels_c;
     c->diff_pixels = diff_pixels_c;
     c->put_pixels_clamped = put_pixels_clamped_c;