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

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

Issue 1211353002: Integration of VP9 packetization. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 4 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 header->codecHeader.VP8.temporalIdx; 125 header->codecHeader.VP8.temporalIdx;
126 _codecSpecificInfo.codecSpecific.VP8.layerSync = 126 _codecSpecificInfo.codecSpecific.VP8.layerSync =
127 header->codecHeader.VP8.layerSync; 127 header->codecHeader.VP8.layerSync;
128 } 128 }
129 if (header->codecHeader.VP8.keyIdx != kNoKeyIdx) { 129 if (header->codecHeader.VP8.keyIdx != kNoKeyIdx) {
130 _codecSpecificInfo.codecSpecific.VP8.keyIdx = 130 _codecSpecificInfo.codecSpecific.VP8.keyIdx =
131 header->codecHeader.VP8.keyIdx; 131 header->codecHeader.VP8.keyIdx;
132 } 132 }
133 break; 133 break;
134 } 134 }
135 case kRtpVideoVp9: {
136 if (_codecSpecificInfo.codecType != kVideoCodecVP9) {
137 // This is the first packet for this frame.
138 _codecSpecificInfo.codecSpecific.VP9.picture_id = -1;
139 _codecSpecificInfo.codecSpecific.VP9.temporal_idx = 0;
140 _codecSpecificInfo.codecSpecific.VP9.spatial_idx = 0;
141 _codecSpecificInfo.codecSpecific.VP9.gof_idx = 0;
142 _codecSpecificInfo.codecSpecific.VP9.inter_layer_predicted = false;
143 _codecSpecificInfo.codecSpecific.VP9.tl0_pic_idx = -1;
144 _codecSpecificInfo.codecType = kVideoCodecVP9;
145 }
146 _codecSpecificInfo.codecSpecific.VP9.inter_pic_predicted =
147 header->codecHeader.VP9.inter_pic_predicted;
148 _codecSpecificInfo.codecSpecific.VP9.flexible_mode =
149 header->codecHeader.VP9.flexible_mode;
150 _codecSpecificInfo.codecSpecific.VP9.beginning_of_frame =
151 header->codecHeader.VP9.beginning_of_frame;
152 _codecSpecificInfo.codecSpecific.VP9.end_of_frame =
153 header->codecHeader.VP9.end_of_frame;
154 _codecSpecificInfo.codecSpecific.VP9.ss_data_available =
155 header->codecHeader.VP9.ss_data_available;
156 if (header->codecHeader.VP9.picture_id != kNoPictureId) {
157 _codecSpecificInfo.codecSpecific.VP9.picture_id =
158 header->codecHeader.VP9.picture_id;
159 }
160 if (header->codecHeader.VP9.tl0_pic_idx != kNoTl0PicIdx) {
161 _codecSpecificInfo.codecSpecific.VP9.tl0_pic_idx =
162 header->codecHeader.VP9.tl0_pic_idx;
163 }
164 if (header->codecHeader.VP9.temporal_idx != kNoTemporalIdx) {
165 _codecSpecificInfo.codecSpecific.VP9.temporal_idx =
166 header->codecHeader.VP9.temporal_idx;
167 _codecSpecificInfo.codecSpecific.VP9.temporal_up_switch =
168 header->codecHeader.VP9.temporal_up_switch;
169 }
170 if (header->codecHeader.VP9.spatial_idx != kNoSpatialIdx) {
171 _codecSpecificInfo.codecSpecific.VP9.spatial_idx =
172 header->codecHeader.VP9.spatial_idx;
173 _codecSpecificInfo.codecSpecific.VP9.inter_layer_predicted =
174 header->codecHeader.VP9.inter_layer_predicted;
175 }
176 if (header->codecHeader.VP9.gof_idx != kNoGofIdx) {
177 _codecSpecificInfo.codecSpecific.VP9.gof_idx =
178 header->codecHeader.VP9.gof_idx;
179 }
180 if (header->codecHeader.VP9.ss_data_available) {
181 _codecSpecificInfo.codecSpecific.VP9.num_spatial_layers =
182 header->codecHeader.VP9.num_spatial_layers;
183 _codecSpecificInfo.codecSpecific.VP9.spatial_layer_resolution_present=
stefan-webrtc 2015/07/29 13:13:05 Space before =
åsapersson 2015/07/30 11:42:19 long line, changed format
184 header->codecHeader.VP9.spatial_layer_resolution_present;
185 if (header->codecHeader.VP9.spatial_layer_resolution_present) {
186 for (size_t i = 0; i < header->codecHeader.VP9.num_spatial_layers;
187 ++i) {
188 _codecSpecificInfo.codecSpecific.VP9.width[i] =
189 header->codecHeader.VP9.width[i];
190 _codecSpecificInfo.codecSpecific.VP9.height[i] =
191 header->codecHeader.VP9.height[i];
192 }
193 }
194 _codecSpecificInfo.codecSpecific.VP9.gof.CopyGofInfoVP9(
195 header->codecHeader.VP9.gof);
196 }
197 break;
198 }
135 case kRtpVideoH264: { 199 case kRtpVideoH264: {
136 _codecSpecificInfo.codecType = kVideoCodecH264; 200 _codecSpecificInfo.codecType = kVideoCodecH264;
137 break; 201 break;
138 } 202 }
139 default: { 203 default: {
140 _codecSpecificInfo.codecType = kVideoCodecUnknown; 204 _codecSpecificInfo.codecType = kVideoCodecUnknown;
141 break; 205 break;
142 } 206 }
143 } 207 }
144 } 208 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 const std::vector<webrtc::FrameType>& frame_types, 259 const std::vector<webrtc::FrameType>& frame_types,
196 std::vector<VideoFrameType>* video_frame_types) { 260 std::vector<VideoFrameType>* video_frame_types) {
197 assert(video_frame_types); 261 assert(video_frame_types);
198 video_frame_types->reserve(frame_types.size()); 262 video_frame_types->reserve(frame_types.size());
199 for (size_t i = 0; i < frame_types.size(); ++i) { 263 for (size_t i = 0; i < frame_types.size(); ++i) {
200 (*video_frame_types)[i] = ConvertFrameType(frame_types[i]); 264 (*video_frame_types)[i] = ConvertFrameType(frame_types[i]);
201 } 265 }
202 } 266 }
203 267
204 } 268 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698