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

Side by Side Diff: ppapi/cpp/video_frame.cc

Issue 14192054: Rename PPAPI Video Stream APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Straighten out naming confusion, improve comments. Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/cpp/video_frame.h ('k') | ppapi/cpp/video_reader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ppapi/cpp/video_frame.h"
6
7 namespace pp {
8
9 // VideoFrame ------------------------------------------------------------------
10
11 VideoFrame::VideoFrame()
12 : video_frame_() {
13 video_frame_.image_data = image_data_.pp_resource();
14 }
15
16 VideoFrame::VideoFrame(const ImageData& image_data, PP_TimeTicks timestamp)
17 : image_data_(image_data), video_frame_() {
18 video_frame_.timestamp = timestamp;
19 video_frame_.image_data = image_data_.pp_resource();
20 }
21
22 VideoFrame::VideoFrame(PassRef, const PP_VideoFrame& pp_video_frame)
23 : video_frame_(pp_video_frame) {
24 // Take over the image_data resource in the frame.
25 image_data_ = ImageData(PASS_REF, video_frame_.image_data);
26 }
27
28 VideoFrame::VideoFrame(const VideoFrame& other)
29 : video_frame_() {
30 set_image_data(other.image_data());
31 set_timestamp(other.timestamp());
32 }
33
34 VideoFrame::~VideoFrame() {
35 }
36
37 VideoFrame& VideoFrame::operator=(const VideoFrame& other) {
38 if (this == &other)
39 return *this;
40
41 set_image_data(other.image_data());
42 set_timestamp(other.timestamp());
43
44 return *this;
45 }
46
47 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/cpp/video_frame.h ('k') | ppapi/cpp/video_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698