V4L2 camera support, raw pixel video support, added MistProcAV, improved MistProcFFMPEG

Co-authored-by: Thulinma <jaron@vietors.com>
Co-authored-by: Balder <balder.vietor@ddvtech.com>
This commit is contained in:
Marco van Dijk 2023-11-22 16:33:45 +01:00 committed by Thulinma
parent c990f49b0e
commit f009856b64
35 changed files with 3934 additions and 633 deletions

View file

@ -168,6 +168,15 @@ if not get_option('NORIST')
endif
have_librist = not get_option('NORIST') and librist.found()
av_libs = []
if get_option('WITH_AV')
av_libs += dependency('libswscale')
av_libs += dependency('libavformat')
av_libs += dependency('libavcodec')
av_libs += dependency('libavutil')
av_libs += dependency('libswresample')
endif
# Add thread dependency since we always have thread code in libmist
mist_deps += dependency('threads')