mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 20:31:36 +00:00
a394b27dc9
Original commit message from CVS: * ext/gdk_pixbuf/Makefile.am: * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): * ext/gdk_pixbuf/gstgdkpixbuf.h: Add new pixbufscale element to scale RGB video using gdk_pixbuf, because gdk_pixbuf does BILINEAR and HYPER interpolation correctly. * ext/theora/theoraenc.c: (theora_enc_chain), Discard buffer and return if explicit caps could not be set (theora_enc_get_property): Make _get return kbps for the bitrate consistent with the _set function.
32 lines
910 B
Makefile
32 lines
910 B
Makefile
plugin_LTLIBRARIES = libgstgdkpixbuf.la
|
|
|
|
libgstgdkpixbuf_la_SOURCES = gstgdkpixbuf.c pixbufscale.c
|
|
libgstgdkpixbuf_la_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
libgstgdkpixbuf_la_LIBADD = $(GTK_LIBS)
|
|
libgstgdkpixbuf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
if HAVE_GDK_LOADERS
|
|
loaderdir = $(DESTDIR)$(GDK_PIXBUF_LOADER_DIR)
|
|
loader_LTLIBRARIES = gst_loader.la
|
|
|
|
install-data-hook:
|
|
if test -z "$(DESTDIR)" ; then \
|
|
$(mkinstalldirs) $(DESTDIR)$(GDK_PIXBUF_CONF_DIR) ; \
|
|
$(QUERYLOADERS) > $(DESTDIR)$(GDK_PIXBUF_CONF_DIR)/gdk-pixbuf.loaders ; \
|
|
fi
|
|
|
|
gst_loader_la_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -DGDK_PIXBUF_ENABLE_BACKEND
|
|
gst_loader_la_SOURCES = \
|
|
gstgdkanimation.c \
|
|
gst_loader.c
|
|
gst_loader_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) --avoid-version --module
|
|
gst_loader_la_LIBADD = $(GTK_LIBS) $(GST_LIBS)
|
|
else
|
|
install-data-hook:
|
|
true
|
|
endif
|
|
|
|
noinst_HEADERS = gstgdkpixbuf.h \
|
|
pixbufscale.h \
|
|
gstgdkanimation.h
|
|
|