Re: Access violation in TRVMFFMPEG.DeinitDecode function and Range check error in MD5Encode procedure
Posted: Thu Jul 30, 2020 10:59 am
I confirm the problem with DeInitDecode.
The problem occurs after unsuccessful attempt to reconnect to the closed stream.
Quick fix: Open MRVFFmpegSW.pas, find the procedure DoneCodecContext.
At the very beginning of this procedure, add:
The problem occurs after unsuccessful attempt to reconnect to the closed stream.
Quick fix: Open MRVFFmpegSW.pas, find the procedure DoneCodecContext.
At the very beginning of this procedure, add:
Code: Select all
if codec_context = nil then
exit;