forked from mia/Aegisub
9a6265afb6
* Add an FFMPEG compile check from TheFluff, thanks! (modified) * Add a libpostproc check from Myrsloik, thanks!. (reqired by ffms) * Rework how ffms / FFMPEG providers are enabled/disabled. * Fix PulseAudio check to use pulseaudio_required_version. Originally committed to SVN as r2705.
32 lines
631 B
Makefile
32 lines
631 B
Makefile
noinst_LIBRARIES = libffmpegsource2_aegisub.a
|
|
|
|
AM_CPPFLAGS = -I../aegisub -D__UNIX__ -DHAVE_STRLCPY @LIBAVFORMAT_CFLAGS@ @LIBAVCODEC_CFLAGS@ @LIBSWSCALE_CFLAGS@ @LIBAVUTIL_CFLAGS@ @LIBPOSTPROC_CFLAGS@
|
|
|
|
|
|
libffmpegsource2_aegisub_a_SOURCES = \
|
|
ffaudiosource.cpp \
|
|
ffms.cpp \
|
|
ffvideosource.cpp \
|
|
indexing.cpp \
|
|
MatroskaParser.c \
|
|
stdiostream.c \
|
|
utils.cpp \
|
|
wave64writer.cpp
|
|
|
|
|
|
libffmpegsource2_aegisub_a_SOURCES += \
|
|
MatroskaParser.h \
|
|
avisynth.h \
|
|
ffaudiosource.h \
|
|
ffavisynth.h \
|
|
ffms.h \
|
|
ffpp.h \
|
|
ffswscale.h \
|
|
ffvideosource.h \
|
|
indexing.h \
|
|
stdiostream.h \
|
|
utils.h \
|
|
wave64writer.h
|
|
|
|
EXTRA_DIST = \
|
|
ffms2.html
|