memcpy.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * memcpy.c : classic memcpy module
  3.  *****************************************************************************
  4.  * Copyright (C) 2001 VideoLAN
  5.  * $Id: memcpy.c 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * 
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #undef HAVE_MMX
  30. #undef HAVE_MMX2
  31. #undef HAVE_SSE
  32. #undef HAVE_SSE2
  33. #undef HAVE_3DNOW
  34. #undef HAVE_ALTIVEC
  35. #if defined( MODULE_NAME_IS_memcpy3dn )
  36. #   define PRIORITY 100
  37. #   define HAVE_3DNOW
  38. #elif defined( MODULE_NAME_IS_memcpymmx )
  39. #   define PRIORITY 100
  40. #   define HAVE_MMX
  41. #elif defined( MODULE_NAME_IS_memcpymmxext )
  42. #   define PRIORITY 200
  43. #   define HAVE_MMX2
  44. #else
  45. #   define PRIORITY 50
  46. #endif
  47. /*****************************************************************************
  48.  * Extern prototype
  49.  *****************************************************************************/
  50. #ifndef MODULE_NAME_IS_memcpy
  51. #   define fast_memcpy E_(fast_memcpy)
  52. #   include "fastmemcpy.h"
  53. #endif
  54. /*****************************************************************************
  55.  * Module initializer
  56.  *****************************************************************************/
  57. static int Activate ( vlc_object_t *p_this )
  58. {
  59. #ifdef MODULE_NAME_IS_memcpy
  60.     p_this->p_vlc->pf_memcpy = memcpy;
  61.     p_this->p_vlc->pf_memset = memset;
  62. #else
  63.     p_this->p_vlc->pf_memcpy = fast_memcpy;
  64.     p_this->p_vlc->pf_memset = NULL;
  65. #endif
  66.     return VLC_SUCCESS;
  67. }
  68. /*****************************************************************************
  69.  * Module descriptor
  70.  *****************************************************************************/
  71. vlc_module_begin();
  72. #ifdef MODULE_NAME_IS_memcpy
  73.     set_description( _("libc memcpy") );
  74.     add_shortcut( "c" );
  75.     add_shortcut( "libc" );
  76. #elif defined( MODULE_NAME_IS_memcpy3dn )
  77.     set_description( _("3D Now! memcpy") );
  78.     add_requirement( 3DNOW );
  79.     add_shortcut( "3dn" );
  80.     add_shortcut( "3dnow" );
  81.     add_shortcut( "memcpy3dn" );
  82.     add_shortcut( "memcpy3dnow" );
  83. #elif defined( MODULE_NAME_IS_memcpymmx )
  84.     set_description( _("MMX memcpy") );
  85.     add_requirement( MMX );
  86.     add_shortcut( "mmx" );
  87.     add_shortcut( "memcpymmx" );
  88. #elif defined( MODULE_NAME_IS_memcpymmxext )
  89.     set_description( _("MMX EXT memcpy") );
  90.     add_requirement( MMXEXT );
  91.     add_shortcut( "mmxext" );
  92.     add_shortcut( "memcpymmxext" );
  93. #endif
  94.     set_capability( "memcpy", PRIORITY );
  95.     set_callbacks( Activate, NULL );
  96. vlc_module_end();