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

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

Issue 2974453002: Protected streams report RTP messages directly to the FlexFec streams (Closed)
Patch Set: Remove mistaken TODO. Created 3 years, 5 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 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 135
136 // Implements OnCompleteFrameCallback. 136 // Implements OnCompleteFrameCallback.
137 void OnCompleteFrame( 137 void OnCompleteFrame(
138 std::unique_ptr<video_coding::FrameObject> frame) override; 138 std::unique_ptr<video_coding::FrameObject> frame) override;
139 139
140 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override; 140 void OnRttUpdate(int64_t avg_rtt_ms, int64_t max_rtt_ms) override;
141 141
142 rtc::Optional<int64_t> LastReceivedPacketMs() const; 142 rtc::Optional<int64_t> LastReceivedPacketMs() const;
143 rtc::Optional<int64_t> LastReceivedKeyframePacketMs() const; 143 rtc::Optional<int64_t> LastReceivedKeyframePacketMs() const;
144 144
145 void AddSecondarySink(RtpPacketSinkInterface* sink);
146 void RemoveSecondarySink(const RtpPacketSinkInterface* sink);
147
145 private: 148 private:
146 bool AddReceiveCodec(const VideoCodec& video_codec); 149 bool AddReceiveCodec(const VideoCodec& video_codec);
147 void ReceivePacket(const uint8_t* packet, 150 void ReceivePacket(const uint8_t* packet,
148 size_t packet_length, 151 size_t packet_length,
149 const RTPHeader& header, 152 const RTPHeader& header,
150 bool in_order); 153 bool in_order);
151 // Parses and handles for instance RTX and RED headers. 154 // Parses and handles for instance RTX and RED headers.
152 // This function assumes that it's being called from only one thread. 155 // This function assumes that it's being called from only one thread.
153 void ParseAndHandleEncapsulatingHeader(const uint8_t* packet, 156 void ParseAndHandleEncapsulatingHeader(const uint8_t* packet,
154 size_t packet_length, 157 size_t packet_length,
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 std::map<uint16_t, uint16_t, DescendingSeqNumComp<uint16_t>> 197 std::map<uint16_t, uint16_t, DescendingSeqNumComp<uint16_t>>
195 last_seq_num_for_pic_id_ GUARDED_BY(last_seq_num_cs_); 198 last_seq_num_for_pic_id_ GUARDED_BY(last_seq_num_cs_);
196 video_coding::H264SpsPpsTracker tracker_; 199 video_coding::H264SpsPpsTracker tracker_;
197 // TODO(johan): Remove pt_codec_params_ once 200 // TODO(johan): Remove pt_codec_params_ once
198 // https://bugs.chromium.org/p/webrtc/issues/detail?id=6883 is resolved. 201 // https://bugs.chromium.org/p/webrtc/issues/detail?id=6883 is resolved.
199 // Maps a payload type to a map of out-of-band supplied codec parameters. 202 // Maps a payload type to a map of out-of-band supplied codec parameters.
200 std::map<uint8_t, std::map<std::string, std::string>> pt_codec_params_; 203 std::map<uint8_t, std::map<std::string, std::string>> pt_codec_params_;
201 int16_t last_payload_type_ = -1; 204 int16_t last_payload_type_ = -1;
202 205
203 bool has_received_frame_; 206 bool has_received_frame_;
207
208 // TODO(eladalon): !!! Unit-tests, here and elsewhere, after initial approach
danilchap 2017/07/25 17:29:54 remove the comment
eladalon 2017/07/26 08:20:29 Done.
209 // gets the green light.
210 std::vector<RtpPacketSinkInterface*> secondary_sinks_;
204 }; 211 };
205 212
206 } // namespace webrtc 213 } // namespace webrtc
207 214
208 #endif // WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_ 215 #endif // WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698