diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-18 16:53:42 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-19 17:04:41 +0200 |
commit | 8fb1e2640505d8815bbe2f0bcdf7140be37acd87 (patch) | |
tree | 52ba25cf79d2e5953a8eb4a619468d288638f691 | |
parent | c896aa984e88dc9158fd6d142e61872a021e9bdd (diff) | |
download | ffmpeg-8fb1e2640505d8815bbe2f0bcdf7140be37acd87.tar.gz |
lzo: Drop obsolete fast_memcpy reference
-rw-r--r-- | libavutil/lzo.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavutil/lzo.c b/libavutil/lzo.c index fec3edb9c0..dba0ac9ab1 100644 --- a/libavutil/lzo.c +++ b/libavutil/lzo.c @@ -19,11 +19,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <string.h> + #include "avutil.h" #include "common.h" -/// Avoid e.g. MPlayers fast_memcpy, it slows things down here. -#undef memcpy -#include <string.h> #include "lzo.h" /// Define if we may write up to 12 bytes beyond the output buffer. |