av_find_stream_info的更新
时间: 2023-07-07 19:21:33 浏览: 81
update
5星 · 资源好评率100%
`av_find_stream_info` 已经被废弃,建议使用 `avformat_find_stream_info` 替代。`avformat_find_stream_info` 的函数签名如下:
```
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options);
```
它的作用是读取多媒体文件并获取流信息。在使用该函数之前,需要调用 `avformat_open_input` 函数打开文件。请注意,该函数可能会修改传递给它的 `AVFormatContext` 结构体,因此建议在此函数之前不要对其进行修改。
阅读全文