当前位置: 首页>>代码示例>>C#>>正文


C# AutoGen.AVFormatContext类代码示例

本文整理汇总了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);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例2: av_new_program

 public static extern AVProgram* av_new_program(AVFormatContext* s, int id);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例3: avdevice_capabilities_free

 public static extern void avdevice_capabilities_free(AVDeviceCapabilitiesQuery** caps, AVFormatContext* s);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例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);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例5: avformat_match_stream_specifier

 public static extern int avformat_match_stream_specifier(AVFormatContext* s, AVStream* st, String spec);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例6: av_guess_sample_aspect_ratio

 public static extern AVRational av_guess_sample_aspect_ratio(AVFormatContext* format, AVStream* stream, AVFrame* frame);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例7: av_dump_format

 public static extern void av_dump_format(AVFormatContext* ic, int index, String url, int is_output);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例8: av_get_output_timestamp

 public static extern int av_get_output_timestamp(AVFormatContext* s, int stream, long* dts, long* wall);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例9: av_read_frame

 public static extern int av_read_frame(AVFormatContext* s, AVPacket* pkt);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例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);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例11: av_find_program_from_stream

 public static extern AVProgram* av_find_program_from_stream(AVFormatContext* ic, AVProgram* last, int s);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例12: avformat_find_stream_info

 public static extern int avformat_find_stream_info(AVFormatContext* ic, AVDictionary** options);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例13: av_demuxer_open

 public static extern int av_demuxer_open(AVFormatContext* ic);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例14: avformat_open_input

 public static extern int avformat_open_input(AVFormatContext** ps, String filename, AVInputFormat* fmt, AVDictionary** options);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs

示例15: avformat_alloc_output_context2

 public static extern int avformat_alloc_output_context2(AVFormatContext** ctx, AVOutputFormat* oformat, String format_name, String filename);
开发者ID:nbomeroglu37,项目名称:FFmpeg.Wrapper,代码行数:1,代码来源:FFmpegInvoke.cs


注:本文中的FFmpeg.AutoGen.AVFormatContext类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。