mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
e4b8f77538
Original commit message from CVS: * configure.ac: * examples/Makefile.am: * examples/metadata/Makefile.am: * examples/metadata/read-metadata.c: (message_loop), (have_pad_handler), (make_pipeline), (print_tag), (main): Add metadata reading example that loops over a list of filenames, dumping any tags found. * gst/gstbus.c: (gst_bus_dispose): * gst/gstelement.c: (gst_element_dispose): Release a few potentially-held references in dispose.
29 lines
408 B
Makefile
29 lines
408 B
Makefile
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_DIRS =
|
|
else
|
|
GST_LOADSAVE_DIRS = xml typefind
|
|
endif
|
|
|
|
dirs = \
|
|
helloworld \
|
|
queue \
|
|
launch \
|
|
thread \
|
|
plugins \
|
|
mixer \
|
|
metadata \
|
|
controller \
|
|
cutter \
|
|
pingpong \
|
|
manual \
|
|
pwg \
|
|
retag
|
|
|
|
#queue2 \
|
|
#queue3 \
|
|
#queue4
|
|
|
|
SUBDIRS = $(dirs) \
|
|
$(GST_LOADSAVE_DIRS)
|
|
|
|
DIST_SUBDIRS = $(dirs) xml typefind
|