Changeset b89d540af12211361bfaa82a200872b3ba4f0eb0

Show
Ignore:
Timestamp:
05/03/08 16:20:43 (2 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1209824443 +0300
git-parent:

[5b55ee1bb0a0212b967f8f4a33824ffc6b7c7f09]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1209824443 +0300
Message:

Remove pf_memcpy and pf_memset from libvlc

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_main.h

    r651e249 rb89d540  
    6868 
    6969    module_t *             p_memcpy_module;  ///< Fast memcpy plugin used 
    70     void* ( *pf_memcpy ) ( void *, const void *, size_t ); ///< fast memcpy 
    71     void* ( *pf_memset ) ( void *, int, size_t );          ///< fast memset 
    7270 
    7371    bool             b_stats;       ///< Should we collect stats ? 
  • src/libvlc-common.c

    r0b776c2 rb89d540  
    709709     */ 
    710710    p_libvlc->p_memcpy_module = module_Need( p_libvlc, "memcpy", "$memcpy", 0 ); 
    711  
    712     if( p_libvlc->pf_memcpy == NULL ) 
    713     { 
    714         p_libvlc->pf_memcpy = memcpy; 
    715     } 
    716  
    717     if( p_libvlc->pf_memset == NULL ) 
    718     { 
    719         p_libvlc->pf_memset = memset; 
    720     } 
    721711 
    722712    p_libvlc->b_stats = config_GetInt( p_libvlc, "stats" ) > 0;