Start thread after created when use ThreadBase

This commit is contained in:
dijunkun
2023-09-11 15:15:59 +08:00
parent 0899fe2f1d
commit f52142fc00
7 changed files with 21 additions and 57 deletions

View File

@@ -88,22 +88,7 @@ bool RtpVideoReceiver::CheckIsFrameCompleted(RtpPacket& rtp_packet) {
return false;
}
void RtpVideoReceiver::Start() {
std::lock_guard<std::mutex> lock_guard(mutex_);
stop_ = false;
}
void RtpVideoReceiver::Stop() {
std::lock_guard<std::mutex> lock_guard(mutex_);
stop_ = true;
}
bool RtpVideoReceiver::Process() {
std::lock_guard<std::mutex> lock_guard(mutex_);
if (stop_) {
return false;
}
if (!compelete_video_frame_queue_.isEmpty()) {
VideoFrame video_frame;
compelete_video_frame_queue_.pop(video_frame);

View File

@@ -3,7 +3,6 @@
#include <functional>
#include <map>
#include <mutex>
#include <queue>
#include "frame.h"
@@ -24,9 +23,6 @@ class RtpVideoReceiver : public ThreadBase {
on_receive_complete_frame_ = on_receive_complete_frame;
}
void Start();
void Stop();
private:
bool CheckIsFrameCompleted(RtpPacket& rtp_packet);
// void OnReceiveFrame(uint8_t* payload) {}
@@ -41,9 +37,6 @@ class RtpVideoReceiver : public ThreadBase {
uint32_t last_complete_frame_ts_ = 0;
RingBuffer<VideoFrame> compelete_video_frame_queue_;
bool stop_ = true;
std::mutex mutex_;
};
#endif

View File

@@ -14,22 +14,7 @@ void RtpVideoSender::Enqueue(std::vector<RtpPacket>& rtp_packets) {
}
}
void RtpVideoSender::Start() {
std::lock_guard<std::mutex> lock_guard(mutex_);
stop_ = false;
}
void RtpVideoSender::Stop() {
std::lock_guard<std::mutex> lock_guard(mutex_);
stop_ = true;
}
bool RtpVideoSender::Process() {
std::lock_guard<std::mutex> lock_guard(mutex_);
if (stop_) {
return false;
}
for (size_t i = 0; i < 50; i++)
if (!rtp_packe_queue_.isEmpty()) {
RtpPacket rtp_packet;

View File

@@ -2,8 +2,6 @@
#define _RTP_VIDEO_SENDER_H_
#include <functional>
#include <mutex>
#include <thread>
#include "ringbuffer.h"
#include "rtp_packet.h"
@@ -23,18 +21,12 @@ class RtpVideoSender : public ThreadBase {
rtp_packet_send_func_ = rtp_packet_send_func;
}
void Start();
void Stop();
private:
bool Process() override;
private:
std::function<void(RtpPacket &)> rtp_packet_send_func_ = nullptr;
RingBuffer<RtpPacket> rtp_packe_queue_;
bool stop_ = true;
std::mutex mutex_;
};
#endif