| OLD | NEW | 
|---|
| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 48       absoluteSendTime(0), | 48       absoluteSendTime(0), | 
| 49       hasTransportSequenceNumber(false), | 49       hasTransportSequenceNumber(false), | 
| 50       transportSequenceNumber(0), | 50       transportSequenceNumber(0), | 
| 51       hasAudioLevel(false), | 51       hasAudioLevel(false), | 
| 52       voiceActivity(false), | 52       voiceActivity(false), | 
| 53       audioLevel(0), | 53       audioLevel(0), | 
| 54       hasVideoRotation(false), | 54       hasVideoRotation(false), | 
| 55       videoRotation(kVideoRotation_0), | 55       videoRotation(kVideoRotation_0), | 
| 56       hasVideoContentType(false), | 56       hasVideoContentType(false), | 
| 57       videoContentType(VideoContentType::UNSPECIFIED), | 57       videoContentType(VideoContentType::UNSPECIFIED), | 
| 58       has_video_timing(false) {} | 58       has_video_timing(false), | 
|  | 59       hasFrameMarks(false) {} | 
| 59 | 60 | 
| 60 RTPHeader::RTPHeader() | 61 RTPHeader::RTPHeader() | 
| 61     : markerBit(false), | 62     : markerBit(false), | 
| 62       payloadType(0), | 63       payloadType(0), | 
| 63       sequenceNumber(0), | 64       sequenceNumber(0), | 
| 64       timestamp(0), | 65       timestamp(0), | 
| 65       ssrc(0), | 66       ssrc(0), | 
| 66       numCSRCs(0), | 67       numCSRCs(0), | 
| 67       arrOfCSRCs(), | 68       arrOfCSRCs(), | 
| 68       paddingLength(0), | 69       paddingLength(0), | 
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 252   oss << " ]"; | 253   oss << " ]"; | 
| 253   return oss.str(); | 254   return oss.str(); | 
| 254 } | 255 } | 
| 255 | 256 | 
| 256 std::ostream& BitrateAllocation::operator<<(std::ostream& os) const { | 257 std::ostream& BitrateAllocation::operator<<(std::ostream& os) const { | 
| 257   os << ToString(); | 258   os << ToString(); | 
| 258   return os; | 259   return os; | 
| 259 } | 260 } | 
| 260 | 261 | 
| 261 }  // namespace webrtc | 262 }  // namespace webrtc | 
| OLD | NEW | 
|---|