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

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

Issue 2390463002: Remove OnLocalSsrcChanged and rename EncoderStateFeedback. (Closed)
Patch Set: Rebase Created 4 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
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc » ('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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 class RtcpIntraFrameObserver { 217 class RtcpIntraFrameObserver {
218 public: 218 public:
219 virtual void OnReceivedIntraFrameRequest(uint32_t ssrc) = 0; 219 virtual void OnReceivedIntraFrameRequest(uint32_t ssrc) = 0;
220 220
221 virtual void OnReceivedSLI(uint32_t ssrc, 221 virtual void OnReceivedSLI(uint32_t ssrc,
222 uint8_t picture_id) = 0; 222 uint8_t picture_id) = 0;
223 223
224 virtual void OnReceivedRPSI(uint32_t ssrc, 224 virtual void OnReceivedRPSI(uint32_t ssrc,
225 uint64_t picture_id) = 0; 225 uint64_t picture_id) = 0;
226 226
227 virtual void OnLocalSsrcChanged(uint32_t old_ssrc, uint32_t new_ssrc) = 0; 227 // TODO(mflodman): Remove completely.
228 virtual void OnLocalSsrcChanged(uint32_t old_ssrc, uint32_t new_ssrc) {}
228 229
229 virtual ~RtcpIntraFrameObserver() {} 230 virtual ~RtcpIntraFrameObserver() {}
230 }; 231 };
231 232
232 class RtcpBandwidthObserver { 233 class RtcpBandwidthObserver {
233 public: 234 public:
234 // REMB or TMMBR 235 // REMB or TMMBR
235 virtual void OnReceivedEstimatedBitrate(uint32_t bitrate) = 0; 236 virtual void OnReceivedEstimatedBitrate(uint32_t bitrate) = 0;
236 237
237 virtual void OnReceivedRtcpReceiverReport( 238 virtual void OnReceivedRtcpReceiverReport(
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 class TransportSequenceNumberAllocator { 393 class TransportSequenceNumberAllocator {
393 public: 394 public:
394 TransportSequenceNumberAllocator() {} 395 TransportSequenceNumberAllocator() {}
395 virtual ~TransportSequenceNumberAllocator() {} 396 virtual ~TransportSequenceNumberAllocator() {}
396 397
397 virtual uint16_t AllocateSequenceNumber() = 0; 398 virtual uint16_t AllocateSequenceNumber() = 0;
398 }; 399 };
399 400
400 } // namespace webrtc 401 } // namespace webrtc
401 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_ 402 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698