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

Side by Side Diff: webrtc/test/frame_generator.cc

Issue 1679323002: Cleanup of webrtc::VideoFrame. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 9 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
« no previous file with comments | « webrtc/modules/video_render/video_render_internal_impl.cc ('k') | webrtc/test/frame_utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 #include "webrtc/test/frame_generator.h" 10 #include "webrtc/test/frame_generator.h"
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 (pixels_scrolled_y / 2)) + 210 (pixels_scrolled_y / 2)) +
211 (pixels_scrolled_x / 2); 211 (pixels_scrolled_x / 2);
212 212
213 current_frame_.CreateFrame( 213 current_frame_.CreateFrame(
214 &current_source_frame_->buffer(PlaneType::kYPlane)[offset_y], 214 &current_source_frame_->buffer(PlaneType::kYPlane)[offset_y],
215 &current_source_frame_->buffer(PlaneType::kUPlane)[offset_u], 215 &current_source_frame_->buffer(PlaneType::kUPlane)[offset_u],
216 &current_source_frame_->buffer(PlaneType::kVPlane)[offset_v], 216 &current_source_frame_->buffer(PlaneType::kVPlane)[offset_v],
217 kTargetWidth, kTargetHeight, 217 kTargetWidth, kTargetHeight,
218 current_source_frame_->stride(PlaneType::kYPlane), 218 current_source_frame_->stride(PlaneType::kYPlane),
219 current_source_frame_->stride(PlaneType::kUPlane), 219 current_source_frame_->stride(PlaneType::kUPlane),
220 current_source_frame_->stride(PlaneType::kVPlane)); 220 current_source_frame_->stride(PlaneType::kVPlane),
221 kVideoRotation_0);
221 } 222 }
222 223
223 Clock* const clock_; 224 Clock* const clock_;
224 const int64_t start_time_; 225 const int64_t start_time_;
225 const int64_t scroll_time_; 226 const int64_t scroll_time_;
226 const int64_t pause_time_; 227 const int64_t pause_time_;
227 const size_t num_frames_; 228 const size_t num_frames_;
228 size_t current_frame_num_; 229 size_t current_frame_num_;
229 VideoFrame* current_source_frame_; 230 VideoFrame* current_source_frame_;
230 VideoFrame current_frame_; 231 VideoFrame current_frame_;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 files.push_back(file); 272 files.push_back(file);
272 } 273 }
273 274
274 return new ScrollingImageFrameGenerator( 275 return new ScrollingImageFrameGenerator(
275 clock, files, source_width, source_height, target_width, target_height, 276 clock, files, source_width, source_height, target_width, target_height,
276 scroll_time_ms, pause_time_ms); 277 scroll_time_ms, pause_time_ms);
277 } 278 }
278 279
279 } // namespace test 280 } // namespace test
280 } // namespace webrtc 281 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_render/video_render_internal_impl.cc ('k') | webrtc/test/frame_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698