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);
     }
 }