mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 15:36:35 +00:00
a8f8d1b032
There's a GstPlayerVideoRenderer interface now, which defines how video rendering happens in GstPlayer. Included is an implementation for the GstVideoOverlay interface, and inside the GTK example application one for gtksink/gtkglsink.
36 lines
1.2 KiB
Makefile
36 lines
1.2 KiB
Makefile
bin_PROGRAMS = gtk-play
|
|
|
|
gtk-play-resources.c: resources/gresources.xml \
|
|
resources/media_info_dialog.ui \
|
|
resources/toolbar.css \
|
|
resources/toolbar.ui
|
|
$(AM_V_GEN) \
|
|
glib-compile-resources \
|
|
--sourcedir=$(srcdir)/resources \
|
|
--target=$@ \
|
|
--generate-source \
|
|
--c-name as \
|
|
$(srcdir)/resources/gresources.xml
|
|
|
|
gtk-play-resources.h: resources/gresources.xml \
|
|
resources/media_info_dialog.ui \
|
|
resources/toolbar.css \
|
|
resources/toolbar.ui
|
|
$(AM_V_GEN) \
|
|
glib-compile-resources \
|
|
--sourcedir=$(srcdir)/resources \
|
|
--target=$@ \
|
|
--generate-header \
|
|
--c-name as \
|
|
$(srcdir)/resources/gresources.xml
|
|
|
|
BUILT_SOURCES: gtk-play-resources.c gtk-play-resources.h
|
|
|
|
gtk_play_SOURCES = gtk-play.c gtk-play-resources.c gtk-video-renderer.c
|
|
|
|
LDADD = $(top_builddir)/lib/gst/player/.libs/libgstplayer-@GST_PLAYER_API_VERSION@.la \
|
|
$(GSTREAMER_LIBS) $(GTK_LIBS) $(GTK_X11_LIBS) $(GLIB_LIBS) $(LIBM) $(GMODULE_LIBS)
|
|
|
|
AM_CFLAGS = -I$(top_srcdir)/lib -I$(top_builddir)/lib $(GSTREAMER_CFLAGS) $(GTK_CFLAGS) $(GTK_X11_CFLAGS) $(GLIB_CFLAGS) $(GMODULE_CFLAGS)
|
|
|
|
noinst_HEADERS = gtk-play-resources.h gtk-video-renderer.h
|