
SDP is a detail of PeerConnection and is not used by anything in p2p, so it belongs in the pc/ directory. This also allows MediaContentDescription to be inlined in the future. Bug: webrtc:8620 Change-Id: I38b65ede9942e29eb15035ab29f2be988da1e5ce Reviewed-on: https://webrtc-review.googlesource.com/33781 Reviewed-by: Niklas Enbom <niklas.enbom@webrtc.org> Reviewed-by: Peter Thatcher <pthatcher@webrtc.org> Commit-Queue: Steve Anton <steveanton@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21376}
79 lines
2.6 KiB
C++
79 lines
2.6 KiB
C++
/*
|
|
* Copyright 2004 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef PC_RTCPMUXFILTER_H_
|
|
#define PC_RTCPMUXFILTER_H_
|
|
|
|
#include "pc/sessiondescription.h"
|
|
|
|
namespace cricket {
|
|
|
|
// RTCP Muxer, as defined in RFC 5761 (http://tools.ietf.org/html/rfc5761)
|
|
class RtcpMuxFilter {
|
|
public:
|
|
RtcpMuxFilter();
|
|
|
|
// Whether RTCP mux has been negotiated with a final answer (not provisional).
|
|
bool IsFullyActive() const;
|
|
|
|
// Whether RTCP mux has been negotiated with a provisional answer; this means
|
|
// a later answer could disable RTCP mux, and so the RTCP transport should
|
|
// not be disposed yet.
|
|
bool IsProvisionallyActive() const;
|
|
|
|
// Whether the filter is active, i.e. has RTCP mux been properly negotiated,
|
|
// either with a final or provisional answer.
|
|
bool IsActive() const;
|
|
|
|
// Make the filter active (fully, not provisionally) regardless of the
|
|
// current state. This should be used when an endpoint *requires* RTCP mux.
|
|
void SetActive();
|
|
|
|
// Specifies whether the offer indicates the use of RTCP mux.
|
|
bool SetOffer(bool offer_enable, ContentSource src);
|
|
|
|
// Specifies whether the provisional answer indicates the use of RTCP mux.
|
|
bool SetProvisionalAnswer(bool answer_enable, ContentSource src);
|
|
|
|
// Specifies whether the answer indicates the use of RTCP mux.
|
|
bool SetAnswer(bool answer_enable, ContentSource src);
|
|
|
|
private:
|
|
bool ExpectOffer(bool offer_enable, ContentSource source);
|
|
bool ExpectAnswer(ContentSource source);
|
|
enum State {
|
|
// RTCP mux filter unused.
|
|
ST_INIT,
|
|
// Offer with RTCP mux enabled received.
|
|
// RTCP mux filter is not active.
|
|
ST_RECEIVEDOFFER,
|
|
// Offer with RTCP mux enabled sent.
|
|
// RTCP mux filter can demux incoming packets but is not active.
|
|
ST_SENTOFFER,
|
|
// RTCP mux filter is active but the sent answer is only provisional.
|
|
// When the final answer is set, the state transitions to ST_ACTIVE or
|
|
// ST_INIT.
|
|
ST_SENTPRANSWER,
|
|
// RTCP mux filter is active but the received answer is only provisional.
|
|
// When the final answer is set, the state transitions to ST_ACTIVE or
|
|
// ST_INIT.
|
|
ST_RECEIVEDPRANSWER,
|
|
// Offer and answer set, RTCP mux enabled. It is not possible to de-activate
|
|
// the filter.
|
|
ST_ACTIVE
|
|
};
|
|
State state_;
|
|
bool offer_enable_;
|
|
};
|
|
|
|
} // namespace cricket
|
|
|
|
#endif // PC_RTCPMUXFILTER_H_
|