我正在尝试使用 ffmpeg 处理来自 UDP 流的帧。一切都会在一段时间内正常运行,但av_read_frame()
最终总是会返回AVERROR_EXIT
(请求立即退出)或-5
(发生错误号 -5),而流仍应正常运行。就在错误之前,它总是将以下消息打印到控制台
[mpeg2video @ 0caf6600] ac-tex damaged at 14 10
[mpeg2video @ 0caf6600] Warning MVs not available
[mpeg2video @ 0caf6600] concealing 800 DC, 800 AC, 800 MV errors in I frame
(消息中的数字因运行而异)
我怀疑该错误与调用av_read_frame
太快有关。如果我让它尽可能快地运行,我通常会在 10-20 帧内出现错误,但如果我在阅读之前休眠,它会运行一分钟左右,然后退出并出现错误。我意识到这是 hacky 并假设有更好的解决方案。底线:有没有办法动态检查'av_read_frame()'是否准备好被调用?或抑制错误的方法?
我在下面做的伪代码。在此先感谢您的帮助!
void getFrame()
{
//wait here?? seems hacky...
//boost::this_thread::sleep(boost::posix_time::milliseconds(25));
int av_read_frame_error = av_read_frame(m_input_format_context, &m_input_packet);
if(av_read_frame_error == 0){
//DO STUFF - this all works fine when it gets here
}
else{
//error
char errorBuf[AV_ERROR_MAX_STRING_SIZE];
av_make_error_string(errorBuf, AV_ERROR_MAX_STRING_SIZE, av_read_frame_error);
cout << "FFMPEG Input Stream Exit Code: " << av_read_frame_error << " Message: " << errorBuf << endl;
}
}