mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +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.
15 lines
550 B
Makefile
15 lines
550 B
Makefile
plugin_LTLIBRARIES = libgstavscale.la
|
|
|
|
libgstavscale_la_SOURCES = gstffmpegscale.c
|
|
|
|
libgstavscale_la_CFLAGS = $(SWSCALE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(ORC_CFLAGS)
|
|
libgstavscale_la_LIBADD = $(SWSCALE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(ORC_LIBS) $(LIBM) -lz
|
|
libgstavscale_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(DARWIN_LDFLAGS)
|
|
libgstavscale_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
if HAVE_LIBAV_UNINSTALLED
|
|
libgstavscale_la_DEPENDENCIES = $(SWSCALE_LIBS)
|
|
endif
|