mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
3e0db49f5b
Otherwise, since 1.12, the plugin gets blacklisted. https://bugzilla.gnome.org/show_bug.cgi?id=785168
16 lines
453 B
Meson
16 lines
453 B
Meson
d3dvideosink_sources = [
|
|
'd3dhelpers.c',
|
|
'd3dvideosink.c',
|
|
]
|
|
|
|
if host_system == 'windows' and cc.has_header('d3d9.h')
|
|
d3dvideosink_dep = [cc.find_library('d3d9'), cc.find_library('gdi32')]
|
|
|
|
gstd3dvideosink = library('gstd3d',
|
|
d3dvideosink_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstvideo_dep] + d3dvideosink_dep,
|
|
install : true,
|
|
install_dir : plugins_install_dir)
|
|
endif
|