avformat_free_context() private method

private avformat_free_context ( IntPtr s ) : void
s IntPtr
return void
示例#1
0
 public void Close()
 {
     foreach (var decoder in decoderTable)
     {
         AV.avcodec_close(decoder.Value);
     }
     if (rawFormatCtx != null)
     {
         AV.avformat_free_context(rawFormatCtx);
     }
 }