You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.8 KiB
78 lines
1.8 KiB
lib_LTLIBRARIES = libffmpegkit.la
|
|
|
|
libffmpegkit_la_LIBADD = @FFMPEG_FRAMEWORKS@
|
|
|
|
libffmpegkit_la_SOURCES = \
|
|
AbstractSession.m \
|
|
ArchDetect.m \
|
|
AtomicLong.m \
|
|
Chapter.m \
|
|
FFmpegKit.m \
|
|
FFmpegKitConfig.m \
|
|
FFmpegSession.m \
|
|
FFprobeKit.m \
|
|
FFprobeSession.m \
|
|
Log.m \
|
|
MediaInformation.m \
|
|
MediaInformationJsonParser.m \
|
|
MediaInformationSession.m \
|
|
Packages.m \
|
|
ReturnCode.m \
|
|
Statistics.m \
|
|
StreamInformation.m \
|
|
ffmpegkit_exception.m \
|
|
fftools_cmdutils.c \
|
|
fftools_ffmpeg.c \
|
|
fftools_ffmpeg_demux.c \
|
|
fftools_ffmpeg_filter.c \
|
|
fftools_ffmpeg_hw.c \
|
|
fftools_ffmpeg_mux.c \
|
|
fftools_ffmpeg_mux_init.c \
|
|
fftools_ffmpeg_opt.c \
|
|
fftools_ffprobe.c \
|
|
fftools_objpool.c \
|
|
fftools_opt_common.c \
|
|
fftools_sync_queue.c \
|
|
fftools_thread_queue.c
|
|
|
|
include_HEADERS = \
|
|
AbstractSession.h \
|
|
ArchDetect.h \
|
|
AtomicLong.h \
|
|
Chapter.h \
|
|
FFmpegKit.h \
|
|
FFmpegKitConfig.h \
|
|
FFmpegSession.h \
|
|
FFmpegSessionCompleteCallback.h \
|
|
FFprobeKit.h \
|
|
FFprobeSession.h \
|
|
FFprobeSessionCompleteCallback.h \
|
|
Level.h \
|
|
Log.h \
|
|
LogCallback.h \
|
|
LogRedirectionStrategy.h \
|
|
MediaInformation.h \
|
|
MediaInformationJsonParser.h \
|
|
MediaInformationSession.h \
|
|
MediaInformationSessionCompleteCallback.h \
|
|
Packages.h \
|
|
ReturnCode.h \
|
|
Session.h \
|
|
SessionState.h \
|
|
Statistics.h \
|
|
StatisticsCallback.h \
|
|
StreamInformation.h \
|
|
ffmpegkit_exception.h \
|
|
fftools_cmdutils.h \
|
|
fftools_ffmpeg.h \
|
|
fftools_ffmpeg_mux.h \
|
|
fftools_fopen_utf8.h \
|
|
fftools_objpool.h \
|
|
fftools_opt_common.h \
|
|
fftools_sync_queue.h \
|
|
fftools_thread_queue.h
|
|
|
|
libffmpegkit_la_CFLAGS = $(CFLAGS)
|
|
libffmpegkit_la_OBJCFLAGS = $(CFLAGS)
|
|
libffmpegkit_la_CXXFLAGS = $(CXXFLAGS)
|
|
libffmpegkit_la_LDFLAGS = $(LDFLAGS)
|
|
|