コード例 #1
0
ファイル: AVCodec.cs プロジェクト: NichUK/ffmpeg-shard
 public static extern void av_parser_close(ref AVCodecParserContext pAVCodecParserContext);
コード例 #2
0
ファイル: AVCodec.cs プロジェクト: NichUK/ffmpeg-shard
 public static extern int av_parser_parse(ref AVCodecParserContext pAVCodecParserContext,
     ref AVCodecContext pAVCodecContext,
     ref byte[] poutbuf, ref int poutbuf_size,
     byte[] buf, int buf_size, long pts, long dts);
コード例 #3
0
ファイル: AVCodec.cs プロジェクト: NichUK/ffmpeg-shard
 public static extern int av_parser_change(ref AVCodecParserContext pAVCodecParserContext,
     ref AVCodecContext pAVCodecContext,
     ref byte[] poutbuf, ref int poutbuf_size,
     byte[] buf, int buf_size, int keyframe);