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

Unified Diff: webrtc/modules/rtp_rtcp/source/rtp_sender_video.h

Issue 2495483002: Replace SequencedTaskChecker in RTPSenderVideo (Closed)
Patch Set: Add todo Created 4 years, 1 month 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 | webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/rtp_rtcp/source/rtp_sender_video.h
diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h
index 56167eb6ebfc1ed7871c23e0dc017732054c653d..668c417981051b187ee8d9029de042e315cbd4f8 100644
--- a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h
+++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h
@@ -55,8 +55,6 @@ class RTPSenderVideo {
const RTPFragmentationHeader* fragmentation,
const RTPVideoHeader* video_header);
- int32_t SendRTPIntraRequest();
-
void SetVideoCodecType(RtpVideoCodecTypes type);
// ULPFEC.
@@ -93,11 +91,10 @@ class RTPSenderVideo {
// Should never be held when calling out of this class.
rtc::CriticalSection crit_;
- rtc::SequencedTaskChecker encoder_checker_;
RtpVideoCodecTypes video_type_;
int32_t retransmission_settings_ GUARDED_BY(crit_);
- VideoRotation last_rotation_ GUARDED_BY(encoder_checker_);
+ VideoRotation last_rotation_ GUARDED_BY(crit_);
// RED/ULPFEC.
int red_payload_type_ GUARDED_BY(crit_);
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698