Henrik Kjellander
43d57dea32
Landmine to clobber due to Win Clang Debug linking errors
...
In https://codereview.webrtc.org/2786603002 we saw several
Win Clang Debug errors. Clang was recently rolled so let's just
wipe our bots clean.
BUG=None
TBR=oprypin@webrtc.org
Review-Url: https://codereview.webrtc.org/2781873003 .
Cr-Commit-Position: refs/heads/master@{#17439}
2017-03-29 10:49:47 +00:00
aleloi
ee99f86f00
Disable flaky TestVp9Impl.EncodeDecode for iOS.
...
Bot outputs this:
Crashed during TestVp9Impl.EncodeDecode, resuming...
TBR=sprang@webrtc.org
NOTRY=True
BUG=webrtc:7057
Review-Url: https://codereview.webrtc.org/2779843005
Cr-Commit-Position: refs/heads/master@{#17438}
2017-03-29 10:33:18 +00:00
elad.alon
326263a678
Avoid code duplication between PLR/RPLR-based FecController
...
BUG=webrtc:7058
Review-Url: https://codereview.webrtc.org/2688613003
Cr-Commit-Position: refs/heads/master@{#17437}
2017-03-29 10:16:58 +00:00
kthelgason
61abe15829
Add Darwin thread.h implementation.
...
Due to quirks of the Cocoa runtime several platform-specific fixes were
in place. See the deleted files maccocoathreadhelper and
scoped_autorelease_pool for examples. There is no way to do a stack-based
RAII autoreleasepool that is compatible with ARC, and autoreleasepool
blocks can't be used with c++. The solution was to separate out the
implementation of some methods in thread.h to an ObjC++ file for Darwin
platforms, allowing us to get rid of the helper classes and enable ARC
everywhere.
BUG=webrtc:6412
Review-Url: https://codereview.webrtc.org/2784483002
Cr-Commit-Position: refs/heads/master@{#17436}
2017-03-29 09:32:36 +00:00
philipel
0f0a849cba
H264 Supplemental Enhancement Information no longer considered a keyframe.
...
BUG=none
Review-Url: https://codereview.webrtc.org/2769863007
Cr-Commit-Position: refs/heads/master@{#17435}
2017-03-29 09:19:54 +00:00
aleloi
7057b6b75f
Disable flaky test EndToEndTest.InitialProbing
...
The test is flaky for Msan (memory sanitizer).
The test fails in this way:
../../webrtc/video/end_to_end_tests.cc:2237: Failure
Failed
Timed out while waiting for initial probing.
TBR=sprang@webrtc.org
NOTRY=true
BUG=webrtc:7419
Review-Url: https://codereview.webrtc.org/2778973004
Cr-Commit-Position: refs/heads/master@{#17434}
2017-03-29 09:07:33 +00:00
philipel
c3b3f7a8aa
Reland of Log created probe clusters to RtcEventLog. (patchset #1 id:1 of https://codereview.chromium.org/2781853002/ )
...
Reason for revert:
Fix
Original issue's description:
> Revert of Log created probe clusters to RtcEventLog. (patchset #1 id:1 of https://codereview.chromium.org/2783693002/ )
>
> Reason for revert:
> Break bots.
>
> Original issue's description:
...
>
> TBR=terelius@webrtc.org ,stefan@webrtc.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=webrtc:6984
>
> Review-Url: https://codereview.webrtc.org/2781853002
> Cr-Commit-Position: refs/heads/master@{#17425}
> Committed: e3b354bdfa
TBR=terelius@webrtc.org ,stefan@webrtc.org
BUG=webrtc:6984
Review-Url: https://codereview.webrtc.org/2779893004
Cr-Commit-Position: refs/heads/master@{#17433}
2017-03-29 08:23:13 +00:00
jianj
cb5d1150db
Enable vp9 row-based multithreading.
...
Improves current multi-threading performance (for the same number of threads) by:
5%-8% speedup for 2 threads, ~15% for 4 threads on Linux/Mac
with standalone libvpx.
~6% speedup on AppRTC on Linux/Mac with 4 threads.
BUG=None
Review-Url: https://codereview.webrtc.org/2776803002
Cr-Commit-Position: refs/heads/master@{#17432}
2017-03-29 06:56:08 +00:00
zhihuang
acfb017775
Disable the ORTC integration tests on TSan.
...
BUG=webrtc:7366
Review-Url: https://codereview.webrtc.org/2767123002
Cr-Commit-Position: refs/heads/master@{#17431}
2017-03-28 20:45:18 +00:00
dminor
588101cb91
Change minimum DTMF event duration to be 40 milliseconds
...
The current value of 100 milliseconds is the recommended default value
in https://w3c.github.io/webrtc-pc/#rtcdtmfsender ; the actual minimum specified is 40 milliseconds.
BUG=webrtc:7163
Review-Url: https://codereview.webrtc.org/2699503002
Cr-Commit-Position: refs/heads/master@{#17430}
2017-03-28 18:18:32 +00:00
aleloi
3ac729a53b
Fix compilation issue detected by internal tool.
...
Using decl NiceMock, Return, '_' is unused.
TBR=minyue@webrtc.org
BUG=None
Review-Url: https://codereview.webrtc.org/2782543002
Cr-Commit-Position: refs/heads/master@{#17429}
2017-03-28 17:35:48 +00:00
aleloi
0e4a685542
Added licence boilerplate to our MATLAB files.
...
The command
tools/checklicenses/checklicenses.py --ignore-suppressions ./webrtc
previously produced this output:
'webrtc/modules/audio_processing/test/apmtest.m' has non-whitelisted license 'UNKNOWN'
'webrtc/modules/audio_processing/transient/test/readDetection.m' has non-whitelisted license 'UNKNOWN'
'webrtc/modules/audio_processing/transient/test/readPCM.m' has non-whitelisted license 'UNKNOWN'
...
This CL adds the WebRTC licence with appropriate year to all our
MATLAB files. All these files were contributed by WebRTC project
members hlundin@, pbos@, niklase@.
BUG=chromium:98592
NOTRY=True
Review-Url: https://codereview.webrtc.org/2781663005
Cr-Commit-Position: refs/heads/master@{#17428}
2017-03-28 17:18:58 +00:00
lliuu
3a3bd50610
Revert of Don't hardcode MediaType::ANY in FakeNetworkPipe. (patchset #4 id:60001 of https://codereview.webrtc.org/2774463003/ )
...
Reason for revert:
Reverting since this seems to break multiple WebRTC Perf buildbots
Original issue's description:
> Don't hardcode MediaType::ANY in FakeNetworkPipe.
>
> Instead let each test set the appropriate media type. This simplifies
> demuxing in Call and later in RtpTransportController.
>
> BUG=webrtc:7135
>
> Review-Url: https://codereview.webrtc.org/2774463003
> Cr-Commit-Position: refs/heads/master@{#17418}
> Committed: 9c47b00e24
TBR=stefan@webrtc.org ,deadbeef@webrtc.org,solenberg@webrtc.org,pbos@webrtc.org,sprang@webrtc.org,nisse@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:7135
Review-Url: https://codereview.webrtc.org/2784543002
Cr-Commit-Position: refs/heads/master@{#17427}
2017-03-28 16:40:59 +00:00
denicija
5db450d244
iOS:Add loopback launch argument functionality in AppRTCMobile.
...
It will enable us to start immediate loopback just by passing
the "loopback" string, as argument when launching.
Usefull for testing and command line profiling.
BUG=NONE
Review-Url: https://codereview.webrtc.org/2777983004
Cr-Commit-Position: refs/heads/master@{#17426}
2017-03-28 15:27:41 +00:00
philipel
e3b354bdfa
Revert of Log created probe clusters to RtcEventLog. (patchset #1 id:1 of https://codereview.chromium.org/2783693002/ )
...
Reason for revert:
Break bots.
Original issue's description:
> Reland of Log created probe clusters to RtcEventLog. (patchset #1 id:1 of https://codereview.chromium.org/2775273003/ )
>
> Reason for revert:
> Speculative reland since it apparently built on https://build.chromium.org/p/chromium.webrtc.fyi/builders/Mac%20Builder/builds/22852
>
> Original issue's description:
> > Revert of Log created probe clusters to RtcEventLog. (patchset #3 id:40001 of https://codereview.chromium.org/2776073003/ )
> >
> > Reason for revert:
> > Break build bots.
> >
> > Original issue's description:
> > > Log created probe clusters to RtcEventLog.
> > >
> > > BUG=webrtc:6984
> > >
> > > Review-Url: https://codereview.webrtc.org/2776073003
> > > Cr-Commit-Position: refs/heads/master@{#17413}
> > > Committed: bb9e6edc32
> >
> > TBR=terelius@webrtc.org ,stefan@webrtc.org
> > # Skipping CQ checks because original CL landed less than 1 days ago.
> > NOPRESUBMIT=true
> > NOTREECHECKS=true
> > NOTRY=true
> > BUG=webrtc:6984
> >
> > Review-Url: https://codereview.webrtc.org/2775273003
> > Cr-Commit-Position: refs/heads/master@{#17415}
> > Committed: 7ac5c32db2
>
> TBR=terelius@webrtc.org ,stefan@webrtc.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=webrtc:6984
>
> Review-Url: https://codereview.webrtc.org/2783693002
> Cr-Commit-Position: refs/heads/master@{#17424}
> Committed: 2a63160b95
TBR=terelius@webrtc.org ,stefan@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:6984
Review-Url: https://codereview.webrtc.org/2781853002
Cr-Commit-Position: refs/heads/master@{#17425}
2017-03-28 14:59:51 +00:00
philipel
2a63160b95
Reland of Log created probe clusters to RtcEventLog. (patchset #1 id:1 of https://codereview.chromium.org/2775273003/ )
...
Reason for revert:
Speculative reland since it apparently built on https://build.chromium.org/p/chromium.webrtc.fyi/builders/Mac%20Builder/builds/22852
Original issue's description:
> Revert of Log created probe clusters to RtcEventLog. (patchset #3 id:40001 of https://codereview.chromium.org/2776073003/ )
>
> Reason for revert:
> Break build bots.
>
> Original issue's description:
> > Log created probe clusters to RtcEventLog.
> >
> > BUG=webrtc:6984
> >
> > Review-Url: https://codereview.webrtc.org/2776073003
> > Cr-Commit-Position: refs/heads/master@{#17413}
> > Committed: bb9e6edc32
>
> TBR=terelius@webrtc.org ,stefan@webrtc.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=webrtc:6984
>
> Review-Url: https://codereview.webrtc.org/2775273003
> Cr-Commit-Position: refs/heads/master@{#17415}
> Committed: 7ac5c32db2
TBR=terelius@webrtc.org ,stefan@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:6984
Review-Url: https://codereview.webrtc.org/2783693002
Cr-Commit-Position: refs/heads/master@{#17424}
2017-03-28 14:42:39 +00:00
maxmorin
76cc9be72c
Make dummy device succeed at stopping recording/playout.
...
Makes sense, since it not recording/playing to begin with.
BUG=b/35415663
Review-Url: https://codereview.webrtc.org/2783673002
Cr-Commit-Position: refs/heads/master@{#17423}
2017-03-28 14:18:59 +00:00
solenberg
0248e7c810
Re-add author accidentally removed in https://codereview.webrtc.org/2534843002 .
...
BUG=None
Review-Url: https://codereview.webrtc.org/2785453002
Cr-Commit-Position: refs/heads/master@{#17422}
2017-03-28 13:05:00 +00:00
alessiob
3339743878
MultiEndCall is responsible for analyzing and validating timing information and audiotracks with which a multi-end call can be simulated.
...
The class creates one WavReaderInterface object for each unique audiotrack and builds the set of speaker names.
Validating if the audiotrack lengths and the timing information are compatible (and hence valid) is not implemented yet.
MultiEndCall is designed using dependency injection. This allows to use mock objects with which we can quickly simulate different timings and track lengths without needing actual wav files.
BUG=webrtc:7218
Review-Url: https://codereview.webrtc.org/2761853002
Cr-Commit-Position: refs/heads/master@{#17421}
2017-03-28 12:39:59 +00:00
solenberg
83862e3c14
Remove VoECodec from FakeWebRtcVoiceEngine.
...
BUG=webrtc:4690
Review-Url: https://codereview.webrtc.org/2785443002
Cr-Commit-Position: refs/heads/master@{#17420}
2017-03-28 12:07:15 +00:00
elad.alon
2877048afe
Experiment-driven configuration of PLR/RPLR-based FecController
...
BUG=webrtc:7058
Review-Url: https://codereview.webrtc.org/2684773002
Cr-Commit-Position: refs/heads/master@{#17419}
2017-03-28 12:03:55 +00:00
nisse
9c47b00e24
Don't hardcode MediaType::ANY in FakeNetworkPipe.
...
Instead let each test set the appropriate media type. This simplifies
demuxing in Call and later in RtpTransportController.
BUG=webrtc:7135
Review-Url: https://codereview.webrtc.org/2774463003
Cr-Commit-Position: refs/heads/master@{#17418}
2017-03-28 11:59:41 +00:00
henrika
0238ba8327
Ensures that audio device tests works when run through remote desktop
...
BUG=webrtc:7397
Review-Url: https://codereview.webrtc.org/2779023002
Cr-Commit-Position: refs/heads/master@{#17417}
2017-03-28 11:38:29 +00:00
kthelgason
5a4c68e9f3
Minor Cleanup of RTCAudioSource.
...
This CL fixes a comment that has the wrong format, and takes over
ownership of an orphaned todo. It also removes some unneeded code
from ObjC classes and moves them to a style more fitting the rest
of the codebase.
BUG=None
Review-Url: https://codereview.webrtc.org/2777453003
Cr-Commit-Position: refs/heads/master@{#17416}
2017-03-28 11:35:58 +00:00
philipel
7ac5c32db2
Revert of Log created probe clusters to RtcEventLog. (patchset #3 id:40001 of https://codereview.chromium.org/2776073003/ )
...
Reason for revert:
Break build bots.
Original issue's description:
> Log created probe clusters to RtcEventLog.
>
> BUG=webrtc:6984
>
> Review-Url: https://codereview.webrtc.org/2776073003
> Cr-Commit-Position: refs/heads/master@{#17413}
> Committed: bb9e6edc32
TBR=terelius@webrtc.org ,stefan@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:6984
Review-Url: https://codereview.webrtc.org/2775273003
Cr-Commit-Position: refs/heads/master@{#17415}
2017-03-28 11:20:56 +00:00
philipel
f4238f937e
Log probe results to RtcEventLog.
...
BUG=webrtc:6984
Review-Url: https://codereview.webrtc.org/2785433002
Cr-Commit-Position: refs/heads/master@{#17414}
2017-03-28 11:18:02 +00:00
philipel
bb9e6edc32
Log created probe clusters to RtcEventLog.
...
BUG=webrtc:6984
Review-Url: https://codereview.webrtc.org/2776073003
Cr-Commit-Position: refs/heads/master@{#17413}
2017-03-28 11:12:26 +00:00
aleloi
d49d3873ce
Disable possibly flaky AudioCodingModuleTest.TestPacketLossStereo for Linux.
...
It failed after unrelated https://codereview.webrtc.org/2752233002 .
TBR=tommi@webrtc.org
NOTRY=true
BUG=webrtc:7416
Review-Url: https://codereview.webrtc.org/2779913002
Cr-Commit-Position: refs/heads/master@{#17412}
2017-03-28 10:00:07 +00:00
asapersson
0255acb085
Change VideoReceiveStream::Stats total_bitrate_bps to include all received packets.
...
The total_bitrate_bps is based on complete frames (from jitter buffer callback:
ReceiveStatisticsProxy::OnCompleteFrame(bool is_keyframe, size_t size_bytes)) (since M58).
Receive total_bitrate_bps can be incorrectly reported.
Example log of stats_.total_bitrate_bps in video_loopback call (target bitrate 600kbps):
SEND: stats_.total_bitrate_bps 682832
RECV: stats_.total_bitrate_bps 1078104 (new: 677384)
SEND: stats_.total_bitrate_bps 694280
RECV: stats_.total_bitrate_bps 1091768 (new: 663152)
SEND: stats_.total_bitrate_bps 626248
RECV: stats_.total_bitrate_bps 7683776 (new: 636080)
Changed total_bitrate_bps to be based on incoming packets (reported via callback from ReceiveStatisticsImpl: ReceiveStatisticsProxy::DataCountersUpdated(const webrtc::StreamDataCounters& counters, uint32_t ssrc)).
BUG=webrtc:7400
Review-Url: https://codereview.webrtc.org/2775813002
Cr-Commit-Position: refs/heads/master@{#17411}
2017-03-28 09:44:58 +00:00
aleloi
b1a897680d
Disable AudioCodingModuleTest.TestPacketLossStereo for iOS.
...
It failed twice in succession after https://codereview.webrtc.org/2752233002 .
TBR=ossu@webrtc.org
NOTRY=True
BUG=webrtc:7057
Review-Url: https://codereview.webrtc.org/2778983003
Cr-Commit-Position: refs/heads/master@{#17410}
2017-03-28 09:28:08 +00:00
magjed
abb84b8128
iOS: Add new RTCVideoSource interface
...
The new RTCVideoSource interface can be used by custom implementations of RTCVideoCapturer.
BUG=webrtc:7177
TBR=tommi
Review-Url: https://codereview.webrtc.org/2745193002
Cr-Commit-Position: refs/heads/master@{#17409}
2017-03-28 08:56:41 +00:00
sakal
c4adacfb15
Pass settings model to ARDAppClient instead of individual settings.
...
Moves settings model and related classes to code common for both iOS
and Mac.
BUG=webrtc:7177,webrtc:6494
Review-Url: https://codereview.webrtc.org/2770113004
Cr-Commit-Position: refs/heads/master@{#17408}
2017-03-28 08:22:48 +00:00
nisse
bcbaf74643
Let Call register ReceiveSideCongestionController as CallStatsObserver.
...
Fixes a regression from cl https://codereview.webrtc.org/2752233002 .
BUG=chromium:704491,webrtc:6847
Review-Url: https://codereview.webrtc.org/2777423002
Cr-Commit-Position: refs/heads/master@{#17407}
2017-03-28 08:16:25 +00:00
kjellander
fae2d2bdb3
Revert of Roll chromium_revision 581ff14023..8c40265f14 (459789:459958) (patchset #1 id:1 of https://codereview.webrtc.org/2778123002/ )
...
Reason for revert:
Breaks Linux 32 Release bot: https://build.chromium.org/p/client.webrtc/builders/Linux32%20Release/builds/11373
Original issue's description:
> Roll chromium_revision 581ff14023..8c40265f14 (459789:459958)
>
> Change log: 581ff14023..8c40265f14
> Full diff: 581ff14023..8c40265f14
>
> Changed dependencies:
> * src/base: 52145f4993..3ad1bac16e
> * src/build: 55558c4eb0..9f91eb223d
> * src/ios: f5f17bbe4d..a049c98cf2
> * src/testing: 554a1ebbe9..b17e7a51cc
> * src/third_party: 14e95b4f93..dc25a2f342
> * src/third_party/catapult: 0cfeabf700..ac3c19436e
> * src/tools: 0ef14c1d4d..7e2f97c557
> DEPS diff: 581ff14023..8c40265f14 /DEPS
>
> Clang version changed 296321:298539
> Details: 581ff14023..8c40265f14 /tools/clang/scripts/update.py
>
> TBR=
> BUG=None
>
> Review-Url: https://codereview.webrtc.org/2778123002
> Cr-Commit-Position: refs/heads/master@{#17404}
> Committed: 974c699d35
TBR=buildbot@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:7413
Review-Url: https://codereview.webrtc.org/2779893002
Cr-Commit-Position: refs/heads/master@{#17406}
2017-03-28 04:36:48 +00:00
Henrik Kjellander
832a6fdc7e
CQ: Add linux32_rel to default trybots
...
This will prevent breakages like the referenced bug
in the future.
BUG=webrtc:7413
TBR=lliuu@webrtc.org
Review-Url: https://codereview.webrtc.org/2780723003 .
Cr-Commit-Position: refs/heads/master@{#17405}
2017-03-28 04:20:00 +00:00
buildbot
974c699d35
Roll chromium_revision 581ff14023..8c40265f14 (459789:459958)
...
Change log: 581ff14023..8c40265f14
Full diff: 581ff14023..8c40265f14
Changed dependencies:
* src/base: 52145f4993..3ad1bac16e
* src/build: 55558c4eb0..9f91eb223d
* src/ios: f5f17bbe4d..a049c98cf2
* src/testing: 554a1ebbe9..b17e7a51cc
* src/third_party: 14e95b4f93..dc25a2f342
* src/third_party/catapult: 0cfeabf700..ac3c19436e
* src/tools: 0ef14c1d4d..7e2f97c557
DEPS diff: 581ff14023..8c40265f14 /DEPS
Clang version changed 296321:298539
Details: 581ff14023..8c40265f14 /tools/clang/scripts/update.py
TBR=
BUG=None
Review-Url: https://codereview.webrtc.org/2778123002
Cr-Commit-Position: refs/heads/master@{#17404}
2017-03-28 01:15:19 +00:00
zstein
f42cc9d8d9
Add MakeUnique from chromium and change StunMessage::AddAttribute to take a unique_ptr.
...
BUG=NONE
Review-Url: https://codereview.webrtc.org/2757893003
Cr-Commit-Position: refs/heads/master@{#17403}
2017-03-27 23:17:19 +00:00
lliuu
82a707a118
Revert of Roll chromium_revision 581ff14023..f9df31e030 (459789:459841) (patchset #1 id:1 of https://codereview.webrtc.org/2782453002/ )
...
Reason for revert:
Trying to solve the buildbot failure on Linux32
Original issue's description:
> Roll chromium_revision 581ff14023..f9df31e030 (459789:459841)
>
> Change log: 581ff14023..f9df31e030
> Full diff: 581ff14023..f9df31e030
>
> Changed dependencies:
> * src/base: 52145f4993..3ad1bac16e
> * src/build: 55558c4eb0..e4011c8550
> * src/ios: f5f17bbe4d..234a97e548
> * src/testing: 554a1ebbe9..1c079dcd09
> * src/third_party: 14e95b4f93..746c09879d
> * src/third_party/catapult: 0cfeabf700..052c435e50
> * src/tools: 0ef14c1d4d..35a14c7aa7
> DEPS diff: 581ff14023..f9df31e030 /DEPS
>
> Clang version changed 296321:298539
> Details: 581ff14023..f9df31e030 /tools/clang/scripts/update.py
>
> TBR=
> BUG=None
>
> Review-Url: https://codereview.webrtc.org/2782453002
> Cr-Commit-Position: refs/heads/master@{#17398}
> Committed: 488b85e502
TBR=buildbot@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=None
Review-Url: https://codereview.webrtc.org/2781743002
Cr-Commit-Position: refs/heads/master@{#17402}
2017-03-27 21:50:59 +00:00
sergeyu
858b0f4703
Update XServerPixelBuffer to handle shmget() errors properly.
...
When screen/window capturers fail to use shared memory, they are
supposed to fall back to XGetImage(). It's slower, but should still
allow to capture desktop content. This wasn't implemented correclty in
XScreenPixelBuffer - it was failing completely when shmget() returns an
error.
BUG=705146
Review-Url: https://codereview.webrtc.org/2775793003
Cr-Commit-Position: refs/heads/master@{#17401}
2017-03-27 20:47:32 +00:00
kjellander
46f901537a
Revert of CQ: Temporarily remove linux_baremetal (patchset #1 id:1 of https://codereview.webrtc.org/2774243002/ )
...
Reason for revert:
The bots are back
Original issue's description:
> CQ: Temporarily remove linux_baremetal
>
> Both machines seem stuck offline.
>
> BUG=chromium:705369
> TBR=ehmaldonado@webrtc.org
>
> Review-Url: https://codereview.webrtc.org/2774243002 .
> Cr-Commit-Position: refs/heads/master@{#17383}
> Committed: 56e4196c8d
TBR=ehmaldonado@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=chromium:705369
Review-Url: https://codereview.webrtc.org/2782473003
Cr-Commit-Position: refs/heads/master@{#17400}
2017-03-27 20:30:56 +00:00
minyue
cecec1060f
Set max bitrate for audio send stream based on RtpParameters.
...
BUG=webrtc:7392
Review-Url: https://codereview.webrtc.org/2775483004
Cr-Commit-Position: refs/heads/master@{#17399}
2017-03-27 20:04:25 +00:00
buildbot
488b85e502
Roll chromium_revision 581ff14023..f9df31e030 (459789:459841)
...
Change log: 581ff14023..f9df31e030
Full diff: 581ff14023..f9df31e030
Changed dependencies:
* src/base: 52145f4993..3ad1bac16e
* src/build: 55558c4eb0..e4011c8550
* src/ios: f5f17bbe4d..234a97e548
* src/testing: 554a1ebbe9..1c079dcd09
* src/third_party: 14e95b4f93..746c09879d
* src/third_party/catapult: 0cfeabf700..052c435e50
* src/tools: 0ef14c1d4d..35a14c7aa7
DEPS diff: 581ff14023..f9df31e030 /DEPS
Clang version changed 296321:298539
Details: 581ff14023..f9df31e030 /tools/clang/scripts/update.py
TBR=
BUG=None
Review-Url: https://codereview.webrtc.org/2782453002
Cr-Commit-Position: refs/heads/master@{#17398}
2017-03-27 19:24:44 +00:00
Peter Boström
1436c83cd1
Base screenshare layers on TemporalReferences.
...
Decouples encode flags and calculates them the same for both default and
screencast temporal layers.
With this change encoders could start using TemporalReferences for
temporal-layers flags, but they can not be used by asynchronous encoders
(hardware encoders) yet.
Also removes 'timestamp' as a dead parameter to FrameEncoded().
BUG=chromium:702017, webrtc:7349
R=marpan@google.com , sprang@webrtc.org , marpan@webrtc.org
Review-Url: https://codereview.webrtc.org/2769263002 .
Cr-Commit-Position: refs/heads/master@{#17397}
2017-03-27 19:01:49 +00:00
deadbeef
d8cfa1af38
Accept remote offers with current DTLS role, rather than "actpass".
...
JSEP implementations are required to always generate offers with
"actpass", but remote endpoints are not. So we should accept remote
offers with the current negotiated DTLS role.
This was recently clarified in dtls-sdp; it was somewhat ambiguous
before.
Also doing a bit of refactoring of JsepTransport (making a method
private that should have been private, fixing unit tests that were
directly calling said method).
BUG=webrtc:7072
Review-Url: https://codereview.webrtc.org/2770903003
Cr-Commit-Position: refs/heads/master@{#17396}
2017-03-27 17:33:26 +00:00
jianj
a5e8aa6e2b
Vp9: Enable denoiser by default.
...
BUG=webrtc:7412
Review-Url: https://codereview.webrtc.org/2765663002
Cr-Commit-Position: refs/heads/master@{#17395}
2017-03-27 17:09:00 +00:00
buildbot
11173f7ec5
Roll chromium_revision d9bc0ee968..581ff14023 (459769:459789)
...
Change log: d9bc0ee968..581ff14023
Full diff: d9bc0ee968..581ff14023
Changed dependencies:
* src/ios: 9f63fb7341..f5f17bbe4d
* src/third_party: a0d64a0e69..14e95b4f93
DEPS diff: d9bc0ee968..581ff14023 /DEPS
No update to Clang.
TBR=
BUG=None
Review-Url: https://codereview.webrtc.org/2781503003
Cr-Commit-Position: refs/heads/master@{#17394}
2017-03-27 16:15:00 +00:00
elad.alon
4e7645118e
Fix UT failure by temporarily uncommenting
...
BUG=webrtc:7322, webrtc:7405
Review-Url: https://codereview.webrtc.org/2780473002
Cr-Commit-Position: refs/heads/master@{#17393}
2017-03-27 15:53:11 +00:00
kthelgason
d701dfdeef
remove more CriticalSectionWrappers.
...
BUG=webrtc:7035
Review-Url: https://codereview.webrtc.org/2779623002
Cr-Commit-Position: refs/heads/master@{#17392}
2017-03-27 14:24:57 +00:00
kwiberg
1c07c70d88
Reland "WebRtcVoiceMediaChannel::AddRecvStream: Don't call SetRecPayloadType"
...
BUG=webrtc:5805
Review-Url: https://codereview.webrtc.org/2774833003
Cr-Commit-Position: refs/heads/master@{#17391}
2017-03-27 14:15:49 +00:00
buildbot
b5eae74341
Roll chromium_revision 7166178c86..d9bc0ee968 (459734:459769)
...
Change log: 7166178c86..d9bc0ee968
Full diff: 7166178c86..d9bc0ee968
Changed dependencies:
* src/build: ad3a39abce..55558c4eb0
* src/third_party: b348cfccc9..a0d64a0e69
DEPS diff: 7166178c86..d9bc0ee968 /DEPS
No update to Clang.
TBR=
BUG=None
Review-Url: https://codereview.webrtc.org/2775223003
Cr-Commit-Position: refs/heads/master@{#17390}
2017-03-27 13:48:22 +00:00