avcodec_close() приватный Метод

private avcodec_close ( IntPtr avctx ) : Int32
avctx IntPtr
Результат System.Int32
Пример #1
0
 public void Close()
 {
     foreach (var decoder in decoderTable)
     {
         AV.avcodec_close(decoder.Value);
     }
     if (rawFormatCtx != null)
     {
         AV.avformat_free_context(rawFormatCtx);
     }
 }