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

RVMedia support and discussion (components for displaying and controlling IP cameras, webcams, video conferencing, video chats, recording audio and video files)
Sergey Tkachenko
Site Admin
Posts: 17253
Joined: Sat Aug 27, 2005 10:28 am
Contact:

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

Post 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;
Post Reply