RVMedia support and discussion (components for displaying and controlling IP cameras, webcams, video conferencing, video chats, recording audio and video files)
try
// Open video file
if not OpenFile(FormatContext, DecCurTime, filename) then
begin
try
av_free(FormatContext);
finally
FormatContext := nil;
end;
exit;
end;
except
exit;
end;
How can I silence this exception in order to continue running my application?