mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-07-07 00:07:11 -04:00
filter-graph: add an ffmpeg plugin
Allows for using an ffmpeg filter-graph as a filter-graph node.
This commit is contained in:
parent
9b36e576cb
commit
94116901ce
4 changed files with 389 additions and 0 deletions
|
|
@ -342,10 +342,12 @@ 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())
|
||||
avfilter_dep = dependency('libavfilter', required: ffmpeg.enabled())
|
||||
avutil_dep = dependency('libavutil', required: pw_cat_ffmpeg.enabled() or ffmpeg.enabled())
|
||||
swscale_dep = dependency('libswscale', required: pw_cat_ffmpeg.enabled() or ffmpeg.enabled())
|
||||
else
|
||||
avcodec_dep = dependency('', required: false)
|
||||
avfilter = dependency('', required: false)
|
||||
endif
|
||||
cdata.set('HAVE_PW_CAT_FFMPEG_INTEGRATION', pw_cat_ffmpeg.allowed())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue