test/meson: add missing avutil dependency to chmap test

Found out with a CI image where FFmpeg is not located in the default
sysroot.
This commit is contained in:
Jan Ekström 2023-08-06 20:36:12 +03:00
parent 38b59408c2
commit 10087b4086
1 changed files with 2 additions and 1 deletions

View File

@ -77,7 +77,8 @@ if features['av-channel-layout']
endif
chmap_objects = libmpv.extract_objects(chmap_files)
chmap = executable('chmap', 'chmap.c', include_directories: incdir,
objects: chmap_objects, link_with: test_utils)
dependencies: [libavutil], objects: chmap_objects,
link_with: test_utils)
test('chmap', chmap)
gl_video_objects = libmpv.extract_objects('video/out/gpu/ra.c',