blob: 8f117e11530b027fd80aea33354804ec8676e326 [file] [log] [blame]
kwiberg@webrtc.orgc4e2cd02015-02-26 13:59:221/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include "webrtc/common_types.h"
12
13#include <string.h>
14
15namespace webrtc {
16
kwiberg@webrtc.orgc4e2cd02015-02-26 13:59:2217StreamDataCounters::StreamDataCounters() : first_packet_time_ms(-1) {}
18
sprang@webrtc.org25ec20f2015-03-17 14:33:1219RTPHeaderExtension::RTPHeaderExtension()
20 : hasTransmissionTimeOffset(false),
21 transmissionTimeOffset(0),
22 hasAbsoluteSendTime(false),
23 absoluteSendTime(0),
24 hasTransportSequenceNumber(false),
25 transportSequenceNumber(0),
26 hasAudioLevel(false),
Minyueda4c0f02015-08-10 13:08:3627 voiceActivity(false),
sprang@webrtc.org25ec20f2015-03-17 14:33:1228 audioLevel(0),
29 hasVideoRotation(false),
magjed78706f42016-09-08 10:24:5830 videoRotation(kVideoRotation_0) {}
sprang@webrtc.org25ec20f2015-03-17 14:33:1231
kwiberg@webrtc.orgc4e2cd02015-02-26 13:59:2232RTPHeader::RTPHeader()
33 : markerBit(false),
34 payloadType(0),
35 sequenceNumber(0),
36 timestamp(0),
37 ssrc(0),
38 numCSRCs(0),
tommia6d985c2016-06-15 17:30:1439 arrOfCSRCs(),
kwiberg@webrtc.orgc4e2cd02015-02-26 13:59:2240 paddingLength(0),
41 headerLength(0),
42 payload_type_frequency(0),
tommia6d985c2016-06-15 17:30:1443 extension() {}
kwiberg@webrtc.orgc4e2cd02015-02-26 13:59:2244
45} // namespace webrtc