mirror of
https://github.com/openharmony/third_party_ffmpeg.git
synced 2026-08-25 12:29:35 -04:00
b9207d5a05
* commit 'd288a0ef264d9a095c2d2068c42b572a0e8a55e9': build: Generate pkg-config files from Make and not from configure build: Store library version numbers in .version files Includes cherry-picked commits8a34f36593andee164727ddto fix issues. Changes were also made to retain support for raise_major and build_suffix. Reviewed-by: ubitux Merged-by: James Almer <jamrial@gmail.com>
24 lines
722 B
Makefile
24 lines
722 B
Makefile
NAME = swresample
|
|
DESC = FFmpeg audio resampling library
|
|
FFLIBS = avutil
|
|
|
|
HEADERS = swresample.h \
|
|
version.h \
|
|
|
|
OBJS = audioconvert.o \
|
|
dither.o \
|
|
options.o \
|
|
rematrix.o \
|
|
resample.o \
|
|
resample_dsp.o \
|
|
swresample.o \
|
|
swresample_frame.o \
|
|
|
|
OBJS-$(CONFIG_LIBSOXR) += soxr_resample.o
|
|
OBJS-$(CONFIG_SHARED) += log2_tab.o
|
|
|
|
# Windows resource file
|
|
SLIBOBJS-$(HAVE_GNU_WINDRES) += swresampleres.o
|
|
|
|
TESTPROGS = swresample
|