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

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

Issue 1196863003: Send Sdes using RtcpPacket (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed comment Created 5 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
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtcp_sender.h » ('j') | 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 uint32_t *ReceivedNTPfrac, 358 uint32_t *ReceivedNTPfrac,
359 uint32_t *RTCPArrivalTimeSecs, 359 uint32_t *RTCPArrivalTimeSecs,
360 uint32_t *RTCPArrivalTimeFrac, 360 uint32_t *RTCPArrivalTimeFrac,
361 uint32_t *rtcp_timestamp) const = 0; 361 uint32_t *rtcp_timestamp) const = 0;
362 362
363 /* 363 /*
364 * AddMixedCNAME 364 * AddMixedCNAME
365 * 365 *
366 * return -1 on failure else 0 366 * return -1 on failure else 0
367 */ 367 */
368 virtual int32_t AddMixedCNAME(uint32_t SSRC, 368 virtual int32_t AddMixedCNAME(uint32_t SSRC, const char* c_name) = 0;
369 const char cName[RTCP_CNAME_SIZE]) = 0;
370 369
371 /* 370 /*
372 * RemoveMixedCNAME 371 * RemoveMixedCNAME
373 * 372 *
374 * return -1 on failure else 0 373 * return -1 on failure else 0
375 */ 374 */
376 virtual int32_t RemoveMixedCNAME(uint32_t SSRC) = 0; 375 virtual int32_t RemoveMixedCNAME(uint32_t SSRC) = 0;
377 376
378 /* 377 /*
379 * Get RoundTripTime 378 * Get RoundTripTime
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 637
639 /* 638 /*
640 * send a request for a keyframe 639 * send a request for a keyframe
641 * 640 *
642 * return -1 on failure else 0 641 * return -1 on failure else 0
643 */ 642 */
644 virtual int32_t RequestKeyFrame() = 0; 643 virtual int32_t RequestKeyFrame() = 0;
645 }; 644 };
646 } // namespace webrtc 645 } // namespace webrtc
647 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_H_ 646 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtcp_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698