| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2004 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 |
| 11 #ifndef WEBRTC_PC_RTCPMUXFILTER_H_ | 11 #ifndef WEBRTC_PC_RTCPMUXFILTER_H_ |
| 12 #define WEBRTC_PC_RTCPMUXFILTER_H_ | 12 #define WEBRTC_PC_RTCPMUXFILTER_H_ |
| 13 | 13 |
| 14 #include "webrtc/base/basictypes.h" | |
| 15 #include "webrtc/p2p/base/sessiondescription.h" | 14 #include "webrtc/p2p/base/sessiondescription.h" |
| 16 | 15 |
| 17 namespace cricket { | 16 namespace cricket { |
| 18 | 17 |
| 19 // RTCP Muxer, as defined in RFC 5761 (http://tools.ietf.org/html/rfc5761) | 18 // RTCP Muxer, as defined in RFC 5761 (http://tools.ietf.org/html/rfc5761) |
| 20 class RtcpMuxFilter { | 19 class RtcpMuxFilter { |
| 21 public: | 20 public: |
| 22 RtcpMuxFilter(); | 21 RtcpMuxFilter(); |
| 23 | 22 |
| 24 // Whether RTCP mux has been negotiated with a final answer (not provisional). | 23 // Whether RTCP mux has been negotiated with a final answer (not provisional). |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 // the filter. | 72 // the filter. |
| 74 ST_ACTIVE | 73 ST_ACTIVE |
| 75 }; | 74 }; |
| 76 State state_; | 75 State state_; |
| 77 bool offer_enable_; | 76 bool offer_enable_; |
| 78 }; | 77 }; |
| 79 | 78 |
| 80 } // namespace cricket | 79 } // namespace cricket |
| 81 | 80 |
| 82 #endif // WEBRTC_PC_RTCPMUXFILTER_H_ | 81 #endif // WEBRTC_PC_RTCPMUXFILTER_H_ |
| OLD | NEW |