mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
a959c410d9
two sinks are provided. gtksink which is a cairo/software based renderer and gtkglsink which utilises the GL support in gtk and gstreamer.
22 lines
376 B
Makefile
22 lines
376 B
Makefile
|
|
noinst_PROGRAMS = gtksink
|
|
|
|
gtksink_SOURCES = gtksink.c
|
|
gtksink_CFLAGS = $(GTK3_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
gtksink_LDADD = $(GTK3_LIBS) \
|
|
$(GST_LIBS)
|
|
|
|
if USE_GTK3_GL
|
|
if USE_GL
|
|
noinst_PROGRAMS += gtkglsink
|
|
|
|
gtkglsink_SOURCES = gtkglsink.c
|
|
gtkglsink_CFLAGS = $(GTK3_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GL_CFLAGS)
|
|
gtkglsink_LDADD = $(GTK3_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GL_LIBS)
|
|
endif
|
|
endif
|