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

Side by Side Diff: webrtc/video/video_receive_stream.cc

Issue 1756193005: Add histogram stats for AV sync stream offset: (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: mark constructor explicit 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/video/stream_synchronization.cc ('k') | webrtc/video/vie_sync_module.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 10
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 377
378 // Post processing is not supported if the frame is backed by a texture. 378 // Post processing is not supported if the frame is backed by a texture.
379 if (video_frame->native_handle() == NULL) { 379 if (video_frame->native_handle() == NULL) {
380 if (config_.pre_render_callback) 380 if (config_.pre_render_callback)
381 config_.pre_render_callback->FrameCallback(video_frame); 381 config_.pre_render_callback->FrameCallback(video_frame);
382 } 382 }
383 } 383 }
384 384
385 int VideoReceiveStream::RenderFrame(const uint32_t /*stream_id*/, 385 int VideoReceiveStream::RenderFrame(const uint32_t /*stream_id*/,
386 const VideoFrame& video_frame) { 386 const VideoFrame& video_frame) {
387 int64_t sync_offset_ms;
388 if (vie_sync_.GetStreamSyncOffsetInMs(video_frame, &sync_offset_ms))
389 stats_proxy_.OnSyncOffsetUpdated(sync_offset_ms);
390
387 // TODO(pbos): Wire up config_.render->IsTextureSupported() and convert if not 391 // TODO(pbos): Wire up config_.render->IsTextureSupported() and convert if not
388 // supported. Or provide methods for converting a texture frame in 392 // supported. Or provide methods for converting a texture frame in
389 // VideoFrame. 393 // VideoFrame.
390 394
391 if (config_.renderer != nullptr) 395 if (config_.renderer != nullptr)
392 config_.renderer->RenderFrame( 396 config_.renderer->RenderFrame(
393 video_frame, 397 video_frame,
394 video_frame.render_time_ms() - clock_->TimeInMilliseconds()); 398 video_frame.render_time_ms() - clock_->TimeInMilliseconds());
395 399
396 stats_proxy_.OnRenderedFrame(video_frame); 400 stats_proxy_.OnRenderedFrame(video_frame);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 const std::vector<uint16_t>& sequence_numbers) { 436 const std::vector<uint16_t>& sequence_numbers) {
433 rtp_rtcp_->SendNack(sequence_numbers); 437 rtp_rtcp_->SendNack(sequence_numbers);
434 } 438 }
435 439
436 void VideoReceiveStream::RequestKeyFrame() { 440 void VideoReceiveStream::RequestKeyFrame() {
437 rtp_rtcp_->RequestKeyFrame(); 441 rtp_rtcp_->RequestKeyFrame();
438 } 442 }
439 443
440 } // namespace internal 444 } // namespace internal
441 } // namespace webrtc 445 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/video/stream_synchronization.cc ('k') | webrtc/video/vie_sync_module.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698