mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 05:24:42 +00:00
b5875b9111
Similar to libswscale this does resampling and format convertion, just for audio instead of video. changing sampling rate, sample formats, channel layouts and sample packing all in one with a very simple public interface. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
13 lines
210 B
Makefile
13 lines
210 B
Makefile
include $(SUBDIR)../config.mak
|
|
|
|
NAME = swresample
|
|
FFLIBS = avutil
|
|
|
|
HEADERS = swresample.h
|
|
|
|
OBJS = swresample.o audioconvert.o resample2.o rematrix.o
|
|
|
|
TESTPROGS = swresample_test
|
|
|
|
include $(SUBDIR)../subdir.mak
|