avio_set_interrupt_cb 在新的 ffmpeg 版本中被弃用了吗?什么是替代品?
问问题
2135 次
1 回答
7
我自己找到了答案。这是如何完成的
您定义回调
int decode_interrupt_cb(void * ctx) {
return isQuit;
}
做一个回调结构
const AVIOInterruptCB int_cb = { decode_interrupt_cb, NULL };
AVFormatContext
在interrupt_callback
读取任何文件之前将其分配给您
pFormatCtx->interrupt_callback = int_cb;
如果您使用“avio_open2”打开文件,请像这样使用它:
int errCode = avio_open2(&pFormatCtx->pb, filename, AVIO_FLAG_READ, &pFormatCtx->interrupt_callback, NULL);
希望有人觉得它有帮助。
于 2013-01-15T01:57:44.473 回答