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: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6496>
This commit is contained in:
Mart Raudsepp 2024-04-01 00:52:16 +03:00
parent f7bdf91ad7
commit 3649f13bb3

View file

@ -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