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

Issue 2060403002: Add task queue to Call. (Closed)

Created:
4 years, 6 months ago by perkj_webrtc
Modified:
4 years, 3 months ago
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, yujie_mao (webrtc), zhengzhonghou_agora.io, tterriberry_mozilla.com, the sun, pbos-webrtc, mflodman
Base URL:
https://chromium.googlesource.com/external/webrtc.git@move_getpadding
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

- Add task queue to Call with the intent of replacing the use of one of the process threads. - Split VideoSendStream in two. VideoSendStreamInternal is created and used on the new task queue. - BitrateAllocator is now created on libjingle's worker thread but always used on the new task queue instead of both encoder threads and the process thread. - VideoEncoderConfig and VideoSendStream::Config support move semantics. - The encoder thread is moved from VideoSendStream to ViEEncoder. Frames are forwarded directly to ViEEncoder which is responsible for timestamping ? and encoding the frames. BUG=webrtc:5687 Committed: https://crrev.com/cc168360f41322332860cb075edeb1cde21aa473 Cr-Commit-Position: refs/heads/master@{#13767}

Patch Set 1 #

Patch Set 2 : More cleaning. #

Patch Set 3 : Rebased #

Patch Set 4 : Seems to work. #

Patch Set 5 : Revert changes to gypi. #

Total comments: 22

Patch Set 6 : Remove ViEncoder::Pause / Start and replace with reporting zero bitrate. #

Patch Set 7 : Rebase #

Patch Set 8 : Rebased. #

Total comments: 2

Patch Set 9 : Addressed comments except move. #

Patch Set 10 : Move VideoConfig, VideoEncoderConfig and suspended_ssrcs_. #

Patch Set 11 : Fix some comments. #

Patch Set 12 : Merged with vie encoder tq. #

Patch Set 13 : Moved ViEncoder to VideoSendStream. #

Patch Set 14 : Fix failing tests. #

Patch Set 15 : Rebased #

Patch Set 16 : Fixes and cleaning. #

Patch Set 17 : Rebased. #

Patch Set 18 : ViEEncoderTests #

Patch Set 19 : Cleaning. #

Patch Set 20 : Rebased #

Patch Set 21 : https://codereview.webrtc.org/2121983002/#ps20001 #

Patch Set 22 : Fix gn build dep. #

Patch Set 23 : Really fix gn #

Patch Set 24 : fix asan by making sure tq stop first. #

Patch Set 25 : A bit of self review. #

Patch Set 26 : Revert fix for asan, protect instead. Added destruction observer to frames in ViEEncoder tests. #

Total comments: 38

Patch Set 27 : Addressed Tommis comments #

Patch Set 28 : Rebased. #

Patch Set 29 : Addressed sprangs comments. Added test for dropping frames if encoder is blocked. fixed tsan2. #

Patch Set 30 : Rebased #

Total comments: 55

Patch Set 31 : Addressed Stefans comments. #

Patch Set 32 : Set encoder max size to config_.max_payload_size #

Patch Set 33 : Rebased #

Patch Set 34 : Changed to use SequencedTaskChecker in BitrateAllocator and VieEncoder where needed. #

Patch Set 35 : Fix GN build when SequencedChecker is used. Use SequencedChecker in video_coding/video_sender.cc. #

Patch Set 36 : Switch to SequencedThreadChecker in VideoSendStreamImpl. #

Patch Set 37 : Use SequencedTaskChecker in i420_buffer_pool.cc #

Total comments: 38

Patch Set 38 : rebased #

Patch Set 39 : Fix pbos comments. #

Patch Set 40 : Rebased #

Patch Set 41 : Rebase only. (Audio will break since it now uses BitrateAllocator) #

Patch Set 42 : Fix audio thread check when adding audio to bitrateallocator. #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+1684 lines, -1397 lines) Patch
M webrtc/audio/audio_send_stream.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 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -0 lines 1 comment Download
M webrtc/audio/audio_send_stream.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 31 32 33 34 35 36 37 38 39 40 41 4 chunks +19 lines, -4 lines 0 comments Download
M webrtc/audio/audio_send_stream_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 30 31 32 33 34 35 36 37 38 39 40 41 7 chunks +22 lines, -16 lines 0 comments Download
M webrtc/call.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 30 31 32 33 34 35 36 37 38 39 40 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/call/BUILD.gn 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 31 32 33 34 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/call/bitrate_allocator.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 30 31 32 33 34 35 36 37 38 3 chunks +22 lines, -32 lines 0 comments Download
M webrtc/call/bitrate_allocator.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 31 32 33 34 35 36 37 38 39 40 14 chunks +34 lines, -28 lines 0 comments Download
M webrtc/call/bitrate_estimator_tests.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/call/call.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 31 32 33 34 35 36 37 38 39 40 41 12 chunks +42 lines, -17 lines 0 comments Download
M webrtc/call/call_perf_tests.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/config.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 30 31 32 33 34 35 36 37 38 39 40 2 chunks +13 lines, -0 lines 0 comments Download
M webrtc/media/engine/fakewebrtccall.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 30 31 32 33 34 35 36 37 38 39 40 3 chunks +7 lines, -8 lines 0 comments Download
M webrtc/media/engine/fakewebrtccall.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 19 4 chunks +12 lines, -11 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2.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 30 31 32 33 34 35 36 37 38 39 40 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2.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 31 32 33 34 35 36 37 38 39 40 6 chunks +11 lines, -10 lines 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 11 chunks +15 lines, -12 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 1 chunk +1 line, -1 line 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 30 31 32 33 34 35 36 37 38 39 40 6 chunks +8 lines, -7 lines 0 comments Download
M webrtc/video/BUILD.gn 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 31 32 33 34 35 36 37 38 39 40 3 chunks +2 lines, -3 lines 0 comments Download
M webrtc/video/encoder_state_feedback_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 30 31 32 33 34 35 36 37 38 3 chunks +9 lines, -6 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 6 chunks +10 lines, -10 lines 0 comments Download
M webrtc/video/overuse_frame_detector.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -1 line 0 comments Download
M webrtc/video/send_statistics_proxy.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 30 31 32 33 34 35 36 37 38 39 40 2 chunks +3 lines, -2 lines 0 comments Download
M webrtc/video/send_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 30 31 32 33 34 35 36 37 38 39 40 11 chunks +22 lines, -21 lines 0 comments Download
D webrtc/video/video_capture_input.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -70 lines 0 comments Download
D webrtc/video/video_capture_input.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -109 lines 0 comments Download
M webrtc/video/video_capture_input_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +0 lines, -255 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video/video_send_stream.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 30 31 32 33 34 35 36 37 38 39 40 4 chunks +21 lines, -98 lines 0 comments Download
M webrtc/video/video_send_stream.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 31 32 33 34 35 36 37 38 39 40 11 chunks +578 lines, -492 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 30 31 32 33 34 35 36 37 38 39 40 16 chunks +52 lines, -19 lines 0 comments Download
M webrtc/video/vie_encoder.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 30 31 32 33 34 35 36 37 38 39 40 2 chunks +95 lines, -73 lines 0 comments Download
M webrtc/video/vie_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 30 31 32 33 34 35 36 37 38 39 40 10 chunks +393 lines, -73 lines 0 comments Download
A webrtc/video/vie_encoder_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 30 1 chunk +255 lines, -0 lines 0 comments Download
M webrtc/video/webrtc_video.gypi 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 31 32 33 34 35 36 37 38 39 40 1 chunk +0 lines, -2 lines 0 comments Download
M webrtc/video_send_stream.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 30 31 32 33 34 35 36 37 38 39 40 5 chunks +22 lines, -6 lines 0 comments Download
M webrtc/webrtc_tests.gypi 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 31 32 33 34 35 36 37 38 39 40 1 chunk +1 line, -1 line 0 comments Download

Depends on Patchset:

Messages

Total messages: 47 (15 generated)
tommi
haven't taken a thorough look yet, but have at least one comment :) https://codereview.webrtc.org/2060403002/diff/80001/webrtc/call/bitrate_allocator.cc File ...
4 years, 6 months ago (2016-06-17 07:59:02 UTC) #3
perkj_webrtc
Adding mflodman. I have not yet addressed the comments. only fyi yet.
4 years, 6 months ago (2016-06-17 13:18:20 UTC) #5
perkj_webrtc
Hi Can you please review? https://codereview.webrtc.org/2060403002/diff/80001/webrtc/call/bitrate_allocator.cc File webrtc/call/bitrate_allocator.cc (right): https://codereview.webrtc.org/2060403002/diff/80001/webrtc/call/bitrate_allocator.cc#newcode118 webrtc/call/bitrate_allocator.cc:118: } On 2016/06/17 07:59:01, ...
4 years, 5 months ago (2016-06-27 14:34:35 UTC) #7
perkj_webrtc
On 2016/06/27 14:34:35, perkj_webrtc_ooo_june20 wrote: > Hi > Can you please review? > > https://codereview.webrtc.org/2060403002/diff/80001/webrtc/call/bitrate_allocator.cc ...
4 years, 5 months ago (2016-06-27 15:14:11 UTC) #8
tommi
https://codereview.webrtc.org/2060403002/diff/140001/webrtc/call/bitrate_allocator.cc File webrtc/call/bitrate_allocator.cc (right): https://codereview.webrtc.org/2060403002/diff/140001/webrtc/call/bitrate_allocator.cc#newcode101 webrtc/call/bitrate_allocator.cc:101: for (const auto& config : bitrate_observer_configs_) { run git ...
4 years, 5 months ago (2016-06-29 14:49:41 UTC) #9
tommi
On 2016/06/29 14:49:41, tommi-webrtc wrote: > https://codereview.webrtc.org/2060403002/diff/140001/webrtc/call/bitrate_allocator.cc > File webrtc/call/bitrate_allocator.cc (right): > > https://codereview.webrtc.org/2060403002/diff/140001/webrtc/call/bitrate_allocator.cc#newcode101 > ...
4 years, 5 months ago (2016-06-29 14:53:08 UTC) #10
perkj_webrtc
On 2016/06/29 14:53:08, tommi-webrtc wrote: > On 2016/06/29 14:49:41, tommi-webrtc wrote: > > > https://codereview.webrtc.org/2060403002/diff/140001/webrtc/call/bitrate_allocator.cc ...
4 years, 5 months ago (2016-06-30 08:16:18 UTC) #11
perkj_webrtc
On 2016/06/30 08:16:18, perkj_webrtc_ooo_june20 wrote: > On 2016/06/29 14:53:08, tommi-webrtc wrote: > > On 2016/06/29 ...
4 years, 5 months ago (2016-06-30 08:20:14 UTC) #12
perkj_webrtc
Hi, Can you please review and we can start a discussion about how I should ...
4 years, 5 months ago (2016-07-06 08:20:12 UTC) #17
tommi
https://codereview.webrtc.org/2060403002/diff/500001/webrtc/call/call.cc File webrtc/call/call.cc (right): https://codereview.webrtc.org/2060403002/diff/500001/webrtc/call/call.cc#newcode201 webrtc/call/call.cc:201: // deleted before any other members. pending tasks may ...
4 years, 5 months ago (2016-07-06 11:15:02 UTC) #19
perkj_webrtc
https://codereview.webrtc.org/2060403002/diff/500001/webrtc/call/call.cc File webrtc/call/call.cc (right): https://codereview.webrtc.org/2060403002/diff/500001/webrtc/call/call.cc#newcode201 webrtc/call/call.cc:201: // deleted before any other members. On 2016/07/06 11:15:01, ...
4 years, 5 months ago (2016-07-06 13:08:54 UTC) #20
sprang_webrtc
Overall looks good. nit: run git cl format; think I spotted some bad indentation https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc ...
4 years, 5 months ago (2016-07-06 15:02:52 UTC) #21
perkj_webrtc
ptal https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc File webrtc/video/video_send_stream.cc (right): https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc#newcode275 webrtc/video/video_send_stream.cc:275: static const int kEncoderTimeOutMs = 2000; On 2016/07/06 ...
4 years, 5 months ago (2016-07-07 08:37:12 UTC) #22
sprang_webrtc
https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc File webrtc/video/video_send_stream.cc (right): https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc#newcode275 webrtc/video/video_send_stream.cc:275: static const int kEncoderTimeOutMs = 2000; On 2016/07/07 08:37:12, ...
4 years, 5 months ago (2016-07-07 09:25:10 UTC) #23
perkj_webrtc
https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc File webrtc/video/video_send_stream.cc (right): https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc#newcode275 webrtc/video/video_send_stream.cc:275: static const int kEncoderTimeOutMs = 2000; On 2016/07/07 09:25:10, ...
4 years, 5 months ago (2016-07-08 06:36:29 UTC) #24
sprang_webrtc
lgtm https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc File webrtc/video/video_send_stream.cc (right): https://codereview.webrtc.org/2060403002/diff/500001/webrtc/video/video_send_stream.cc#newcode275 webrtc/video/video_send_stream.cc:275: static const int kEncoderTimeOutMs = 2000; On 2016/07/08 ...
4 years, 5 months ago (2016-07-08 07:18:21 UTC) #25
tommi
lgtm
4 years, 5 months ago (2016-07-08 11:46:02 UTC) #26
stefan-webrtc
A first pass. Overall I think it looks like a reasonable to use a task ...
4 years, 5 months ago (2016-07-08 15:56:43 UTC) #27
stefan-webrtc
Now actually adding pbos... :)
4 years, 5 months ago (2016-07-08 15:57:20 UTC) #29
perkj_webrtc
Lets talk a bit offline. https://codereview.webrtc.org/2060403002/diff/580001/webrtc/call/call.cc File webrtc/call/call.cc (right): https://codereview.webrtc.org/2060403002/diff/580001/webrtc/call/call.cc#newcode78 webrtc/call/call.cc:78: VideoEncoderConfig encoder_config) override; On ...
4 years, 5 months ago (2016-07-11 11:41:09 UTC) #30
perkj_webrtc
https://codereview.webrtc.org/2060403002/diff/580001/webrtc/video/video_send_stream.cc File webrtc/video/video_send_stream.cc (right): https://codereview.webrtc.org/2060403002/diff/580001/webrtc/video/video_send_stream.cc#newcode423 webrtc/video/video_send_stream.cc:423: config_.rtp.max_packet_size - 20); // - 20 for RTP header ...
4 years, 5 months ago (2016-07-11 12:10:53 UTC) #31
pbos-webrtc
https://codereview.webrtc.org/2060403002/diff/720001/webrtc/call/bitrate_allocator.h File webrtc/call/bitrate_allocator.h (left): https://codereview.webrtc.org/2060403002/diff/720001/webrtc/call/bitrate_allocator.h#oldcode165 webrtc/call/bitrate_allocator.h:165: ObserverConfigs bitrate_observer_configs_ GUARDED_BY(crit_sect_); Can you have these GUARDED_BY the ...
4 years, 5 months ago (2016-07-13 12:35:39 UTC) #32
perkj_webrtc
ptal https://codereview.webrtc.org/2060403002/diff/720001/webrtc/call/bitrate_allocator.h File webrtc/call/bitrate_allocator.h (left): https://codereview.webrtc.org/2060403002/diff/720001/webrtc/call/bitrate_allocator.h#oldcode165 webrtc/call/bitrate_allocator.h:165: ObserverConfigs bitrate_observer_configs_ GUARDED_BY(crit_sect_); On 2016/07/13 12:35:38, pbos-webrtc wrote: ...
4 years, 5 months ago (2016-07-14 10:11:28 UTC) #34
perkj_webrtc
pretty please!
4 years, 5 months ago (2016-07-15 08:01:04 UTC) #35
stefan-webrtc
Recap of offline discussion: - We will hold off with this CL until Per is ...
4 years, 5 months ago (2016-07-15 14:50:26 UTC) #36
perkj_webrtc
Hi I am back, have updated the cl and would like to land this as ...
4 years, 4 months ago (2016-08-15 09:09:50 UTC) #37
mflodman
LGTM after talking to Per about this.
4 years, 4 months ago (2016-08-16 07:16:43 UTC) #38
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/2060403002/840001
4 years, 4 months ago (2016-08-16 07:20:06 UTC) #41
stefan-webrtc
lgtm https://codereview.webrtc.org/2060403002/diff/840001/webrtc/audio/audio_send_stream.h File webrtc/audio/audio_send_stream.h (right): https://codereview.webrtc.org/2060403002/diff/840001/webrtc/audio/audio_send_stream.h#newcode63 webrtc/audio/audio_send_stream.h:63: rtc::TaskQueue* worker_queue_; rtc::TaskQueue* const
4 years, 4 months ago (2016-08-16 07:32:07 UTC) #42
commit-bot: I haz the power
Committed patchset #42 (id:840001)
4 years, 4 months ago (2016-08-16 07:38:50 UTC) #44
commit-bot: I haz the power
Patchset 42 (id:??) landed as https://crrev.com/cc168360f41322332860cb075edeb1cde21aa473 Cr-Commit-Position: refs/heads/master@{#13767}
4 years, 4 months ago (2016-08-16 07:38:57 UTC) #46
perkj_webrtc
4 years, 4 months ago (2016-08-16 09:40:39 UTC) #47
Message was sent while issue was closed.
A revert of this CL (patchset #42 id:840001) has been created in
https://codereview.webrtc.org/2248713003/ by perkj@webrtc.org.

The reason for reverting is: Failed on Win 10 Chrome FYI.


https://build.chromium.org/p/chromium.webrtc.fyi/builders/Win10%20Tester/buil...


#
# Fatal error in
e:\b\c\b\win_builder\src\third_party\webrtc\base\task_queue_win.cc, line 138
# last system error: 87
# Check failed: ((DWORD)0xFFFFFFFF) != result (4294967295 vs. 4294967295)
# 

WebRtcBrowserTest



#
.

Powered by Google App Engine
This is Rietveld 408576698