Chromium Code Reviews

Side by Side Diff: webrtc/common_types.cc

Issue 2007743003: Add sender controlled playout delay limits (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@cleanup_rtp_hdr_extensions
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 13 matching lines...)
24 : hasTransmissionTimeOffset(false), 24 : hasTransmissionTimeOffset(false),
25 transmissionTimeOffset(0), 25 transmissionTimeOffset(0),
26 hasAbsoluteSendTime(false), 26 hasAbsoluteSendTime(false),
27 absoluteSendTime(0), 27 absoluteSendTime(0),
28 hasTransportSequenceNumber(false), 28 hasTransportSequenceNumber(false),
29 transportSequenceNumber(0), 29 transportSequenceNumber(0),
30 hasAudioLevel(false), 30 hasAudioLevel(false),
31 voiceActivity(false), 31 voiceActivity(false),
32 audioLevel(0), 32 audioLevel(0),
33 hasVideoRotation(false), 33 hasVideoRotation(false),
34 videoRotation(0) { 34 videoRotation(0),
35 } 35 min_playout_delay_ms(-1),
36 max_playout_delay_ms(-1) {}
36 37
37 RTPHeader::RTPHeader() 38 RTPHeader::RTPHeader()
38 : markerBit(false), 39 : markerBit(false),
39 payloadType(0), 40 payloadType(0),
40 sequenceNumber(0), 41 sequenceNumber(0),
41 timestamp(0), 42 timestamp(0),
42 ssrc(0), 43 ssrc(0),
43 numCSRCs(0), 44 numCSRCs(0),
44 paddingLength(0), 45 paddingLength(0),
45 headerLength(0), 46 headerLength(0),
46 payload_type_frequency(0), 47 payload_type_frequency(0),
47 extension() { 48 extension() {
48 memset(&arrOfCSRCs, 0, sizeof(arrOfCSRCs)); 49 memset(&arrOfCSRCs, 0, sizeof(arrOfCSRCs));
49 } 50 }
50 51
51 } // namespace webrtc 52 } // namespace webrtc
OLDNEW

Powered by Google App Engine