]> git.sesse.net Git - vlc/blobdiff - plugins/spu_dec/spu_decoder.c
* Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose
[vlc] / plugins / spu_dec / spu_decoder.c
index 395017447c449dc41f5ecb42ad602775b3ee80c3..8fbafb6282d33abdd8665207ef812b6e20cf5584 100644 (file)
@@ -2,7 +2,7 @@
  * spu_decoder.c : spu decoder thread
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: spu_decoder.c,v 1.4 2001/11/28 15:08:06 massiot Exp $
+ * $Id: spu_decoder.c,v 1.5 2001/12/03 16:18:37 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -76,7 +76,7 @@ static int  ParseRLE             ( spudec_thread_t *, subpicture_t *, u8 * );
 void _M( spu_dec_getfunctions )( function_list_t * p_function_list )
 {
     p_function_list->pf_probe = spu_dec_Probe;
-    p_function_list->functions.dec.pf_RunThread = spu_dec_Run;
+    p_function_list->functions.dec.pf_run = spu_dec_Run;
 }
 
 /*****************************************************************************