OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" | 10 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 bool Parse(const uint8_t* packet, | 23 bool Parse(const uint8_t* packet, |
24 size_t length, | 24 size_t length, |
25 RTPHeader* header) const override; | 25 RTPHeader* header) const override; |
26 | 26 |
27 bool RegisterRtpHeaderExtension(RTPExtensionType type, uint8_t id) override; | 27 bool RegisterRtpHeaderExtension(RTPExtensionType type, uint8_t id) override; |
28 | 28 |
29 bool DeregisterRtpHeaderExtension(RTPExtensionType type) override; | 29 bool DeregisterRtpHeaderExtension(RTPExtensionType type) override; |
30 | 30 |
31 private: | 31 private: |
32 rtc::CriticalSection critical_section_; | 32 rtc::CriticalSection critical_section_; |
33 RtpHeaderExtensionMap rtp_header_extension_map_ GUARDED_BY(critical_section_); | 33 RtpHeaderExtensionMap rtp_header_extension_map_ |
| 34 RTC_GUARDED_BY(critical_section_); |
34 }; | 35 }; |
35 | 36 |
36 RtpHeaderParser* RtpHeaderParser::Create() { | 37 RtpHeaderParser* RtpHeaderParser::Create() { |
37 return new RtpHeaderParserImpl; | 38 return new RtpHeaderParserImpl; |
38 } | 39 } |
39 | 40 |
40 RtpHeaderParserImpl::RtpHeaderParserImpl() {} | 41 RtpHeaderParserImpl::RtpHeaderParserImpl() {} |
41 | 42 |
42 bool RtpHeaderParser::IsRtcp(const uint8_t* packet, size_t length) { | 43 bool RtpHeaderParser::IsRtcp(const uint8_t* packet, size_t length) { |
43 RtpUtility::RtpHeaderParser rtp_parser(packet, length); | 44 RtpUtility::RtpHeaderParser rtp_parser(packet, length); |
(...skipping 23 matching lines...) Expand all Loading... |
67 uint8_t id) { | 68 uint8_t id) { |
68 rtc::CritScope cs(&critical_section_); | 69 rtc::CritScope cs(&critical_section_); |
69 return rtp_header_extension_map_.RegisterByType(id, type); | 70 return rtp_header_extension_map_.RegisterByType(id, type); |
70 } | 71 } |
71 | 72 |
72 bool RtpHeaderParserImpl::DeregisterRtpHeaderExtension(RTPExtensionType type) { | 73 bool RtpHeaderParserImpl::DeregisterRtpHeaderExtension(RTPExtensionType type) { |
73 rtc::CritScope cs(&critical_section_); | 74 rtc::CritScope cs(&critical_section_); |
74 return rtp_header_extension_map_.Deregister(type) == 0; | 75 return rtp_header_extension_map_.Deregister(type) == 0; |
75 } | 76 } |
76 } // namespace webrtc | 77 } // namespace webrtc |
OLD | NEW |