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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h

Issue 1345433002: Add RTC_ prefix to contructormagic macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Formatting fix. Created 5 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) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 // descriptors' fixed part. 205 // descriptors' fixed part.
206 const AggregationMode aggr_mode_; 206 const AggregationMode aggr_mode_;
207 const bool balance_; 207 const bool balance_;
208 const bool separate_first_; 208 const bool separate_first_;
209 const RTPVideoHeaderVP8 hdr_info_; 209 const RTPVideoHeaderVP8 hdr_info_;
210 size_t num_partitions_; 210 size_t num_partitions_;
211 const size_t max_payload_len_; 211 const size_t max_payload_len_;
212 InfoQueue packets_; 212 InfoQueue packets_;
213 bool packets_calculated_; 213 bool packets_calculated_;
214 214
215 DISALLOW_COPY_AND_ASSIGN(RtpPacketizerVp8); 215 RTC_DISALLOW_COPY_AND_ASSIGN(RtpPacketizerVp8);
216 }; 216 };
217 217
218 // Depacketizer for VP8. 218 // Depacketizer for VP8.
219 class RtpDepacketizerVp8 : public RtpDepacketizer { 219 class RtpDepacketizerVp8 : public RtpDepacketizer {
220 public: 220 public:
221 virtual ~RtpDepacketizerVp8() {} 221 virtual ~RtpDepacketizerVp8() {}
222 222
223 bool Parse(ParsedPayload* parsed_payload, 223 bool Parse(ParsedPayload* parsed_payload,
224 const uint8_t* payload_data, 224 const uint8_t* payload_data,
225 size_t payload_data_length) override; 225 size_t payload_data_length) override;
226 }; 226 };
227 } // namespace webrtc 227 } // namespace webrtc
228 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_H_ 228 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h ('k') | webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698