<div dir="ltr">I updated to the latest code from git and am getting a system access violation exception when calling avio_close if i set the format context pb->seekable=1<div><br></div><div>repro code here:</div><div><br></div><div>            var outputFormat = av_guess_format("mp4", @"D:\test.mp4", null);<br>            var formatContext = avformat_alloc_context();<br>            formatContext->oformat = outputFormat;<br>            var videoStream = avformat_new_stream(formatContext, null);<br>            var videoCodec = avcodec_find_encoder(AVCodecID.AV_CODEC_ID_H264);<br>            var videoCodecContext = avcodec_alloc_context3(videoCodec);<br>            avcodec_open2(videoCodecContext, videoCodec, null);<br>            avio_open(&formatContext->pb, @"D:\test.mp4", AVIO_FLAG_WRITE);<br>            formatContext->pb->seekable = 1; //<-- comment out to fix<br>            avformat_write_header(formatContext, null);<br>            avio_close(formatContext->pb);//<-- crashes<br></div></div>