mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
f0c676c0f9
This is a wrapper around fakesink that will advertise GstVideoMeta and other meta API in order to achieve zero-copy whenever possible. his new element is useful when doing performance testing with video stream and don't want the sink capability to change the upstream behaviour. https://bugzilla.gnome.org/show_bug.cgi?id=793624
20 lines
463 B
Meson
20 lines
463 B
Meson
debugutilsbad_sources = [
|
|
'gstdebugspy.c',
|
|
'gsterrorignore.c',
|
|
'debugutilsbad.c',
|
|
'fpsdisplaysink.c',
|
|
'gstchecksumsink.c',
|
|
'gstchopmydata.c',
|
|
'gstcompare.c',
|
|
'gstfakevideosink.c',
|
|
'gstwatchdog.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,
|
|
)
|