Commit 76a86847376b52fa63aff207a658053d04c025e0
1 parent
9109833b
修复易卡死问题
Showing
1 changed file
with
0 additions
and
2 deletions
src/decoder/dvpp/FFRecoderTaskManager.cpp
... | ... | @@ -91,8 +91,6 @@ void FFRecoderTaskManager::cache_pkt(AVPacket* pkt, long long frame_nb, string d |
91 | 91 | return; |
92 | 92 | } |
93 | 93 | |
94 | - std::lock_guard<std::mutex> l_pkt(m_pkt_list_mtx); | |
95 | - | |
96 | 94 | // 考虑到一个AVPacket中的数据并不很大,为减少与解码模块的耦合度,方便管理,这里做一个clone |
97 | 95 | AVPacket *new_pkt = packet_clone(pkt); |
98 | 96 | ... | ... |