]> git.sesse.net Git - vlc/commitdiff
* Fixed win32 compilation.
authorSam Hocevar <sam@videolan.org>
Sun, 9 Dec 2001 21:14:19 +0000 (21:14 +0000)
committerSam Hocevar <sam@videolan.org>
Sun, 9 Dec 2001 21:14:19 +0000 (21:14 +0000)
plugins/mpeg/input_ts.h

index 9e1339f2db66a2739df6ead71372a63137109fe1..f80dc59d74d03bf6974fdc9af9d6932427b1dfc0 100644 (file)
@@ -2,7 +2,7 @@
  * input_ts.h: structures of the input not exported to other modules
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: input_ts.h,v 1.12 2001/12/07 18:33:07 sam Exp $
+ * $Id: input_ts.h,v 1.12.2.1 2001/12/09 21:14:19 sam Exp $
  *
  * Authors: Henri Fallon <henri@via.ecp.fr>
  *          Boris Dorès <babal@via.ecp.fr>
@@ -71,7 +71,7 @@ static __inline__ int read_network( int i_fd, char * p_base,
          i_bytes = p_sys->i_length - p_sys->i_offset;
     }
 
-    fast_memcpy( p_base, p_sys->p_buffer + p_sys->i_offset, i_bytes );
+    p_main->fast_memcpy( p_base, p_sys->p_buffer + p_sys->i_offset, i_bytes );
     p_sys->i_offset += i_bytes;
 
     return i_bytes;