mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
e97877dc7e
ipcpipeline1 is a very simple test that shows a short videotestsrc fragment. ipc-play is a clone of gst-play that splits the pipeline in two processes, running the source & demuxer on the master process and the decoders & sinks on the slave.
66 lines
1.1 KiB
Makefile
66 lines
1.1 KiB
Makefile
if USE_UVCH264
|
|
UVCH264_DIR=uvch264
|
|
else
|
|
UVCH264_DIR=
|
|
endif
|
|
|
|
if HAVE_GTK
|
|
GTK_EXAMPLES=mxf camerabin2 $(UVCH264_DIR)
|
|
else
|
|
GTK_EXAMPLES=
|
|
endif
|
|
|
|
if USE_DIRECTFB
|
|
DIRECTFB_DIR=directfb
|
|
else
|
|
DIRECTFB_DIR=
|
|
endif
|
|
|
|
OPENCV_EXAMPLES=opencv
|
|
|
|
MATRIXMIX_DIR=audiomixmatrix
|
|
|
|
if USE_OPENGL
|
|
GL_DIR=gl
|
|
else
|
|
GL_DIR=
|
|
endif
|
|
|
|
if HAVE_AVFOUNDATION
|
|
if HAVE_IOS
|
|
AVSAMPLE_DIR=
|
|
else
|
|
AVSAMPLE_DIR=avsamplesink
|
|
endif
|
|
else
|
|
AVSAMPLE_DIR=
|
|
endif
|
|
|
|
if USE_GTK3
|
|
GTK3_DIR=gtk
|
|
else
|
|
GTK3_DIR=
|
|
endif
|
|
|
|
if USE_WAYLAND
|
|
if HAVE_GTK3
|
|
WAYLAND_DIR=waylandsink
|
|
else
|
|
WAYLAND_DIR=
|
|
endif
|
|
else
|
|
WAYLAND_DIR=
|
|
endif
|
|
|
|
noinst_PROGRAMS = playout
|
|
|
|
playout_SOURCES = playout.c
|
|
playout_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
playout_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_LIBS)
|
|
|
|
SUBDIRS= codecparsers mpegts $(DIRECTFB_DIR) $(GTK_EXAMPLES) $(OPENCV_EXAMPLES) \
|
|
$(GL_DIR) $(GTK3_DIR) $(AVSAMPLE_DIR) $(WAYLAND_DIR) $(MATRIXMIX_DIR)
|
|
DIST_SUBDIRS= codecparsers mpegts camerabin2 directfb mxf opencv uvch264 gl gtk \
|
|
avsamplesink waylandsink audiomixmatrix ipcpipeline
|
|
|
|
include $(top_srcdir)/common/parallel-subdirs.mak
|