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

Issue 2772033002: Add content type information to encoded images and corresponding rtp extension header (Closed)

Created:
3 years, 9 months ago by ilnik
Modified:
3 years, 8 months ago
CC:
webrtc-reviews_webrtc.org, interface-changes_webrtc.org, video-team_agora.io, danilchap, yujie_mao (webrtc), zhuangzesen_agora.io, zhengzhonghou_agora.io, stefan-webrtc, tterriberry_mozilla.com, qiang.lu, niklas.enbom, sdk-team_agora.io, peah-webrtc, the sun, perkj_webrtc, mflodman
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Add content type information to Encoded Images and add corresponding RTP extension header. Use it to separate UMA e2e delay metric between screenshare from video. Content type extension is set based on encoder settings and processed and decoders. Also, Fix full-stack-tests to calculate RTT correctly, so new metric could be tested. BUG=webrtc:7420 Review-Url: https://codereview.webrtc.org/2772033002 Cr-Commit-Position: refs/heads/master@{#17640} Committed: https://chromium.googlesource.com/external/webrtc/+/64e739aeae5629cbbebf2a19e1d3e6b452bb6d0b

Patch Set 1 #

Patch Set 2 : Fix CE #

Patch Set 3 : Fix CE, pass 2 #

Patch Set 4 : Fix CE, pass 3 #

Patch Set 5 : Fix CE, pass 4 #

Patch Set 6 : Fix failing EndToEnd tests and histograms reporting #

Patch Set 7 : Fix uninitialized value error #

Patch Set 8 : Set EncodedImage content_type from vie_encoder #

Total comments: 6

Patch Set 9 : Set content type extension only for key frames #

Patch Set 10 : Implement Sprang@ comments #

Patch Set 11 : Fix Mac CE #

Patch Set 12 : Rebase #

Patch Set 13 : Fix CE #

Patch Set 14 : Fix Mac CE #

Total comments: 2

Patch Set 15 : Apply Nisse@ comments, add testing for content type switch #

Patch Set 16 : Cleanup and fix errors #

Patch Set 17 : Cleanup and fix CE #

Patch Set 18 : Cleanup and fix CE on android #

Patch Set 19 : Fix failing test #

Patch Set 20 : Fix android CE #

Patch Set 21 : Fix android CE #

Total comments: 17

Patch Set 22 : Changed extension URI #

Patch Set 23 : Rebase #

Patch Set 24 : Rename default content type, don't send extension with it #

Patch Set 25 : Fix usage of uninitialized data #

Total comments: 6

Patch Set 26 : Correctly process incorrect received values in the extension #

Patch Set 27 : Rebase #

Patch Set 28 : Add missing check for extension length #

Patch Set 29 : Rebase #

Total comments: 24

Patch Set 30 : Implement Tommi@ comments #

Total comments: 2

Patch Set 31 : Fix typo, leading to failed video catpure test #

Unified diffs Side-by-side diffs Delta from patch set Stats (+452 lines, -99 lines) Patch
A + webrtc/api/video/video_content_type.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +13 lines, -8 lines 0 comments Download
M webrtc/common_types.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2 chunks +6 lines, -0 lines 0 comments Download
M webrtc/common_types.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3 lines, -1 line 0 comments Download
M webrtc/config.h View 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/config.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +6 lines, -1 line 0 comments Download
M webrtc/media/engine/webrtcvideoengine2_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/include/module_common_types.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +3 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_header_extension.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +13 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +29 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_packet.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_receiver_video.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +6 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +6 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_utility.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +23 lines, -0 lines 0 comments Download
M webrtc/modules/video_capture/video_capture_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 4 chunks +39 lines, -55 lines 0 comments Download
M webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +3 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/encoded_frame.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +6 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/encoded_frame.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/video_coding/frame_buffer.cc View 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/video_coding/frame_object.cc View 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/video_coding/generic_decoder.h View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/modules/video_coding/generic_decoder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 3 chunks +12 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/include/mock/mock_vcm_callbacks.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/video_coding/include/video_coding_defines.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/sdk/android/src/jni/androidmediaencoder_jni.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/sdk/objc/Framework/Classes/h264_video_toolbox_encoder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/sdk/objc/Framework/Classes/h264_video_toolbox_encoder.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +4 lines, -0 lines 0 comments Download
M webrtc/test/call_test.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/test/constants.h View 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/test/constants.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/test/fake_encoder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 3 chunks +5 lines, -0 lines 0 comments Download
M webrtc/test/fuzzers/rtp_packet_fuzzer.cc View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/video/end_to_end_tests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +114 lines, -1 line 0 comments Download
M webrtc/video/payload_router.cc View 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/video/receive_statistics_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +6 lines, -2 lines 0 comments Download
M webrtc/video/receive_statistics_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 5 chunks +41 lines, -7 lines 0 comments Download
M webrtc/video/receive_statistics_proxy_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 2 chunks +18 lines, -10 lines 0 comments Download
M webrtc/video/rtp_stream_receiver.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/video/video_quality_test.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +4 lines, -0 lines 0 comments Download
M webrtc/video/video_send_stream_tests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +37 lines, -0 lines 0 comments Download
M webrtc/video/video_stream_decoder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/video/video_stream_decoder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/video_frame.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 130 (88 generated)
ilnik
Content type is now propagated from receiver to sender. Added new field to VideoFrame and ...
3 years, 9 months ago (2017-03-24 12:23:00 UTC) #2
sprang_webrtc
First pass, looks good Maybe I missed something, but do we always send this extension ...
3 years, 8 months ago (2017-03-28 11:14:23 UTC) #22
ilnik
https://codereview.webrtc.org/2772033002/diff/140001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/140001/webrtc/api/video/video_content_type.h#newcode19 webrtc/api/video/video_content_type.h:19: }; On 2017/03/28 11:14:23, språng wrote: > Not sure ...
3 years, 8 months ago (2017-03-28 14:47:02 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2772033002/220001
3 years, 8 months ago (2017-03-28 15:24:49 UTC) #29
commit-bot: I haz the power
No L-G-T-M from a valid reviewer yet. CQ run can only be started once the ...
3 years, 8 months ago (2017-03-28 15:24:51 UTC) #31
ilnik
3 years, 8 months ago (2017-03-29 11:16:43 UTC) #45
nisse-webrtc
https://codereview.webrtc.org/2772033002/diff/260001/webrtc/api/video/video_frame.h File webrtc/api/video/video_frame.h (right): https://codereview.webrtc.org/2772033002/diff/260001/webrtc/api/video/video_frame.h#newcode124 webrtc/api/video/video_frame.h:124: VideoContentType content_type_; Please, don't bloat the VideoFrame class with ...
3 years, 8 months ago (2017-03-29 12:05:55 UTC) #47
ilnik
https://codereview.webrtc.org/2772033002/diff/260001/webrtc/api/video/video_frame.h File webrtc/api/video/video_frame.h (right): https://codereview.webrtc.org/2772033002/diff/260001/webrtc/api/video/video_frame.h#newcode124 webrtc/api/video/video_frame.h:124: VideoContentType content_type_; On 2017/03/29 12:05:55, nisse-webrtc wrote: > Please, ...
3 years, 8 months ago (2017-03-29 12:43:55 UTC) #48
nisse-webrtc
On 2017/03/29 12:43:55, ilnik wrote: > Are you OK with having it in EncodedImage? Since ...
3 years, 8 months ago (2017-03-29 12:59:00 UTC) #49
ilnik
On 2017/03/29 12:59:00, nisse-webrtc wrote: > On 2017/03/29 12:43:55, ilnik wrote: > > > Are ...
3 years, 8 months ago (2017-03-30 14:09:38 UTC) #54
ilnik
On 2017/03/30 14:09:38, ilnik wrote: > On 2017/03/29 12:59:00, nisse-webrtc wrote: > > On 2017/03/29 ...
3 years, 8 months ago (2017-04-03 07:46:47 UTC) #59
nisse-webrtc
https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h#newcode17 webrtc/api/video/video_content_type.h:17: kDefault = 0, If these are the numerical values ...
3 years, 8 months ago (2017-04-03 12:07:18 UTC) #60
danilchap
https://codereview.webrtc.org/2772033002/diff/400001/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h File webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h (right): https://codereview.webrtc.org/2772033002/diff/400001/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h#newcode105 webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h:105: static constexpr const char* kUri = "urn:webrtc:video-content-type"; http://www.webrtc.org/experiments/rtp-hdrext/video-content-type might ...
3 years, 8 months ago (2017-04-03 12:19:54 UTC) #61
ilnik
https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h#newcode17 webrtc/api/video/video_content_type.h:17: kDefault = 0, On 2017/04/03 12:07:18, nisse-webrtc wrote: > ...
3 years, 8 months ago (2017-04-03 14:03:43 UTC) #62
ilnik
https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h#newcode17 webrtc/api/video/video_content_type.h:17: kDefault = 0, On 2017/04/03 14:03:42, ilnik wrote: > ...
3 years, 8 months ago (2017-04-05 11:24:16 UTC) #63
nisse-webrtc
https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h#newcode17 webrtc/api/video/video_content_type.h:17: kDefault = 0, On 2017/04/05 11:24:16, ilnik wrote: > ...
3 years, 8 months ago (2017-04-05 11:46:36 UTC) #64
ilnik
https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h#newcode17 webrtc/api/video/video_content_type.h:17: kDefault = 0, On 2017/04/05 11:46:36, nisse-webrtc wrote: > ...
3 years, 8 months ago (2017-04-05 11:58:02 UTC) #65
danilchap
https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/400001/webrtc/api/video/video_content_type.h#newcode17 webrtc/api/video/video_content_type.h:17: kDefault = 0, On 2017/04/05 11:58:02, ilnik wrote: > ...
3 years, 8 months ago (2017-04-05 12:16:52 UTC) #70
nisse-webrtc
On 2017/04/05 11:58:02, ilnik wrote: > It makes sense to not send the extension for ...
3 years, 8 months ago (2017-04-05 12:35:14 UTC) #71
ilnik
On 2017/04/05 12:35:14, nisse-webrtc wrote: > On 2017/04/05 11:58:02, ilnik wrote: > > It makes ...
3 years, 8 months ago (2017-04-05 12:48:45 UTC) #72
ilnik
On 2017/04/05 12:48:45, ilnik wrote: > On 2017/04/05 12:35:14, nisse-webrtc wrote: > > On 2017/04/05 ...
3 years, 8 months ago (2017-04-06 07:43:44 UTC) #73
ilnik
On 2017/04/06 07:43:44, ilnik wrote: > On 2017/04/05 12:48:45, ilnik wrote: > > On 2017/04/05 ...
3 years, 8 months ago (2017-04-06 09:01:10 UTC) #74
nisse-webrtc
lgtm. https://codereview.webrtc.org/2772033002/diff/480001/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc File webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc (right): https://codereview.webrtc.org/2772033002/diff/480001/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc#newcode214 webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc:214: *content_type = static_cast<VideoContentType>(data[0]); Maybe return false if the ...
3 years, 8 months ago (2017-04-06 09:23:22 UTC) #75
ilnik
https://codereview.webrtc.org/2772033002/diff/480001/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc File webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc (right): https://codereview.webrtc.org/2772033002/diff/480001/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc#newcode214 webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc:214: *content_type = static_cast<VideoContentType>(data[0]); On 2017/04/06 09:23:22, nisse-webrtc wrote: > ...
3 years, 8 months ago (2017-04-06 10:04:49 UTC) #76
ilnik
On 2017/04/06 10:04:49, ilnik wrote: > https://codereview.webrtc.org/2772033002/diff/480001/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc > File webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc (right): > > https://codereview.webrtc.org/2772033002/diff/480001/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc#newcode214 > ...
3 years, 8 months ago (2017-04-06 10:20:20 UTC) #77
nisse-webrtc
Still lgtm.
3 years, 8 months ago (2017-04-06 10:55:14 UTC) #80
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2772033002/540001
3 years, 8 months ago (2017-04-06 11:14:37 UTC) #84
commit-bot: I haz the power
Try jobs failed on following builders: presubmit on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/presubmit/builds/15826)
3 years, 8 months ago (2017-04-06 11:19:47 UTC) #86
ilnik
On 2017/04/06 11:19:47, commit-bot: I haz the power wrote: > Try jobs failed on following ...
3 years, 8 months ago (2017-04-06 11:28:43 UTC) #88
ilnik
Tommi, could you please give a rubberstamp lgtm? The issue was reviewed by Sprang and ...
3 years, 8 months ago (2017-04-10 09:34:47 UTC) #89
nisse-webrtc
Can you clarify cl title and description, now that it's only encoded frames that get ...
3 years, 8 months ago (2017-04-10 09:41:23 UTC) #90
ilnik
On 2017/04/10 09:41:23, nisse-webrtc wrote: > Can you clarify cl title and description, now that ...
3 years, 8 months ago (2017-04-10 09:44:09 UTC) #92
nisse-webrtc
On 2017/04/10 09:44:09, ilnik wrote: > On 2017/04/10 09:41:23, nisse-webrtc wrote: > > Can you ...
3 years, 8 months ago (2017-04-10 09:47:47 UTC) #93
ilnik
On 2017/04/10 09:47:47, nisse-webrtc wrote: > On 2017/04/10 09:44:09, ilnik wrote: > > On 2017/04/10 ...
3 years, 8 months ago (2017-04-10 09:49:32 UTC) #94
tommi
https://codereview.webrtc.org/2772033002/diff/560001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/560001/webrtc/api/video/video_content_type.h#newcode17 webrtc/api/video/video_content_type.h:17: kUnspecified = 0, This should be UNSPECIFIED, SCREENSHARE, TOTAL_CONTENT_TYPES ...
3 years, 8 months ago (2017-04-10 10:59:18 UTC) #99
ilnik
https://codereview.webrtc.org/2772033002/diff/560001/webrtc/api/video/video_content_type.h File webrtc/api/video/video_content_type.h (right): https://codereview.webrtc.org/2772033002/diff/560001/webrtc/api/video/video_content_type.h#newcode17 webrtc/api/video/video_content_type.h:17: kUnspecified = 0, On 2017/04/10 10:59:18, tommi ooo (webrtc) ...
3 years, 8 months ago (2017-04-10 12:47:43 UTC) #100
ilnik
3 years, 8 months ago (2017-04-10 12:47:51 UTC) #101
tommi
lgtm https://codereview.webrtc.org/2772033002/diff/560001/webrtc/modules/video_capture/video_capture_impl.cc File webrtc/modules/video_capture/video_capture_impl.cc (right): https://codereview.webrtc.org/2772033002/diff/560001/webrtc/modules/video_capture/video_capture_impl.cc#newcode205 webrtc/modules/video_capture/video_capture_impl.cc:205: if (_incomingFrameTimesNanos[0] / rtc::kNumNanosecsPerMicrosec == 0) { On ...
3 years, 8 months ago (2017-04-11 07:59:06 UTC) #122
ilnik
https://codereview.webrtc.org/2772033002/diff/560001/webrtc/modules/video_capture/video_capture_impl.cc File webrtc/modules/video_capture/video_capture_impl.cc (right): https://codereview.webrtc.org/2772033002/diff/560001/webrtc/modules/video_capture/video_capture_impl.cc#newcode205 webrtc/modules/video_capture/video_capture_impl.cc:205: if (_incomingFrameTimesNanos[0] / rtc::kNumNanosecsPerMicrosec == 0) { On 2017/04/11 ...
3 years, 8 months ago (2017-04-11 08:10:31 UTC) #123
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2772033002/600001
3 years, 8 months ago (2017-04-11 08:43:04 UTC) #126
commit-bot: I haz the power
Committed patchset #31 (id:600001) as https://chromium.googlesource.com/external/webrtc/+/64e739aeae5629cbbebf2a19e1d3e6b452bb6d0b
3 years, 8 months ago (2017-04-11 08:46:12 UTC) #129
ilnik
3 years, 8 months ago (2017-04-11 10:59:21 UTC) #130
Message was sent while issue was closed.
A revert of this CL (patchset #31 id:600001) has been created in
https://codereview.webrtc.org/2816463002/ by ilnik@webrtc.org.

The reason for reverting is: Breaks dependent projects..

Powered by Google App Engine
This is Rietveld 408576698