mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
c803ca4af5
- bump wayland version to 0.95.0 which will lead to stable 1.0 release - avoid memcopy and use propose_allocation for GstBufferPool allocation - using WaylandBufferPool - shm: Allocate shm buffers through new wl_shm_pool interface (the shm buffer allocation is a two step process now: first allocate a wl_shm_pool, then allocate a buffer from the pool) https://bugzilla.gnome.org/show_bug.cgi?id=681453
12 lines
569 B
Makefile
12 lines
569 B
Makefile
plugin_LTLIBRARIES = libgstwaylandsink.la
|
|
|
|
libgstwaylandsink_la_SOURCES = gstwaylandsink.c waylandpool.c
|
|
libgstwaylandsink_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(WAYLAND_CFLAGS)
|
|
libgstwaylandsink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
$(WAYLAND_LIBS) $(LIBOIL_LIBS)
|
|
libgstwaylandsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstwaylandsink_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstwaylandsink.h waylandpool.h
|