OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |