]> git.sesse.net Git - vlc/blobdiff - modules/audio_filter/converter/dtstospdif.c
Use vlc_memset/vlc_memcpy
[vlc] / modules / audio_filter / converter / dtstospdif.c
index 11cdeff2f741cece0eaa2f4a1c010aef68131d88..7827d5e2d2ae2a70f62f007a311ce6e939044698 100644 (file)
@@ -138,9 +138,9 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
     }
 
     /* Backup frame */
-    p_filter->p_libvlc->pf_memcpy( p_filter->p_sys->p_buf + p_in_buf->i_nb_bytes *
-                                p_filter->p_sys->i_frames, p_in_buf->p_buffer,
-                                p_in_buf->i_nb_bytes );
+    vlc_memcpy( p_filter->p_sys->p_buf + p_in_buf->i_nb_bytes *
+                  p_filter->p_sys->i_frames,
+                p_in_buf->p_buffer, p_in_buf->i_nb_bytes );
 
     p_filter->p_sys->i_frames++;
 
@@ -174,14 +174,14 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
         /* Copy the S/PDIF headers. */
         if( p_filter->output.i_format == VLC_FOURCC('s','p','d','b') )
         {
-            p_filter->p_libvlc->pf_memcpy( p_out, p_sync_be, 6 );
+            vlc_memcpy( p_out, p_sync_be, 6 );
             p_out[5] = i_ac5_spdif_type;
             p_out[6] = (( i_length ) >> 5 ) & 0xFF;
             p_out[7] = ( i_length << 3 ) & 0xFF;
         }
         else
         {
-            p_filter->p_libvlc->pf_memcpy( p_out, p_sync_le, 6 );
+            vlc_memcpy( p_out, p_sync_le, 6 );
             p_out[4] = i_ac5_spdif_type;
             p_out[6] = ( i_length << 3 ) & 0xFF;
             p_out[7] = (( i_length ) >> 5 ) & 0xFF;
@@ -217,13 +217,13 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
         }
         else
         {
-            p_filter->p_libvlc->pf_memcpy( p_out + 8, p_in, i_length );
+            vlc_memcpy( p_out + 8, p_in, i_length );
         }
 
         if( i_fz > i_length + 8 )
         {
-            p_filter->p_libvlc->pf_memset( p_out + 8 + i_length_padded, 0,
-                                        i_fz - i_length_padded - 8 );
+            vlc_memset( p_out + 8 + i_length_padded, 0,
+                        i_fz - i_length_padded - 8 );
         }
     }