mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 21:51:09 +00:00
4a58fd4be4
Conflicts: common ext/ffmpeg/Makefile.am ext/ffmpeg/gstffmpegcfg.c ext/ffmpeg/gstffmpegcodecmap.c ext/ffmpeg/gstffmpegcodecmap.h ext/ffmpeg/gstffmpegdec.c ext/ffmpeg/gstffmpegenc.c ext/ffmpeg/gstffmpegenc.h tests/check/Makefile.am Porting of the new video elements to 0.11 still pending.
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
plugin_LTLIBRARIES = libgstlibav.la
|
|
|
|
if HAVE_BZ2
|
|
BZ2_LIBS = -lbz2
|
|
else
|
|
BZ2_LIBS =
|
|
endif
|
|
|
|
libgstlibav_la_SOURCES = gstffmpeg.c \
|
|
gstffmpegprotocol.c \
|
|
gstffmpegcodecmap.c \
|
|
gstffmpegutils.c \
|
|
gstffmpegenc.c \
|
|
gstffmpegvidenc.c \
|
|
gstffmpegdec.c \
|
|
gstffmpegviddec.c \
|
|
gstffmpegcfg.c \
|
|
gstffmpegdemux.c \
|
|
gstffmpegmux.c \
|
|
gstffmpegdeinterlace.c
|
|
#\
|
|
# gstffmpegaudioresample.c
|
|
# \
|
|
# gstffmpegscale.c
|
|
|
|
libgstlibav_la_CFLAGS = $(LIBAV_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstlibav_la_LIBADD = $(LIBAV_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION) \
|
|
-lgstpbutils-$(GST_API_VERSION) $(GST_BASE_LIBS) \
|
|
$(LIBM) $(WIN32_LIBS) -lz $(BZ2_LIBS)
|
|
libgstlibav_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(DARWIN_LDFLAGS)
|
|
libgstlibav_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
if HAVE_LIBAV_UNINSTALLED
|
|
libgstlibav_la_DEPENDENCIES = $(LIBAV_LIBS)
|
|
endif
|
|
|
|
|
|
noinst_HEADERS = \
|
|
gstffmpeg.h \
|
|
gstffmpegcodecmap.h \
|
|
gstffmpegutils.h \
|
|
gstffmpegenc.h \
|
|
gstffmpegvidenc.h \
|
|
gstffmpegcfg.h \
|
|
gstffmpegpipe.h
|