avcodec_close() private method

private avcodec_close ( IntPtr avctx ) : Int32
avctx IntPtr
return System.Int32
Esempio n. 1
0
 public void Close()
 {
     foreach (var decoder in decoderTable)
     {
         AV.avcodec_close(decoder.Value);
     }
     if (rawFormatCtx != null)
     {
         AV.avformat_free_context(rawFormatCtx);
     }
 }