mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
e49c069995
Also change elements factory names to avenc_*, avdec_*, avmux_* and avdemux_*. The actual filenames, type names, function/variable names are not touched to make merging with 0.10 easier at this point. Once 0.10 is not supported anymore everything should be renamed.
43 lines
1 KiB
Makefile
43 lines
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 \
|
|
gstffmpegdec.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 \
|
|
gstffmpegcfg.h \
|
|
gstffmpegpipe.h
|