diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-18 19:27:51 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-25 11:36:57 +0200 |
commit | 5bac2d0c3020587a03cb14e8b6a664a0b92f26c2 (patch) | |
tree | 08c6ccffd567aabf43301cc5d3dee357580d3eed /libavcodec/wmavoice.c | |
parent | a6e9d6497739b7b60e3284f03b27883514bbc94a (diff) | |
download | ffmpeg-5bac2d0c3020587a03cb14e8b6a664a0b92f26c2.tar.gz |
avutil: Move memcpy_backptr() to mem.c
The function is used elsewhere and does not belong with the LZO code.
Diffstat (limited to 'libavcodec/wmavoice.c')
-rw-r--r-- | libavcodec/wmavoice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c index 63caad2440..466d1ec495 100644 --- a/libavcodec/wmavoice.c +++ b/libavcodec/wmavoice.c @@ -29,6 +29,7 @@ #include <math.h> +#include "libavutil/mem.h" #include "dsputil.h" #include "avcodec.h" #include "get_bits.h" @@ -38,7 +39,6 @@ #include "acelp_vectors.h" #include "acelp_filters.h" #include "lsp.h" -#include "libavutil/lzo.h" #include "dct.h" #include "rdft.h" #include "sinewin.h" |