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

Unified Diff: webrtc/video/video_receive_stream.cc

Issue 1699893002: Stop decoders in VideoReceiveStream destructor. (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 | « no previous file | no next file » | 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 9046cc6c26d92a60fe831efb09f6c229f8556ba8..4546ab7a869eceecdd285d1856bc69fca46f704c 100644
--- a/webrtc/video/video_receive_stream.cc
+++ b/webrtc/video/video_receive_stream.cc
@@ -278,8 +278,7 @@ VideoReceiveStream::VideoReceiveStream(
RTC_DCHECK(!config_.decoders.empty());
std::set<int> decoder_payload_types;
- for (size_t i = 0; i < config_.decoders.size(); ++i) {
- const Decoder& decoder = config_.decoders[i];
+ for (const Decoder& decoder : config_.decoders) {
RTC_CHECK(decoder.decoder);
RTC_CHECK(decoder_payload_types.find(decoder.payload_type) ==
decoder_payload_types.end())
@@ -310,6 +309,14 @@ VideoReceiveStream::~VideoReceiveStream() {
Stop();
process_thread_->DeRegisterModule(vcm_.get());
+
+ // Deregister external decoders so that they are no longer running during
+ // destruction. This effectively stops the VCM since the decoder thread is
+ // stopped, the VCM is deregistered and no asynchronous decoder threads are
+ // running.
+ for (const Decoder& decoder : config_.decoders)
+ vcm_->RegisterExternalDecoder(nullptr, decoder.payload_type);
+
vie_channel_.RegisterPreRenderCallback(nullptr);
vcm_->RegisterPreDecodeImageCallback(nullptr);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698