本文整理汇总了C#中FFmpeg.AutoGen.AVCodecContext类的典型用法代码示例。如果您正苦于以下问题:C# AVCodecContext类的具体用法?C# AVCodecContext怎么用?C# AVCodecContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AVCodecContext类属于FFmpeg.AutoGen命名空间,在下文中一共展示了AVCodecContext类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: av_codec_set_chroma_intra_matrix
public static extern void av_codec_set_chroma_intra_matrix(AVCodecContext* avctx, ushort* val);
示例2: avcodec_flush_buffers
public static extern void avcodec_flush_buffers(AVCodecContext* avctx);
示例3: av_bitstream_filter_filter
public static extern int av_bitstream_filter_filter(AVBitStreamFilterContext* bsfc, AVCodecContext* avctx, String args, byte** poutbuf, int* poutbuf_size, byte* buf, int buf_size, int keyframe);
示例4: avcodec_default_get_format
public static extern AVPixelFormat avcodec_default_get_format(AVCodecContext* s, AVPixelFormat* fmt);
示例5: avcodec_string
public static extern void avcodec_string(sbyte* /*String*/ buf, int buf_size, AVCodecContext* enc, int encode);
示例6: avcodec_encode_audio
public static extern int avcodec_encode_audio(AVCodecContext* avctx, byte* buf, int buf_size, short* samples);
示例7: avcodec_encode_video2
public static extern int avcodec_encode_video2(AVCodecContext* avctx, AVPacket* avpkt, AVFrame* frame, int* got_packet_ptr);
示例8: avcodec_default_release_buffer
public static extern void avcodec_default_release_buffer(AVCodecContext* s, AVFrame* pic);
示例9: avcodec_default_reget_buffer
public static extern int avcodec_default_reget_buffer(AVCodecContext* s, AVFrame* pic);
示例10: avcodec_open2
public static extern int avcodec_open2(AVCodecContext* avctx, AVCodec* codec, AVDictionary** options);
示例11: avcodec_close
public static extern int avcodec_close(AVCodecContext* avctx);
示例12: avcodec_copy_context
public static extern int avcodec_copy_context(AVCodecContext* dest, AVCodecContext* src);
示例13: avcodec_get_context_defaults3
public static extern int avcodec_get_context_defaults3(AVCodecContext* s, AVCodec* codec);
示例14: avcodec_free_context
public static extern void avcodec_free_context(AVCodecContext** avctx);
示例15: av_parser_parse2
public static extern int av_parser_parse2(AVCodecParserContext* s, AVCodecContext* avctx, byte** poutbuf, int* poutbuf_size, byte* buf, int buf_size, long pts, long dts, long pos);