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

Unified Diff: webrtc/video/payload_router.cc

Issue 2911193002: Implement timing frames. (Closed)
Patch Set: Implement Holmer@ comments Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/test/fuzzers/rtp_packet_fuzzer.cc ('k') | webrtc/video/rtp_video_stream_receiver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/payload_router.cc
diff --git a/webrtc/video/payload_router.cc b/webrtc/video/payload_router.cc
index 52e9d46ebb4f594c4fbfa3d96b1753e0717dabdb..12ced89b4e5190ab42bf0d3a64ce8ce664aa3695 100644
--- a/webrtc/video/payload_router.cc
+++ b/webrtc/video/payload_router.cc
@@ -130,6 +130,21 @@ EncodedImageCallback::Result PayloadRouter::OnEncodedImage(
CopyCodecSpecific(codec_specific_info, &rtp_video_header);
rtp_video_header.rotation = encoded_image.rotation_;
rtp_video_header.content_type = encoded_image.content_type_;
+ if (encoded_image.timing_.is_timing_frame) {
+ rtp_video_header.video_timing.encode_start_delta_ms =
+ VideoTiming::GetDeltaCappedMs(encoded_image.capture_time_ms_,
+ encoded_image.timing_.encode_start_ms);
+ rtp_video_header.video_timing.encode_finish_delta_ms =
+ VideoTiming::GetDeltaCappedMs(encoded_image.capture_time_ms_,
+ encoded_image.timing_.encode_finish_ms);
+ rtp_video_header.video_timing.packetization_finish_delta_ms = 0;
+ rtp_video_header.video_timing.pacer_exit_delta_ms = 0;
+ rtp_video_header.video_timing.network_timstamp_delta_ms = 0;
+ rtp_video_header.video_timing.network2_timstamp_delta_ms = 0;
+ rtp_video_header.video_timing.is_timing_frame = true;
+ } else {
+ rtp_video_header.video_timing.is_timing_frame = false;
+ }
rtp_video_header.playout_delay = encoded_image.playout_delay_;
int stream_index = rtp_video_header.simulcastIdx;
« no previous file with comments | « webrtc/test/fuzzers/rtp_packet_fuzzer.cc ('k') | webrtc/video/rtp_video_stream_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698