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

Side by Side Diff: webrtc/video/rtp_stream_receiver.h

Issue 2580843002: Change return type of CongestionController::pacer() method.
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 public VCMPacketRequestCallback, 62 public VCMPacketRequestCallback,
63 public video_coding::OnReceivedFrameCallback, 63 public video_coding::OnReceivedFrameCallback,
64 public video_coding::OnCompleteFrameCallback, 64 public video_coding::OnCompleteFrameCallback,
65 public CallStatsObserver { 65 public CallStatsObserver {
66 public: 66 public:
67 RtpStreamReceiver( 67 RtpStreamReceiver(
68 vcm::VideoReceiver* video_receiver, 68 vcm::VideoReceiver* video_receiver,
69 RemoteBitrateEstimator* remote_bitrate_estimator, 69 RemoteBitrateEstimator* remote_bitrate_estimator,
70 Transport* transport, 70 Transport* transport,
71 RtcpRttStats* rtt_stats, 71 RtcpRttStats* rtt_stats,
72 PacedSender* paced_sender, 72 RtpPacketSender* paced_sender,
73 PacketRouter* packet_router, 73 PacketRouter* packet_router,
74 VieRemb* remb, 74 VieRemb* remb,
75 const VideoReceiveStream::Config* config, 75 const VideoReceiveStream::Config* config,
76 ReceiveStatisticsProxy* receive_stats_proxy, 76 ReceiveStatisticsProxy* receive_stats_proxy,
77 ProcessThread* process_thread, 77 ProcessThread* process_thread,
78 RateLimiter* retransmission_rate_limiter, 78 RateLimiter* retransmission_rate_limiter,
79 NackSender* nack_sender, 79 NackSender* nack_sender,
80 KeyFrameRequestSender* keyframe_request_sender, 80 KeyFrameRequestSender* keyframe_request_sender,
81 video_coding::OnCompleteFrameCallback* complete_frame_callback, 81 video_coding::OnCompleteFrameCallback* complete_frame_callback,
82 VCMTiming* timing); 82 VCMTiming* timing);
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 std::unique_ptr<video_coding::RtpFrameReferenceFinder> reference_finder_; 194 std::unique_ptr<video_coding::RtpFrameReferenceFinder> reference_finder_;
195 rtc::CriticalSection last_seq_num_cs_; 195 rtc::CriticalSection last_seq_num_cs_;
196 std::map<uint16_t, uint16_t, DescendingSeqNumComp<uint16_t>> 196 std::map<uint16_t, uint16_t, DescendingSeqNumComp<uint16_t>>
197 last_seq_num_for_pic_id_ GUARDED_BY(last_seq_num_cs_); 197 last_seq_num_for_pic_id_ GUARDED_BY(last_seq_num_cs_);
198 video_coding::H264SpsPpsTracker tracker_; 198 video_coding::H264SpsPpsTracker tracker_;
199 }; 199 };
200 200
201 } // namespace webrtc 201 } // namespace webrtc
202 202
203 #endif // WEBRTC_VIDEO_RTP_STREAM_RECEIVER_H_ 203 #endif // WEBRTC_VIDEO_RTP_STREAM_RECEIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698