the addition of a thumbnailer that works for videos

the previewSlideDelegate now uses the thumbnails instead
This commit is contained in:
Chris Cochrun 2023-02-08 14:16:26 -06:00
parent 1b55be29e5
commit 014a38a4f9
11 changed files with 638 additions and 37 deletions

View file

@ -16,6 +16,15 @@ target_sources(presenter
cpp/presentationsqlmodel.cpp cpp/presentationsqlmodel.h
cpp/mpv/mpvobject.h cpp/mpv/mpvobject.cpp
cpp/mpv/qthelper.hpp cpp/mpv/mpvhelpers.h
cpp/framedecoder.h cpp/framedecoder.cpp
)
target_compile_options (presenter PUBLIC -fexceptions)
target_link_libraries(presenter PRIVATE
${AVUTIL_LIBRARIES}
${AVFILTER_LIBRARIES}
${AVFORMAT_LIBRARIES}
${AVCODEC_LIBRARIES}
${SWSCALE_LIBRARIES}
)