本文整理汇总了C#中FFmpeg.AutoGen.AVFormatContext类的典型用法代码示例。如果您正苦于以下问题:C# AVFormatContext类的具体用法?C# AVFormatContext怎么用?C# AVFormatContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AVFormatContext类属于FFmpeg.AutoGen命名空间,在下文中一共展示了AVFormatContext类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: av_guess_frame_rate
public static extern AVRational av_guess_frame_rate(AVFormatContext* ctx, AVStream* stream, AVFrame* frame);
示例2: av_new_program
public static extern AVProgram* av_new_program(AVFormatContext* s, int id);
示例3: avdevice_capabilities_free
public static extern void avdevice_capabilities_free(AVDeviceCapabilitiesQuery** caps, AVFormatContext* s);
示例4: avdevice_dev_to_app_control_message
public static extern int avdevice_dev_to_app_control_message(AVFormatContext* s, AVDevToAppMessageType type, void* data, uint data_size);
示例5: avformat_match_stream_specifier
public static extern int avformat_match_stream_specifier(AVFormatContext* s, AVStream* st, String spec);
示例6: av_guess_sample_aspect_ratio
public static extern AVRational av_guess_sample_aspect_ratio(AVFormatContext* format, AVStream* stream, AVFrame* frame);
示例7: av_dump_format
public static extern void av_dump_format(AVFormatContext* ic, int index, String url, int is_output);
示例8: av_get_output_timestamp
public static extern int av_get_output_timestamp(AVFormatContext* s, int stream, long* dts, long* wall);
示例9: av_read_frame
public static extern int av_read_frame(AVFormatContext* s, AVPacket* pkt);
示例10: av_find_best_stream
public static extern int av_find_best_stream(AVFormatContext* ic, AVMediaType type, int wanted_stream_nb, int related_stream, AVCodec** decoder_ret, int flags);
示例11: av_find_program_from_stream
public static extern AVProgram* av_find_program_from_stream(AVFormatContext* ic, AVProgram* last, int s);
示例12: avformat_find_stream_info
public static extern int avformat_find_stream_info(AVFormatContext* ic, AVDictionary** options);
示例13: av_demuxer_open
public static extern int av_demuxer_open(AVFormatContext* ic);
示例14: avformat_open_input
public static extern int avformat_open_input(AVFormatContext** ps, String filename, AVInputFormat* fmt, AVDictionary** options);
示例15: avformat_alloc_output_context2
public static extern int avformat_alloc_output_context2(AVFormatContext** ctx, AVOutputFormat* oformat, String format_name, String filename);