lc3: fix pkg-config file lookup

There's a mismatch between the pkg-config file ('lc3')
and the subproject/wrap which meant an installed liblc3
wasn't picked up.

Fixes #2883

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5151>
This commit is contained in:
Tim-Philipp Müller 2023-08-06 09:23:28 +01:00 committed by GStreamer Marge Bot
parent 171eefa06b
commit 1233b8a027
2 changed files with 3 additions and 1 deletions

View file

@ -4,7 +4,7 @@ lc3_sources = [
'gstlc3enc.c',
]
lc3_dep = dependency('liblc3', required:get_option ('lc3'))
lc3_dep = dependency('lc3', required:get_option ('lc3'))
if lc3_dep.found()
gstlc3 = library('gstlc3',

View file

@ -4,3 +4,5 @@ url=https://github.com/google/liblc3.git
depth=1
revision=v1.0.3
[provide]
lc3 = liblc3_dep