Qt: Add prompt to missing ffmpeg warning

This commit is contained in:
KamFretoZ 2024-07-22 11:13:46 +07:00 committed by Ty
parent b2ac7afbcb
commit 9172a1a6f8
1 changed files with 7 additions and 5 deletions

View File

@ -299,7 +299,9 @@ bool GSCapture::LoadFFmpeg(bool report_errors)
" libavformat: {}\n" " libavformat: {}\n"
" libavutil: {}\n" " libavutil: {}\n"
" libswscale: {}\n" " libswscale: {}\n"
" libswresample: {}\n"), LIBAVCODEC_VERSION_MAJOR, LIBAVFORMAT_VERSION_MAJOR, LIBAVUTIL_VERSION_MAJOR, " libswresample: {}\n\n"
"Please see our official documentation for more information."),
LIBAVCODEC_VERSION_MAJOR, LIBAVFORMAT_VERSION_MAJOR, LIBAVUTIL_VERSION_MAJOR,
LIBSWSCALE_VERSION_MAJOR, LIBSWRESAMPLE_VERSION_MAJOR)); LIBSWSCALE_VERSION_MAJOR, LIBSWRESAMPLE_VERSION_MAJOR));
} }