mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
862aa25e53
Fix for a regression from commit 8f1384c9
. That commit moved the debug
category definition, as static, into a gstvideocropelement.c, but that
category was used as default, in gstvideocrop.c, so it was never used
at logging, so the debug selector never showed the logs for
videocrop.
This patch move back the category definition into gstvideocrop.c and
leaving the function videocrop_element_init() as a noop.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/1049>
10 lines
403 B
Meson
10 lines
403 B
Meson
gstvideocrop = library('gstvideocrop',
|
|
'gstvideocrop.c', 'gstaspectratiocrop.c', 'gstvideocropplugin.c',
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gst_dep, gstbase_dep, gstvideo_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstvideocrop, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstvideocrop]
|