Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 31328c30 authored by DIB Elian's avatar DIB Elian
Browse files

Catch exception if no encoding log file

parent adc7d1fe
No related branches found
No related tags found
No related merge requests found
...@@ -128,7 +128,11 @@ if status ...@@ -128,7 +128,11 @@ if status
end end
end end
[nbBits,peaksnr] = HEVC.parseLog(LogFileEnc); try
[nbBits,peaksnr] = HEVC.parseLog(LogFileEnc);
catch
[nbBits,peaksnr] = deal(NaN);
end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment