From 367d2adfcd9eef98c2ead6b483952936aadbb822 Mon Sep 17 00:00:00 2001 From: ChristianFeldmann Date: Mon, 14 Oct 2024 11:10:09 +0200 Subject: [PATCH] Next failure --- YUViewLib/src/parser/AVFormat/ParserAVFormat.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/YUViewLib/src/parser/AVFormat/ParserAVFormat.cpp b/YUViewLib/src/parser/AVFormat/ParserAVFormat.cpp index 1ae6eddc5..e0f7e22e2 100644 --- a/YUViewLib/src/parser/AVFormat/ParserAVFormat.cpp +++ b/YUViewLib/src/parser/AVFormat/ParserAVFormat.cpp @@ -580,7 +580,8 @@ bool ParserAVFormat::runParsingOfFile(const std::filesystem::path &compressedFil { // Open the file but don't parse it yet. FileSourceFFmpegFile ffmpegFile; - if (!ffmpegFile.openFile(QString::fromStdString(compressedFilePath), nullptr, nullptr, false)) + if (!ffmpegFile.openFile( + QString::fromStdString(compressedFilePath.string()), nullptr, nullptr, false)) { emit backgroundParsingDone("Error opening the ffmpeg file."); return false;