]> git.sesse.net Git - vlc/blobdiff - plugins/vcd/input_vcd.c
* Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose
[vlc] / plugins / vcd / input_vcd.c
index ad5d1813e1030f7f429916114edc2127a162bdf6..404674ec016286b9c0a914d6f9172278587c1269 100644 (file)
@@ -585,8 +585,8 @@ static int VCDRead( input_thread_t * p_input,
     
             if( U32_AT(p_buffer) != 0x1B9 )
             {
-                memcpy( p_data->p_buffer, p_buffer + i_index,
-                        6 + i_packet_size );
+                pf_fast_memcpy( p_data->p_buffer, p_buffer + i_index,
+                                6 + i_packet_size );
                 i_index += ( 6 + i_packet_size );
     
             }