- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 FFMPEG 解码来自网络摄像机的 H264 流。有很多相机,所以我使用 FFMPEG 的多线程。
我通过以下代码向 FFMPEG 注册了多线程
static int lockmgr(void **mtx, enum AVLockOp op)
{
switch (op)
{
case AV_LOCK_CREATE:
*mtx = malloc(sizeof(pthread_mutex_t));
if (!*mtx)
return 1;
return !!pthread_mutex_init((pthread_mutex_t*)*mtx, NULL);
case AV_LOCK_OBTAIN:
return !!pthread_mutex_lock((pthread_mutex_t*)*mtx);
case AV_LOCK_RELEASE:
return !!pthread_mutex_unlock((pthread_mutex_t*)*mtx);
case AV_LOCK_DESTROY:
pthread_mutex_destroy((pthread_mutex_t*)*mtx);
free(*mtx);
return 0;
}
return 1;
}
av_lockmgr_register(lockmgr)
在每个连接到网络摄像机的线程中,解码来自该网络摄像机的H264流的代码如下
int DecodeStream()
{
try
{
InitForH264Stream();
int bytesDecoded = 0;
int frameFinished = 0;
while (commonGlobal->settings.iPCameraSettigs.isRunningThreadRequestVideo[rtpHeader->cameraInd])
{
while (_packet->size > 0)
{
// Decode the next chunk of data
bytesDecoded = avcodec_decode_video2(rtpHeader->pCodecCtx, rtpHeader->pFrame,
&frameFinished, _packet);
// Was there an error?
if (bytesDecoded < 0)
{
if (rtpHeader->packetPointer != NULL)
{
_packet->data = rtpHeader->packetPointer;
rtpHeader->packetPointer = NULL;
av_free_packet(_packet);
}
return RS_NOT_OK;
}
_packet->size -= bytesDecoded;
_packet->data += bytesDecoded;
if (rtpHeader->packetPointer != NULL && _packet->size == 0)
{
_packet->data = rtpHeader->packetPointer;
rtpHeader->packetPointer = NULL;
av_free_packet(_packet);
}
if (frameFinished)
{
return RS_OK;
}
// Did we finish the current frame? Then we can return
}
do
{
try
{
av_init_packet(_packet);
rtpHeader->th->Reset();
int ret = AVERROR(EAGAIN);
while (AVERROR(EAGAIN) == ret)
ret = av_read_frame(pFormatCtx, _packet);
if (ret < 0)
{
if (ret == AVERROR(AVERROR_EOF) || (pFormatCtx->pb && pFormatCtx->pb->eof_reached))
{
sprintf(strErr, "Error end of file line %d", __LINE__);
}
if (pFormatCtx->pb && pFormatCtx->pb->error)
{
sprintf(strErr, "Error end of file line %d", __LINE__);
}
_packet->data = NULL;
return RS_NOT_OK;
}
if (_packet->stream_index != rtpHeader->videoStreamInd)
av_free_packet(_packet);
else
rtpHeader->packetPointer = _packet->data;
}
catch (...)
{
_packet->data = NULL;
return RS_NOT_OK;
}
} while (_packet->stream_index != rtpHeader->videoStreamInd);
}
}
catch (...)
{
_packet = NULL;
commonGlobal->WriteRuntimeLogs("ReceiveRTPBlock() threw an Exception");
UnInitForH264Stream();
return RS_NOT_OK;
}
}
VOID UnInitForH264Stream()
{
if (rtpHeader.pCodecCtx != NULL)
avcodec_close(rtpHeader.pCodecCtx);
if (pFormatCtx != NULL)
av_close_input_file(pFormatCtx);
if (rtpHeader.th != NULL)
{
delete rtpHeader.th;
rtpHeader.th = NULL;
}
if (rtpHeader.pFrame != NULL)
avcodec_free_frame(&rtpHeader.pFrame);
if (RGBFrame != NULL)
{
avcodec_free_frame(&RGBFrame);
RGBFrame = NULL;
}
if (ConversionContext != NULL)
{
sws_freeContext(ConversionContext);
ConversionContext = NULL;
}
if (rgbBuffer != NULL)
{
av_free(rgbBuffer);
rgbBuffer = NULL;
}
}
当函数 avcodec_decode_video2()
抛出异常时我遇到了死锁,然后在 行调用
我已经修复了,也许函数 UnInitForH264Stream()
时程序死锁了avcodec_close(rtpHeader.pCodecCtx);avcodec_decode_video2()
可以正常工作(不会抛出异常)。
但是现在,有时在解码时遇到死锁,但我不知道是哪个函数导致了死锁。因为这个 bug 很难重现。
有人可以告诉我我的代码中是否存在潜在的死锁?
非常感谢!
最佳答案
This libav thread 显示了一个稍微不同的锁实现。
此外,您似乎在解码函数中初始化了 ffmpeg。 This thread here 似乎指向这样的结论:即使您正确声明了 lockmgr,打开和关闭流也不是线程安全操作。您应该考虑将它们移动到您的流开始的中央同步位置
关于c++ - FFMPEG:多线程解码死锁?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26772104/
我有类似下面的代码: ... id: myComponent signal updateState() property variant modelList: [] Repeater { mo
我正在处理一些我无法展示的私有(private)代码,但我已经制作了一些示例代码来描述我的问题: 主.c: #include #include #include #include typede
这个问题在这里已经有了答案: 关闭10 年前。 Possible Duplicate: what are the differences in die() and exit() in PHP? 我想
在编写 Perl 模块时,在模块内部使用 croak/die 是一个好习惯吗? 毕竟,如果调用者不使用 eval block ,模块可能会使调用它的程序崩溃。 在这些情况下,最佳做法是什么? 最佳答案
我有一些搜索线程正在存储结果。我知道当线程启动时,JVM native 代码会代理在操作系统上创建新 native 线程的请求。这需要 JVM 之外的一些内存。当线程终止并且我保留对它的引用并将其用作
我刚刚花了很多时间调试一个我追溯到 wantarray() 的问题。 .我已将其提炼为这个测试用例。 (忽略 $! 在这种情况下不会有任何有用信息的事实)。我想知道为什么wantarray在第二个示例
我看到一些代码是这样做的: if(something){ echo 'exit from program'; die; } ...more code 和其他只使用 die 的人: if
我正在尝试将此表格用于: 如果任何 $_POST 变量等于任何其他 $_POST 变量抛出错误。 如果只有几个,那不是问题,但我有大约 20 个左右所以如果我想这样做,我将不得不像这样 但这
每次我运行: hadoop dfsadmin -report 我得到以下输出: Configured Capacity: 0 (0 KB) Present Capacity: 0 (0 KB) DFS
我是一名优秀的程序员,十分优秀!