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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h

Issue 2448463003: Rename {,Set}GenericFECStatus to {,Set}UlpfecConfig. (Closed)
Patch Set: 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 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 // Video part. 270 // Video part.
271 271
272 int32_t SendRTCPSliceLossIndication(uint8_t picture_id) override; 272 int32_t SendRTCPSliceLossIndication(uint8_t picture_id) override;
273 273
274 // Set method for requesting a new key frame. 274 // Set method for requesting a new key frame.
275 int32_t SetKeyFrameRequestMethod(KeyFrameRequestMethod method) override; 275 int32_t SetKeyFrameRequestMethod(KeyFrameRequestMethod method) override;
276 276
277 // Send a request for a keyframe. 277 // Send a request for a keyframe.
278 int32_t RequestKeyFrame() override; 278 int32_t RequestKeyFrame() override;
279 279
280 void SetGenericFECStatus(bool enable, 280 void SetUlpfecConfig(bool ulpfec_enabled,
281 uint8_t payload_type_red, 281 int red_payload_type,
282 uint8_t payload_type_fec) override; 282 int ulpfec_payload_type) override;
283 283
284 void GenericFECStatus(bool* enable, 284 void UlpfecConfig(bool* ulpfec_enabled,
285 uint8_t* payload_type_red, 285 int* red_payload_type,
286 uint8_t* payload_type_fec) override; 286 int* ulpfec_payload_type) override;
287 287
288 int32_t SetFecParameters(const FecProtectionParams* delta_params, 288 int32_t SetFecParameters(const FecProtectionParams* delta_params,
289 const FecProtectionParams* key_params) override; 289 const FecProtectionParams* key_params) override;
290 290
291 bool LastReceivedNTP(uint32_t* NTPsecs, 291 bool LastReceivedNTP(uint32_t* NTPsecs,
292 uint32_t* NTPfrac, 292 uint32_t* NTPfrac,
293 uint32_t* remote_sr) const; 293 uint32_t* remote_sr) const;
294 294
295 std::vector<rtcp::TmmbItem> BoundingSet(bool* tmmbr_owner); 295 std::vector<rtcp::TmmbItem> BoundingSet(bool* tmmbr_owner);
296 296
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 PacketLossStats receive_loss_stats_; 356 PacketLossStats receive_loss_stats_;
357 357
358 // The processed RTT from RtcpRttStats. 358 // The processed RTT from RtcpRttStats.
359 rtc::CriticalSection critical_section_rtt_; 359 rtc::CriticalSection critical_section_rtt_;
360 int64_t rtt_ms_; 360 int64_t rtt_ms_;
361 }; 361 };
362 362
363 } // namespace webrtc 363 } // namespace webrtc
364 364
365 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_ 365 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RTCP_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698