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

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

Issue 1392513002: Disable pacer disabling. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove RTP FIR + test refactoring Created 5 years, 2 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 // Set payload type for Redundant Audio Data RFC 2198. 276 // Set payload type for Redundant Audio Data RFC 2198.
277 int32_t SetRED(int8_t payload_type); 277 int32_t SetRED(int8_t payload_type);
278 278
279 // Get payload type for Redundant Audio Data RFC 2198. 279 // Get payload type for Redundant Audio Data RFC 2198.
280 int32_t RED(int8_t *payload_type) const; 280 int32_t RED(int8_t *payload_type) const;
281 281
282 RtpVideoCodecTypes VideoCodecType() const; 282 RtpVideoCodecTypes VideoCodecType() const;
283 283
284 uint32_t MaxConfiguredBitrateVideo() const; 284 uint32_t MaxConfiguredBitrateVideo() const;
285 285
286 int32_t SendRTPIntraRequest();
287
288 // FEC. 286 // FEC.
289 void SetGenericFECStatus(bool enable, 287 void SetGenericFECStatus(bool enable,
290 uint8_t payload_type_red, 288 uint8_t payload_type_red,
291 uint8_t payload_type_fec); 289 uint8_t payload_type_fec);
292 290
293 void GenericFECStatus(bool* enable, 291 void GenericFECStatus(bool* enable,
294 uint8_t* payload_type_red, 292 uint8_t* payload_type_red,
295 uint8_t* payload_type_fec) const; 293 uint8_t* payload_type_fec) const;
296 294
297 int32_t SetFecParameters(const FecProtectionParams *delta_params, 295 int32_t SetFecParameters(const FecProtectionParams *delta_params,
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 // SetTargetBitrateKbps or GetTargetBitrateKbps. Also remember 461 // SetTargetBitrateKbps or GetTargetBitrateKbps. Also remember
464 // that by the time the function returns there is no guarantee 462 // that by the time the function returns there is no guarantee
465 // that the target bitrate is still valid. 463 // that the target bitrate is still valid.
466 rtc::scoped_ptr<CriticalSectionWrapper> target_bitrate_critsect_; 464 rtc::scoped_ptr<CriticalSectionWrapper> target_bitrate_critsect_;
467 uint32_t target_bitrate_ GUARDED_BY(target_bitrate_critsect_); 465 uint32_t target_bitrate_ GUARDED_BY(target_bitrate_critsect_);
468 }; 466 };
469 467
470 } // namespace webrtc 468 } // namespace webrtc
471 469
472 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ 470 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698