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

Side by Side Diff: webrtc/video_frame.h

Issue 1264693003: Add QP stats for sent video streams to StatsReport. Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: added comment Created 5 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) 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 uint32_t _timeStamp = 0; 186 uint32_t _timeStamp = 0;
187 // NTP time of the capture time in local timebase in milliseconds. 187 // NTP time of the capture time in local timebase in milliseconds.
188 int64_t ntp_time_ms_ = 0; 188 int64_t ntp_time_ms_ = 0;
189 int64_t capture_time_ms_ = 0; 189 int64_t capture_time_ms_ = 0;
190 // TODO(pbos): Use webrtc::FrameType directly (and remove VideoFrameType). 190 // TODO(pbos): Use webrtc::FrameType directly (and remove VideoFrameType).
191 VideoFrameType _frameType = kDeltaFrame; 191 VideoFrameType _frameType = kDeltaFrame;
192 uint8_t* _buffer; 192 uint8_t* _buffer;
193 size_t _length; 193 size_t _length;
194 size_t _size; 194 size_t _size;
195 bool _completeFrame = false; 195 bool _completeFrame = false;
196 int qp_ = -1; // Quantizer value.
196 }; 197 };
197 198
198 } // namespace webrtc 199 } // namespace webrtc
199 #endif // WEBRTC_VIDEO_FRAME_H_ 200 #endif // WEBRTC_VIDEO_FRAME_H_
OLDNEW
« webrtc/video/send_statistics_proxy.h ('K') | « webrtc/video/send_statistics_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698