mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
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:
parent
f7bdf91ad7
commit
3649f13bb3
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ voaac_sources = ['gstvoaac.c', 'gstvoaacenc.c']
|
||||||
voaac_dep = dependency('vo-aacenc', required : get_option('voaacenc'))
|
voaac_dep = dependency('vo-aacenc', required : get_option('voaacenc'))
|
||||||
|
|
||||||
if voaac_dep.found()
|
if voaac_dep.found()
|
||||||
gstbz2 = library('gstvoaacenc',
|
gstvoaacenc = library('gstvoaacenc',
|
||||||
voaac_sources,
|
voaac_sources,
|
||||||
c_args : gst_plugins_bad_args,
|
c_args : gst_plugins_bad_args,
|
||||||
link_args : noseh_link_args,
|
link_args : noseh_link_args,
|
||||||
|
@ -12,5 +12,5 @@ if voaac_dep.found()
|
||||||
install : true,
|
install : true,
|
||||||
install_dir : plugins_install_dir,
|
install_dir : plugins_install_dir,
|
||||||
)
|
)
|
||||||
plugins += [gstbz2]
|
plugins += [gstvoaacenc]
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue