Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Unified Diff: webrtc/video/video_receive_stream.cc

Issue 1691793002: Move the decoder thread into VideoReceiveStream. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/video/video_receive_stream.h ('k') | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/video_receive_stream.cc
diff --git a/webrtc/video/video_receive_stream.cc b/webrtc/video/video_receive_stream.cc
index e48b5f3006092845dec9cb242fa93176e4deca41..9046cc6c26d92a60fe831efb09f6c229f8556ba8 100644
--- a/webrtc/video/video_receive_stream.cc
+++ b/webrtc/video/video_receive_stream.cc
@@ -106,9 +106,7 @@ std::string VideoReceiveStream::Config::Rtp::ToString() const {
return ss.str();
}
-namespace internal {
namespace {
-
VideoCodec CreateDecoderVideoCodec(const VideoReceiveStream::Decoder& decoder) {
VideoCodec codec;
memset(&codec, 0, sizeof(codec));
@@ -142,6 +140,7 @@ VideoCodec CreateDecoderVideoCodec(const VideoReceiveStream::Decoder& decoder) {
}
} // namespace
+namespace internal {
VideoReceiveStream::VideoReceiveStream(
int num_cpu_cores,
CongestionController* congestion_controller,
@@ -155,6 +154,7 @@ VideoReceiveStream::VideoReceiveStream(
config_(config),
process_thread_(process_thread),
clock_(Clock::GetRealTimeClock()),
+ decode_thread_(DecodeThreadFunction, this, "DecodingThread"),
congestion_controller_(congestion_controller),
call_stats_(call_stats),
remb_(remb),
@@ -307,7 +307,8 @@ VideoReceiveStream::VideoReceiveStream(
VideoReceiveStream::~VideoReceiveStream() {
LOG(LS_INFO) << "~VideoReceiveStream: " << config_.ToString();
- incoming_video_stream_.Stop();
+ Stop();
+
process_thread_->DeRegisterModule(vcm_.get());
vie_channel_.RegisterPreRenderCallback(nullptr);
vcm_->RegisterPreDecodeImageCallback(nullptr);
@@ -321,14 +322,21 @@ VideoReceiveStream::~VideoReceiveStream() {
}
void VideoReceiveStream::Start() {
+ if (decode_thread_.IsRunning())
+ return;
transport_adapter_.Enable();
incoming_video_stream_.Start();
- vie_channel_.StartReceive();
+ // Start the decode thread
+ decode_thread_.Start();
+ decode_thread_.SetPriority(rtc::kHighestPriority);
+ vie_receiver_->StartReceive();
}
void VideoReceiveStream::Stop() {
incoming_video_stream_.Stop();
- vie_channel_.StopReceive();
+ vie_receiver_->StopReceive();
+ vcm_->TriggerDecoderShutdown();
+ decode_thread_.Stop();
transport_adapter_.Disable();
}
@@ -403,5 +411,15 @@ void VideoReceiveStream::SignalNetworkState(NetworkState state) {
: RtcpMode::kOff);
}
+bool VideoReceiveStream::DecodeThreadFunction(void* ptr) {
+ static_cast<VideoReceiveStream*>(ptr)->Decode();
+ return true;
+}
+
+void VideoReceiveStream::Decode() {
+ static const int kMaxDecodeWaitTimeMs = 50;
+ vcm_->Decode(kMaxDecodeWaitTimeMs);
+}
+
} // namespace internal
} // namespace webrtc
« no previous file with comments | « webrtc/video/video_receive_stream.h ('k') | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698