diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-20 12:37:52 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-20 12:37:52 +0200 |
commit | 04c6ecb7da677049cd52efe2a980e586167e9e5d (patch) | |
tree | 1a8279cffbc9424ade212f660d0c99314230011a /libavutil/lzo.c | |
parent | cdea54b4c8cd891aa12f85c41b0cd4bd81be83f9 (diff) | |
parent | c9ef43215c7d68c2cdcdbe02287aa114f27a32ed (diff) | |
download | ffmpeg-04c6ecb7da677049cd52efe2a980e586167e9e5d.tar.gz |
Merge commit 'c9ef43215c7d68c2cdcdbe02287aa114f27a32ed'
* commit 'c9ef43215c7d68c2cdcdbe02287aa114f27a32ed':
fate-vc1: add dependencies
ARM: fix overreads in neon h264 chroma mc
rtsp: Make sure the ret variable is initialized in ff_rtsp_fetch_packet
gitignore: ignore files created by msvc
fate: Add proper dependencies for the tests in video.mak
configure: Disable Snow decoder and encoder by default
lzo: Drop obsolete fast_memcpy reference
build: Drop OBJS declaration for non-existing PCM_DVD encoder
mpeg4videodec: Disable frame multithreading for GMC, its not implemented at all
Conflicts:
libavcodec/mpegvideo.c
libavformat/rtsp.c
tests/fate/microsoft.mak
tests/fate/video.mak
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/lzo.c')
-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 3642308100..c61839faa6 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. |