mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-15 08:56:38 -05:00
pw-cat: Enable libavutil logs
This is useful for debugging pw-cat encoded audio playback errors.
This commit is contained in:
parent
da21cfa93c
commit
580a3d9872
3 changed files with 9 additions and 4 deletions
|
|
@ -269,13 +269,14 @@ if not readline_dep.found()
|
|||
endif
|
||||
|
||||
# Both the FFmpeg SPA plugin and the pw-cat FFmpeg integration use libavcodec.
|
||||
# But only the latter also needs libavformat.
|
||||
# But only the latter also needs libavformat and libavutil.
|
||||
# Search for these libraries here, globally, so both of these subprojects can reuse the results.
|
||||
pw_cat_ffmpeg = get_option('pw-cat-ffmpeg')
|
||||
ffmpeg = get_option('ffmpeg')
|
||||
if pw_cat_ffmpeg.allowed() or ffmpeg.allowed()
|
||||
avcodec_dep = dependency('libavcodec', required: pw_cat_ffmpeg.enabled() or ffmpeg.enabled())
|
||||
avformat_dep = dependency('libavformat', required: pw_cat_ffmpeg.enabled())
|
||||
avutil_dep = dependency('libavutil', required: pw_cat_ffmpeg.enabled())
|
||||
else
|
||||
avcodec_dep = dependency('', required: false)
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue