1 Star 0 Fork 0

zobzob/videoplayer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vppacketqueue.cpp 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
zobzob 提交于 2023-10-06 23:44 . 暂停,停止,快进快退完全实现
#include "vppacketqueue.h"
void VpPacketQueue::setSerial(int newSerial)
{
m_serial = newSerial;
}
int VpPacketQueue::get_size()
{
return m_list.size();
}
int VpPacketQueue::serial() const
{
return m_serial;
}
int VpPacketQueue::stream_idx() const
{
return m_stream_idx;
}
void VpPacketQueue::setStream_idx(int newStream_idx)
{
m_stream_idx = newStream_idx;
}
void VpPacketQueue::stop()
{
m_stop = true;
}
void VpPacketQueue::start()
{
m_stop = false;
}
VpPacketQueue::VpPacketQueue()
{
m_serial = 0;
m_stream_idx = 0;
m_stop = false;
m_codec_ctx = nullptr;
}
VpPacketQueue::~VpPacketQueue()
{
flush_queue();
}
void VpPacketQueue::push(VpPacket &elem)
{
lock_guard<mutex> lock(m_mutex);
m_list.push_back(elem);
}
VpPacket VpPacketQueue::pop()
{
VpPacket res;
unique_lock<mutex> lock(m_mutex);
while(m_list.empty() && !m_stop)
m_cond.wait_for(lock, chrono::milliseconds(10));
if(m_stop) {
lock.unlock();
return res;
}
res = m_list.front();
m_list.pop_front();
return res;
}
void VpPacketQueue::flush_queue()
{
lock_guard<mutex> lock(m_mutex);
while(!m_list.empty())
m_list.pop_front();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zobzob/videoplayer.git
git@gitee.com:zobzob/videoplayer.git
zobzob
videoplayer
videoplayer
master

搜索帮助