gstreamer/gst/debugutils/meson.build
Nicolas Dufresne a6ebda3907 debugutils: Introduce videocodectestsink
This is a video specific sink used to test video CODEC conformance. This is similar
to a combination of filesink and testsink, but will skip over any type of
padding that GStreamer Video library introduces. This is needed in order to obtain the
correct checksum or raw yuv data.

This element currently support writing back non-padded raw I420 through the
location property and will calculate an MD5 and post it as an element message
of type conformance/checksum. More output format or checksum type could be
added in the future as needed.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2287>
2021-06-07 17:11:32 -04:00

26 lines
706 B
Meson

debugutilsbad_sources = [
'debugutilsbad.c',
'fpsdisplaysink.c',
'gstchecksumsink.c',
'gstchopmydata.c',
'gstclockselect.c',
'gstcompare.c',
'gstdebugspy.c',
'gsterrorignore.c',
'gstfakeaudiosink.c',
'gstfakevideosink.c',
'gsttestsrcbin.c',
'gstvideocodectestsink.c',
'gstwatchdog.c',
]
gstdebugutilsbad = library('gstdebugutilsbad',
debugutilsbad_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep, gstvideo_dep, gstnet_dep, gstaudio_dep, gio_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstdebugutilsbad, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstdebugutilsbad]