diff options
author | Diego Biurrun | 2012-10-18 19:27:51 +0200 |
---|---|---|
committer | Diego Biurrun | 2012-10-25 11:36:57 +0200 |
commit | 5bac2d0c3020587a03cb14e8b6a664a0b92f26c2 (patch) | |
tree | 08c6ccffd567aabf43301cc5d3dee357580d3eed /libavcodec/xan.c | |
parent | a6e9d6497739b7b60e3284f03b27883514bbc94a (diff) |
avutil: Move memcpy_backptr() to mem.c
The function is used elsewhere and does not belong with the LZO code.
Diffstat (limited to 'libavcodec/xan.c')
-rw-r--r-- | libavcodec/xan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/xan.c b/libavcodec/xan.c index 586320b55e..e6bfc0da06 100644 --- a/libavcodec/xan.c +++ b/libavcodec/xan.c @@ -33,12 +33,11 @@ #include <string.h> #include "libavutil/intreadwrite.h" +#include "libavutil/mem.h" #include "avcodec.h" #include "bytestream.h" #define BITSTREAM_READER_LE #include "get_bits.h" -// for av_memcpy_backptr -#include "libavutil/lzo.h" #define RUNTIME_GAMMA 0 |