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

Side by Side Diff: webrtc/modules/rtp_rtcp/include/rtp_rtcp.h

Issue 2531223004: Fix spelling mistake in RTP module declaration. (Closed)
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 // |tcp| - true for TCP false UDP. 122 // |tcp| - true for TCP false UDP.
123 // |ipv6| - true for IP version 6 false for version 4. 123 // |ipv6| - true for IP version 6 false for version 4.
124 // |authentication_overhead| - number of bytes to leave for an authentication 124 // |authentication_overhead| - number of bytes to leave for an authentication
125 // header. 125 // header.
126 // Returns -1 on failure else 0 126 // Returns -1 on failure else 0
127 // TODO(michaelt): deprecate the function. 127 // TODO(michaelt): deprecate the function.
128 virtual int32_t SetTransportOverhead(bool tcp, 128 virtual int32_t SetTransportOverhead(bool tcp,
129 bool ipv6, 129 bool ipv6,
130 uint8_t authentication_overhead = 0) = 0; 130 uint8_t authentication_overhead = 0) = 0;
131 131
132 // Sets transtport overhead per packet. 132 // Sets transport overhead per packet.
133 virtual void SetTransportOverhead(int transport_overhead_per_packet) = 0; 133 virtual void SetTransportOverhead(int transport_overhead_per_packet) = 0;
134 134
135 // Returns max payload length, which is a combination of the configuration 135 // Returns max payload length, which is a combination of the configuration
136 // MaxTransferUnit and TransportOverhead. 136 // MaxTransferUnit and TransportOverhead.
137 // Does not account for RTP headers and FEC/ULP/RED overhead (when FEC is 137 // Does not account for RTP headers and FEC/ULP/RED overhead (when FEC is
138 // enabled). 138 // enabled).
139 virtual uint16_t MaxPayloadLength() const = 0; 139 virtual uint16_t MaxPayloadLength() const = 0;
140 140
141 // Returns max data payload length, which is a combination of the 141 // Returns max data payload length, which is a combination of the
142 // configuration MaxTransferUnit, headers and TransportOverhead. 142 // configuration MaxTransferUnit, headers and TransportOverhead.
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 virtual int32_t SetKeyFrameRequestMethod(KeyFrameRequestMethod method) = 0; 477 virtual int32_t SetKeyFrameRequestMethod(KeyFrameRequestMethod method) = 0;
478 478
479 // Sends a request for a keyframe. 479 // Sends a request for a keyframe.
480 // Returns -1 on failure else 0. 480 // Returns -1 on failure else 0.
481 virtual int32_t RequestKeyFrame() = 0; 481 virtual int32_t RequestKeyFrame() = 0;
482 }; 482 };
483 483
484 } // namespace webrtc 484 } // namespace webrtc
485 485
486 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_H_ 486 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698