mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
11 lines
395 B
Meson
11 lines
395 B
Meson
|
|
ffmpeg_sources = ['ffmpeg.c',
|
||
|
|
'ffmpeg-dec.c',
|
||
|
|
'ffmpeg-enc.c']
|
||
|
|
|
||
|
|
ffmpeglib = shared_library('spa-ffmpeg',
|
||
|
|
ffmpeg_sources,
|
||
|
|
include_directories : inc,
|
||
|
|
dependencies : [ avcodec_dep, avformat_dep ],
|
||
|
|
link_with : spalib,
|
||
|
|
install : true)
|