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

Unified Diff: webrtc/video/vie_channel.cc

Issue 1647163002: Deprecate VideoDecoder::Reset() and remove calls. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove OnInitializeDecoder for video Created 4 years, 11 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_decoder_unittest.cc ('k') | webrtc/video_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/vie_channel.cc
diff --git a/webrtc/video/vie_channel.cc b/webrtc/video/vie_channel.cc
index 7c13a7c3dfbbcdd88e13540aab3987e531203f26..28cc1d4ad72f0f3e57eb60db0c723d22d66f12f3 100644
--- a/webrtc/video/vie_channel.cc
+++ b/webrtc/video/vie_channel.cc
@@ -914,10 +914,8 @@ void ViEChannel::StartReceive() {
void ViEChannel::StopReceive() {
vie_receiver_.StopReceive();
- if (!sender_) {
+ if (!sender_)
StopDecodeThread();
- vcm_->ResetDecoder();
- }
}
int32_t ViEChannel::ReceivedRTPPacket(const void* rtp_packet,
@@ -1166,18 +1164,15 @@ void ViEChannel::RegisterPreDecodeImageCallback(
vcm_->RegisterPreDecodeImageCallback(pre_decode_callback);
}
-// TODO(pbos): Remove OnInitializeDecoder which is called from the RTP module,
-// any decoder resetting should be handled internally within the VCM.
+// TODO(pbos): Remove as soon as audio can handle a changing payload type
+// without this callback.
int32_t ViEChannel::OnInitializeDecoder(
const int8_t payload_type,
const char payload_name[RTP_PAYLOAD_NAME_SIZE],
const int frequency,
const size_t channels,
const uint32_t rate) {
- LOG(LS_INFO) << "OnInitializeDecoder " << static_cast<int>(payload_type)
- << " " << payload_name;
- vcm_->ResetDecoder();
-
+ RTC_NOTREACHED();
return 0;
}
« no previous file with comments | « webrtc/video/video_decoder_unittest.cc ('k') | webrtc/video_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698