From 3649f13bb3013da87b877471f5e73423ca379aa6 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Mon, 1 Apr 2024 00:52:16 +0300 Subject: [PATCH] meson: Don't confuse voaacenc plugin with bz2 one in meson variable names No actual issue was observed from the previous naming duplicating bz2 one, so just a correctness tweak. Part-of: --- subprojects/gst-plugins-bad/ext/voaacenc/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-bad/ext/voaacenc/meson.build b/subprojects/gst-plugins-bad/ext/voaacenc/meson.build index ab641b6631..748f08b944 100644 --- a/subprojects/gst-plugins-bad/ext/voaacenc/meson.build +++ b/subprojects/gst-plugins-bad/ext/voaacenc/meson.build @@ -3,7 +3,7 @@ voaac_sources = ['gstvoaac.c', 'gstvoaacenc.c'] voaac_dep = dependency('vo-aacenc', required : get_option('voaacenc')) if voaac_dep.found() - gstbz2 = library('gstvoaacenc', + gstvoaacenc = library('gstvoaacenc', voaac_sources, c_args : gst_plugins_bad_args, link_args : noseh_link_args, @@ -12,5 +12,5 @@ if voaac_dep.found() install : true, install_dir : plugins_install_dir, ) - plugins += [gstbz2] + plugins += [gstvoaacenc] endif