Page 2 of 2

Re: Access violation in TRVMFFMPEG.DeinitDecode function and Range check error in MD5Encode procedure

Posted: Thu Jul 30, 2020 10:59 am
by Sergey Tkachenko
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:

Code: Select all

  if codec_context = nil then
    exit;

Re: Access violation in TRVMFFMPEG.DeinitDecode function and Range check error in MD5Encode procedure

Posted: Wed Aug 12, 2020 12:14 pm
by Sergey Tkachenko
This fix is added in RVMedia 7.5.

Re: Access violation in TRVMFFMPEG.DeinitDecode function and Range check error in MD5Encode procedure

Posted: Thu Aug 13, 2020 10:51 am
by ya_vanka
Thanks a lot!