diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-03-23 17:42:17 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-04-24 21:28:27 -0400 |
commit | c8af852b97447491823ff9b91413e32415e2babf (patch) | |
tree | 6c02f850cf954612c7077f266a75d663bb9cde57 /libavresample/Makefile | |
parent | c5671aeb77abb18a5a10ace314ab49e8fd3d0cb3 (diff) | |
download | ffmpeg-c8af852b97447491823ff9b91413e32415e2babf.tar.gz |
Add libavresample
This is a new library for audio sample format, channel layout, and sample rate
conversion.
Diffstat (limited to 'libavresample/Makefile')
-rw-r--r-- | libavresample/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libavresample/Makefile b/libavresample/Makefile new file mode 100644 index 0000000000..ce3fe81953 --- /dev/null +++ b/libavresample/Makefile @@ -0,0 +1,15 @@ +NAME = avresample +FFLIBS = avutil + +HEADERS = avresample.h \ + version.h + +OBJS = audio_convert.o \ + audio_data.o \ + audio_mix.o \ + audio_mix_matrix.o \ + options.o \ + resample.o \ + utils.o + +TESTPROGS = avresample |