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

Side by Side Diff: webrtc/api/video/video_frame.h

Issue 2666303002: Revert of Drop frames until specified bitrate is achieved. (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | webrtc/api/video/video_frame.cc » ('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) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 30 matching lines...) Expand all
41 ~VideoFrame(); 41 ~VideoFrame();
42 42
43 // Support move and copy. 43 // Support move and copy.
44 VideoFrame(const VideoFrame&); 44 VideoFrame(const VideoFrame&);
45 VideoFrame(VideoFrame&&); 45 VideoFrame(VideoFrame&&);
46 VideoFrame& operator=(const VideoFrame&); 46 VideoFrame& operator=(const VideoFrame&);
47 VideoFrame& operator=(VideoFrame&&); 47 VideoFrame& operator=(VideoFrame&&);
48 48
49 // Get frame width. 49 // Get frame width.
50 int width() const; 50 int width() const;
51
51 // Get frame height. 52 // Get frame height.
52 int height() const; 53 int height() const;
53 // Get frame size in pixels.
54 uint32_t size() const;
55 54
56 // System monotonic clock, same timebase as rtc::TimeMicros(). 55 // System monotonic clock, same timebase as rtc::TimeMicros().
57 int64_t timestamp_us() const { return timestamp_us_; } 56 int64_t timestamp_us() const { return timestamp_us_; }
58 void set_timestamp_us(int64_t timestamp_us) { timestamp_us_ = timestamp_us; } 57 void set_timestamp_us(int64_t timestamp_us) { timestamp_us_ = timestamp_us; }
59 58
60 // TODO(nisse): After the cricket::VideoFrame and webrtc::VideoFrame 59 // TODO(nisse): After the cricket::VideoFrame and webrtc::VideoFrame
61 // merge, timestamps other than timestamp_us will likely be 60 // merge, timestamps other than timestamp_us will likely be
62 // deprecated. 61 // deprecated.
63 62
64 // Set frame timestamp (90kHz). 63 // Set frame timestamp (90kHz).
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 rtc::scoped_refptr<webrtc::VideoFrameBuffer> video_frame_buffer_; 110 rtc::scoped_refptr<webrtc::VideoFrameBuffer> video_frame_buffer_;
112 uint32_t timestamp_rtp_; 111 uint32_t timestamp_rtp_;
113 int64_t ntp_time_ms_; 112 int64_t ntp_time_ms_;
114 int64_t timestamp_us_; 113 int64_t timestamp_us_;
115 VideoRotation rotation_; 114 VideoRotation rotation_;
116 }; 115 };
117 116
118 } // namespace webrtc 117 } // namespace webrtc
119 118
120 #endif // WEBRTC_API_VIDEO_VIDEO_FRAME_H_ 119 #endif // WEBRTC_API_VIDEO_VIDEO_FRAME_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/video/video_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698