]> git.sesse.net Git - vlc/blobdiff - modules/audio_filter/resampler/trivial.c
vlc_mutex_init: remove unused paramter
[vlc] / modules / audio_filter / resampler / trivial.c
index 5db69e0284579aef4178e52059e0056e0c96289c..bb40f60db06540c97745fb662a87177f5d4c8943 100644 (file)
@@ -98,8 +98,8 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
     {
         /* For whatever reason the buffer allocator decided to allocate
          * a new buffer. Currently, this never happens. */
-        p_aout->p_libvlc->pf_memcpy( p_out_buf->p_buffer, p_in_buf->p_buffer,
-                                  __MIN(i_out_nb, i_in_nb) * i_sample_bytes );
+        vlc_memcpy( p_out_buf->p_buffer, p_in_buf->p_buffer,
+                    __MIN(i_out_nb, i_in_nb) * i_sample_bytes );
     }
 
     if ( i_out_nb > i_in_nb )