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

Side by Side Diff: webrtc/modules/video_coding/encoded_frame.cc

Issue 2986893002: Piggybacking simulcast id and ALR experiment id into video content type extension. (Closed)
Patch Set: Remove static initialization from VideoContentType and remove memoization in AlrDetector 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) 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 _payloadType = 0; 80 _payloadType = 0;
81 _frameType = kVideoFrameDelta; 81 _frameType = kVideoFrameDelta;
82 _encodedWidth = 0; 82 _encodedWidth = 0;
83 _encodedHeight = 0; 83 _encodedHeight = 0;
84 _completeFrame = false; 84 _completeFrame = false;
85 _missingFrame = false; 85 _missingFrame = false;
86 _length = 0; 86 _length = 0;
87 _codecSpecificInfo.codecType = kVideoCodecUnknown; 87 _codecSpecificInfo.codecType = kVideoCodecUnknown;
88 _codec = kVideoCodecUnknown; 88 _codec = kVideoCodecUnknown;
89 rotation_ = kVideoRotation_0; 89 rotation_ = kVideoRotation_0;
90 content_type_ = VideoContentType::UNSPECIFIED; 90 content_type_ = VideoContentType::Unspecified();
91 timing_.flags = TimingFrameFlags::kInvalid; 91 timing_.flags = TimingFrameFlags::kInvalid;
92 _rotation_set = false; 92 _rotation_set = false;
93 } 93 }
94 94
95 void VCMEncodedFrame::CopyCodecSpecific(const RTPVideoHeader* header) { 95 void VCMEncodedFrame::CopyCodecSpecific(const RTPVideoHeader* header) {
96 if (header) { 96 if (header) {
97 switch (header->codec) { 97 switch (header->codec) {
98 case kRtpVideoVp8: { 98 case kRtpVideoVp8: {
99 if (_codecSpecificInfo.codecType != kVideoCodecVP8) { 99 if (_codecSpecificInfo.codecType != kVideoCodecVP8) {
100 // This is the first packet for this frame. 100 // This is the first packet for this frame.
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 // copy old data 209 // copy old data
210 memcpy(newBuffer, _buffer, _size); 210 memcpy(newBuffer, _buffer, _size);
211 delete[] _buffer; 211 delete[] _buffer;
212 } 212 }
213 _buffer = newBuffer; 213 _buffer = newBuffer;
214 _size = minimumSize; 214 _size = minimumSize;
215 } 215 }
216 } 216 }
217 217
218 } // namespace webrtc 218 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698