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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_header_parser.cc

Issue 3010223002: Update thread annotiation macros in modules to use RTC_ prefix (Closed)
Patch Set: Created 3 years, 3 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
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_sender.h ('k') | webrtc/modules/rtp_rtcp/source/rtp_packet_history.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698