gstreamer/gst/debugutils/meson.build
Thibault Saunier 4984af5917 debugutils: Add a testsrcbin element
This is a simple Bin that will expose audiotestsrc or videotestsrc
based on what is asked by the user either through the GstURIHandler
API or through the "stream-types" property.

This element also provides GstStream and GstStreamCollection
so it is nicely usable from playbin3.

https://bugzilla.gnome.org/show_bug.cgi?id=795366
2018-04-19 11:10:54 -03:00

22 lines
484 B
Meson

debugutilsbad_sources = [
'gstdebugspy.c',
'gsterrorignore.c',
'debugutilsbad.c',
'fpsdisplaysink.c',
'gstchecksumsink.c',
'gstchopmydata.c',
'gstcompare.c',
'gstfakevideosink.c',
'gstwatchdog.c',
'gsttestsrcbin.c',
]
gstdebugutilsbad = library('gstdebugutilsbad',
debugutilsbad_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep, gstvideo_dep],
install : true,
install_dir : plugins_install_dir,
)