mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
dc160e7ca7
Serves as an example of usage of the new mpegts library from an application. Will parse/dump all sections received on a bus. Usage is ./tsparse <any gst-launch line using tsdemux or tsparse> Examples: ./tsparse file:///some/mpegtsfile ! tsparse ! fakesink ./tsparse dvb://CHANNEL ! tsparse ! fakesink ./tsparse playbin uri=dvb://CHANNEL ./tsparse playbin uri=file:///some/mpegtsfile ... https://bugzilla.gnome.org/show_bug.cgi?id=702724
24 lines
407 B
Makefile
24 lines
407 B
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
|
|
|
|
SUBDIRS= mpegts $(DIRECTFB_DIR) $(GTK_EXAMPLES) $(OPENCV_EXAMPLES)
|
|
DIST_SUBDIRS= mpegts camerabin2 directfb mxf opencv uvch264
|
|
|
|
include $(top_srcdir)/common/parallel-subdirs.mak
|