diff --git a/ext/dash/meson.build b/ext/dash/meson.build index a9bb550e80..a6f1b5db4d 100644 --- a/ext/dash/meson.build +++ b/ext/dash/meson.build @@ -11,7 +11,7 @@ xml2_dep = dependency('libxml-2.0', ) if xml2_dep.found() - gstsouphttpsrc = library('gstdashdemux', + gstdashdemux = library('gstdashdemux', dash_sources, c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'], link_args : noseh_link_args, @@ -21,6 +21,6 @@ if xml2_dep.found() install : true, install_dir : plugins_install_dir, ) - pkgconfig.generate(gstsouphttpsrc, install_dir : plugins_pkgconfig_install_dir) - plugins += [gstsouphttpsrc] + pkgconfig.generate(gstdashdemux, install_dir : plugins_pkgconfig_install_dir) + plugins += [gstdashdemux] endif