Commit Graph

16500 Commits

Author SHA1 Message Date
07cda9475b Roll chromium_revision fab6dba98d..3130418a5b (452743:452776)
Change log: fab6dba98d..3130418a5b
Full diff: fab6dba98d..3130418a5b

Changed dependencies:
* src/build: 3cbac77568..f739e744e7
* src/third_party: 546282e5b3..767e691aa5
* src/tools: f9c0e2d7e1..7c4e952b5b
DEPS diff: fab6dba98d..3130418a5b/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2714093002
Cr-Commit-Position: refs/heads/master@{#16818}
2017-02-24 08:23:23 +00:00
50956f3f47 Landmine to unblock https://codereview.webrtc.org/2709573003/
BUG=None
TBR=deadbeef@webrtc.org

Review-Url: https://codereview.webrtc.org/2715803003 .
Cr-Commit-Position: refs/heads/master@{#16817}
2017-02-24 08:18:55 +00:00
25ae766103 Add MB and iOS JSON entries for ortc_unittests.
BUG=webrtc:7013
TBR=ehmaldonado@webrtc.org
NOTRY=True

Review-Url: https://codereview.webrtc.org/2706403007
Cr-Commit-Position: refs/heads/master@{#16816}
2017-02-24 07:01:54 +00:00
8697f9afba Skips the first frame in DxgiDuplicatorController
A bug has been reported to complaint the ScreenCapturerWinDirectx cannot capture
the first frame, which is used in "Report an issue" page.
A simple solution here is to skip the first frame.

This change also removes the friend relationship between
DxgiDuplicatorController / DxgiAdapterDuplicator / DxgiOutputDuplicator, which
is not really necessary.

BUG=682112

Review-Url: https://codereview.webrtc.org/2703123002
Cr-Commit-Position: refs/heads/master@{#16815}
2017-02-24 05:43:40 +00:00
72c307a6de Roll chromium_revision 1e4f91b70e..fab6dba98d (452694:452743)
Change log: 1e4f91b70e..fab6dba98d
Full diff: 1e4f91b70e..fab6dba98d

Changed dependencies:
* src/ios: 29bb9a3cbd..5dd7ad7679
* src/testing: cbe4c2f6c6..70762142ae
* src/third_party: 19401db99b..546282e5b3
* src/third_party/libFuzzer/src: 64bdf91585..5bcbfc5bcc
* src/tools: 939aac9d40..f9c0e2d7e1
DEPS diff: 1e4f91b70e..fab6dba98d/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2713093002
Cr-Commit-Position: refs/heads/master@{#16814}
2017-02-24 05:06:43 +00:00
2b62fa218c Adding suppression for race in stats collector test.
See bug for more info. This race is benign, and only exists because a
method is virtual so it can be mocked for testing.

BUG=webrtc:7221
NOTRY=True
TBR=hbos@webrtc.org

Review-Url: https://codereview.webrtc.org/2711783005
Cr-Commit-Position: refs/heads/master@{#16813}
2017-02-24 03:05:39 +00:00
6072db9388 Roll chromium_revision e60c7cdab7..1e4f91b70e (452644:452694)
Change log: e60c7cdab7..1e4f91b70e
Full diff: e60c7cdab7..1e4f91b70e

Changed dependencies:
* src/base: b5ea783ed1..1ddd725489
* src/ios: 0750c32d59..29bb9a3cbd
* src/third_party: 821d7ec099..19401db99b
* src/third_party/catapult: 0bd2f03bed..794fff6c81
* src/tools: f4f6936464..939aac9d40
DEPS diff: e60c7cdab7..1e4f91b70e/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2711303002
Cr-Commit-Position: refs/heads/master@{#16812}
2017-02-24 01:45:54 +00:00
162cb53e7b Making AsyncInvoker destructor thread-safe.
The documentation for AsyncInvoker states that it owns the lifetime of
calls, and when its destructor is called, all in-flight calls are
cancelled or finish executing. The "cancelled" part is working, but if
a call is in the middle of executing, the destructor does *not* wait.

This is fixed by keeping a count of pending invocations, which is
decremented when a call is either cleared from a message queue or
finishes executing.

BUG=webrtc:3914, webrtc:3911

Review-Url: https://codereview.webrtc.org/2694723004
Cr-Commit-Position: refs/heads/master@{#16811}
2017-02-24 01:10:07 +00:00
8e1435519c Roll chromium_revision 4597570870..e60c7cdab7 (452563:452644)
Change log: 4597570870..e60c7cdab7
Full diff: 4597570870..e60c7cdab7

Changed dependencies:
* src/base: 650978218a..b5ea783ed1
* src/build: 1ec8f3937c..3cbac77568
* src/ios: 2c98371124..0750c32d59
* src/testing: 2a3bf63d65..cbe4c2f6c6
* src/third_party: 288e456929..821d7ec099
* src/third_party/catapult: 79c542a5fa..0bd2f03bed
* src/tools: fc67b90af2..f4f6936464
DEPS diff: 4597570870..e60c7cdab7/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2716733002
Cr-Commit-Position: refs/heads/master@{#16810}
2017-02-23 22:39:09 +00:00
0d1305ee88 Added support for changing the volume of RTCAudioSource as discussed in BUG=webrtc:6533
This is a short term solution to change the volume of a RTCAudioTrack (which contains an RTCAudioSource property) until applyConstraints for RTCMediaStreamTracks has been implemented.
This CL adds one new Objective-C method to AudioSourceInterface's wrapper: -(void)setVolume:(double)volume

BUG=webrtc:6533, webrtc:6805

This is my first CL for Chromium/WebRTC, so please let me know if I did something wrong.

Review-Url: https://codereview.webrtc.org/2534843002
Cr-Commit-Position: refs/heads/master@{#16809}
2017-02-23 21:57:00 +00:00
7aadbfa06e Roll chromium_revision 06f768b0d3..4597570870 (452498:452563)
Change log: 06f768b0d3..4597570870
Full diff: 06f768b0d3..4597570870

Changed dependencies:
* src/build: 8efe3f941c..1ec8f3937c
* src/ios: b43e63a69a..2c98371124
* src/testing: 136c2a0836..2a3bf63d65
* src/third_party: 15434ef5af..288e456929
* src/third_party/catapult: 423221a041..79c542a5fa
* src/tools: 736c1e1dea..fc67b90af2
DEPS diff: 06f768b0d3..4597570870/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2706243008
Cr-Commit-Position: refs/heads/master@{#16808}
2017-02-23 19:31:32 +00:00
384498abb5 Use sched_yield on all POSIX platforms in PlatformThread.
(not only MacOS)

This is a test to see if perf regressions we're seeing may be related to the use of nanosleep().

BUG=695438
TBR=solenberg@webrtc.org

Review-Url: https://codereview.webrtc.org/2716683002 .
Cr-Commit-Position: refs/heads/master@{#16807}
2017-02-23 19:23:19 +00:00
f1b351852b Roll chromium_revision 89bae66c5c..06f768b0d3 (452473:452498)
Change log: 89bae66c5c..06f768b0d3
Full diff: 89bae66c5c..06f768b0d3

Changed dependencies:
* src/base: a625e71534..650978218a
* src/build: b2274b43be..8efe3f941c
* src/ios: 039726889f..b43e63a69a
* src/third_party: b9e127e8f9..15434ef5af
* src/third_party/catapult: c9d8aeb226..423221a041
* src/tools: c35e48869f..736c1e1dea
DEPS diff: 89bae66c5c..06f768b0d3/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2707363005
Cr-Commit-Position: refs/heads/master@{#16806}
2017-02-23 17:33:04 +00:00
0e22a4cfd3 Android HW decoder: Support odd heights for non-texture output
When textures are not enabled and we are using byte buffer outputs, the
decoder is currently crashing for odd heights because of an RTC_CHECK.
This CL removes the check and handles the pointer offset to the chroma
planes for the odd height case instead.

This has been verified to work correctly on a Pixel device.

BUG=webrtc:6651

Review-Url: https://codereview.webrtc.org/2709923005
Cr-Commit-Position: refs/heads/master@{#16805}
2017-02-23 15:11:32 +00:00
88b82b59f1 Fix compilation issue detected by internal tool.
Explicit initialization of const member of new EchoCanceller 3
submodule.

Same thing as f3e84717 from https://codereview.webrtc.org/2715573003,
but more of it.

This should be the last one.

TBR=henrik.lundin@webrtc.org

NOTRY=True
BUG=webrtc:6018

Review-Url: https://codereview.webrtc.org/2708373005
Cr-Commit-Position: refs/heads/master@{#16804}
2017-02-23 14:27:03 +00:00
df2c4750e0 Roll chromium_revision 7322bbb0a4..89bae66c5c (452447:452473)
Change log: 7322bbb0a4..89bae66c5c
Full diff: 7322bbb0a4..89bae66c5c

Changed dependencies:
* src/build: bf347e374a..b2274b43be
* src/ios: fc4e0f9d8e..039726889f
* src/third_party: 6824ac01f3..b9e127e8f9
* src/third_party/catapult: 56214f64fe..c9d8aeb226
* src/tools: bb7a380aa2..c35e48869f
DEPS diff: 7322bbb0a4..89bae66c5c/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2711083003
Cr-Commit-Position: refs/heads/master@{#16803}
2017-02-23 14:05:53 +00:00
f3e847170d Fix compilation issue detected by internal tool.
Explicit initialization of const member of new EchoCanceller 3
submodule.

NOTRY=True

BUG=webrtc:6018

Review-Url: https://codereview.webrtc.org/2715573003
Cr-Commit-Position: refs/heads/master@{#16802}
2017-02-23 13:56:15 +00:00
522d71bf36 Finalization of the first version of EchoCanceller 3
This CL adds the remaining code for the first version of EchoCanceller3.

TBR=aleloi@webrtc.org
BUG=webrtc:6018

Review-Url: https://codereview.webrtc.org/2678423005
Cr-Commit-Position: refs/heads/master@{#16801}
2017-02-23 13:16:26 +00:00
1e7732c3d9 Fixed Full stack tests to correctly process selected TL and SL while
calculating frame sizes. Added actual_bitrate metric which also accounts
for TL and SL info. Metric encoded_frame_size calculation is cleaned up. Perf alerts should be ignored.

BUG=webrtc:7095

Review-Url: https://codereview.webrtc.org/2709483009
Cr-Commit-Position: refs/heads/master@{#16800}
2017-02-23 13:07:56 +00:00
676e7539e4 Sample audio files for the APM quality assessment toolbox
BUG=webrtc:7218

Review-Url: https://codereview.webrtc.org/2705363004
Cr-Commit-Position: refs/heads/master@{#16799}
2017-02-23 11:24:45 +00:00
560ddb7321 Set scaling limit at 320 * 180 for all implementations.
The MediaCodec decoder on android has trouble decoding video at
so low resolutions. We set the limit a bit higher for all implementations
pending a robust software fallback implementation for MediaCodec.

BUG=webrtc:7206

Review-Url: https://codereview.webrtc.org/2709153002
Cr-Commit-Position: refs/heads/master@{#16798}
2017-02-23 11:22:02 +00:00
7439a93b4c Roll chromium_revision 2be125d927..7322bbb0a4 (452423:452447)
Change log: 2be125d927..7322bbb0a4
Full diff: 2be125d927..7322bbb0a4

Changed dependencies:
* src/base: 904348faab..a625e71534
* src/ios: 105f5776a6..fc4e0f9d8e
* src/third_party: cadafaa5f1..6824ac01f3
* src/tools: 26aaeec763..bb7a380aa2
DEPS diff: 2be125d927..7322bbb0a4/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2713843002
Cr-Commit-Position: refs/heads/master@{#16797}
2017-02-23 10:57:34 +00:00
8aadd50b96 Propagate packet pacing information to SendTimeHistory.
In order to not make this CL too large I have broken it down into at least two
steps. Previous CL: https://codereview.chromium.org/2628563003/

webrtc::PacedSender::Process                        <--- previous CL start here
webrtc::PacedSender::SendPacket
webrtc::PacketRouter::TimeToSendPacket
webrtc::ModuleRtpRtcpImpl::TimeToSendPacket         <--- previous CL end here, this Cl start here
webrtc::RTPSender::TimeToSendPacket
webrtc::RTPSender::PrepareAndSendPacket
webrtc::RTPSender::AddPacketToTransportFeedback
webrtc::TransportFeedbackAdapter::AddPacket
webrtc::SendTimeHistory::AddAndRemoveOld            <--- this CL end here

BUG=webrtc:6822

Review-Url: https://codereview.webrtc.org/2708873003
Cr-Commit-Position: refs/heads/master@{#16796}
2017-02-23 10:56:13 +00:00
7adadb1fdf Add QP for libvpx VP9 decoder.
Also adds a basic unit test for VP9 implementation.

BUG=webrtc:6541

Review-Url: https://codereview.webrtc.org/2654813002
Cr-Commit-Position: refs/heads/master@{#16795}
2017-02-23 10:54:57 +00:00
1e46434e7e Rename config structs in VideoProcessor tests.
This CL harmonizes and improves the naming of the config structs
in the VideoProcessor tests. It should have no functional implications.

CodecConfigPars -> CodecParams:
  This struct mainly contains codec settings.

QualityMetrics -> QualityThresholds:
  This struct contains thresholds against which the calculated
  PSNR and SSIM metrics are compared to.

RateControlMetrics -> RateControlThresholds:
  This struct contains thresholds against which the calculated
  rate control metrics are compared to.

BUG=webrtc:6634

Review-Url: https://codereview.webrtc.org/2703333004
Cr-Commit-Position: refs/heads/master@{#16794}
2017-02-23 10:49:16 +00:00
f166e1bcab Now using rtc::Buffer in FineAudioBuffer
BUG=b/35589717

Review-Url: https://codereview.webrtc.org/2706923006
Cr-Commit-Position: refs/heads/master@{#16793}
2017-02-23 10:44:55 +00:00
02f994b4e9 Remove codec thread from MediaCodecVideoEncoder.
After this change, all calls to MediaCodecVideoEncoder must be made on
the same task queue. Removes OnCodecThread suffix from methods since it
is no longer meaningful.

BUG=webrtc:6290

Review-Url: https://codereview.webrtc.org/2669093004
Cr-Commit-Position: refs/heads/master@{#16792}
2017-02-23 10:25:20 +00:00
df92c5cb8c Adding cpu measurments to video_quality_tests
BUG=webrtc:7095

Review-Url: https://codereview.webrtc.org/2711493002
Cr-Commit-Position: refs/heads/master@{#16791}
2017-02-23 10:08:44 +00:00
abc0080df8 Add QP statistics to VideoProcessorIntegrationTest.
The average QP of encoded frames is printed in Stats::PrintSummary.

plot_webrtc_test_logs.py: Add QP to plots.

BUG=webrtc:6634

Review-Url: https://codereview.webrtc.org/2709613005
Cr-Commit-Position: refs/heads/master@{#16790}
2017-02-23 09:33:04 +00:00
61a2b1bd6c Micro change suggested by internal style tool.
BUG=None
TBR=philipel@webrtc.org
NOTRY=True

Review-Url: https://codereview.webrtc.org/2707973009
Cr-Commit-Position: refs/heads/master@{#16789}
2017-02-23 09:16:14 +00:00
b681aabdfc Revert of Add metal view, shaders and renderer. (patchset #18 id:340001 of https://codereview.webrtc.org/2651743007/ )
Reason for revert:
Reverting due to breakage in the Google3 import

Original issue's description:
> Add metal view, shaders and renderer.
>
> This CL submits standalone Metal view, renderer and shader.
>
> BUG=webrtc:7079
>
> Review-Url: https://codereview.webrtc.org/2651743007
> Cr-Commit-Position: refs/heads/master@{#16787}
> Committed: fc8c97f950

TBR=magjed@webrtc.org,kthelgason@webrtc.org,tkchin@webrtc.org,haysc@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:7079

Review-Url: https://codereview.webrtc.org/2711003004
Cr-Commit-Position: refs/heads/master@{#16788}
2017-02-23 09:15:07 +00:00
fc8c97f950 Add metal view, shaders and renderer.
This CL submits standalone Metal view, renderer and shader.

BUG=webrtc:7079

Review-Url: https://codereview.webrtc.org/2651743007
Cr-Commit-Position: refs/heads/master@{#16787}
2017-02-23 08:46:07 +00:00
8c80c6e389 Fix potential deadlock in TaskQueue's libevent PostTaskAndReply implementation
BUG=webrtc:7188

Review-Url: https://codereview.webrtc.org/2709603002
Cr-Commit-Position: refs/heads/master@{#16786}
2017-02-23 08:34:52 +00:00
64b6d0781f Roll chromium_revision 97ae7db3f2..2be125d927 (452391:452423)
Change log: 97ae7db3f2..2be125d927
Full diff: 97ae7db3f2..2be125d927

Changed dependencies:
* src/build: b752cef86e..bf347e374a
* src/ios: fce3f61331..105f5776a6
* src/third_party: bfbc2a6b52..cadafaa5f1
* src/tools: 7087cc99b2..26aaeec763
DEPS diff: 97ae7db3f2..2be125d927/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2713813002
Cr-Commit-Position: refs/heads/master@{#16785}
2017-02-23 08:08:19 +00:00
4b1bf6c2f0 Adding placeholder ortc_unittests target.
This will allow the trybots to be updated to start running this new test
executable, so that they can be used when landing this CL which will
replace the dummy test with real tests:
https://codereview.webrtc.org/2675173003/

BUG=webrtc:7013
TBR=tommi@webrtc.org

Review-Url: https://codereview.webrtc.org/2707013005
Cr-Commit-Position: refs/heads/master@{#16784}
2017-02-23 07:45:38 +00:00
5e9baff6d4 Roll chromium_revision 66c91e5046..97ae7db3f2 (452148:452391)
Change log: 66c91e5046..97ae7db3f2
Full diff: 66c91e5046..97ae7db3f2

Changed dependencies:
* src/base: 4ceeab8236..904348faab
* src/build: d3b0d40ae1..b752cef86e
* src/ios: 68482f399b..fce3f61331
* src/testing: 5d970f9d4c..136c2a0836
* src/third_party: c24f4e7eec..bfbc2a6b52
* src/third_party/catapult: bbfc356b5b..56214f64fe
* src/third_party/icu: 9cd2828740..450be73c9e
* src/third_party/libvpx/source/libvpx: 91f87e7513..4d4231352c
* src/tools: 0e9381d8bc..7087cc99b2
DEPS diff: 66c91e5046..97ae7db3f2/DEPS

No update to Clang.

TBR=marpan@webrtc.org,
BUG=None

Review-Url: https://codereview.webrtc.org/2709963003
Cr-Commit-Position: refs/heads/master@{#16783}
2017-02-23 05:38:36 +00:00
b789253661 Accept SDP with TRANSPORT attributes missing from bundled m= sections.
Where "TRANSPORT attributes" refers to:
https://tools.ietf.org/html/draft-ietf-mmusic-sdp-mux-attributes-16

The BUNDLE draft now says that these attributes can
(in fact, MUST) be omitted when m= sections are bundled
(they only need to go in one of the bundled m= sections),
so we should start accepting that SDP.

This CL doesn't fix "a=rtcp-mux", unfortunately. That will be easier
to fix once we've split apart an "RtpTransport" object from
BaseChannel.

BUG=webrtc:6351

Review-Url: https://codereview.webrtc.org/2647593003
Cr-Commit-Position: refs/heads/master@{#16782}
2017-02-23 03:35:18 +00:00
3fa87f782e Use FallbackDesktopCapturerWrapper in ScreenCapturerWinMagnifier
This is a trivial change to remove duplicate logic, i.e. fallback capturer, from
ScreenCapturerWinMagnifier.

BUG=webrtc:7215

Review-Url: https://codereview.webrtc.org/2704943002
Cr-Commit-Position: refs/heads/master@{#16781}
2017-02-22 21:47:00 +00:00
72694a04e4 Roll chromium_revision 0d3e50126e..66c91e5046 (452017:452148)
Change log: 0d3e50126e..66c91e5046
Full diff: 0d3e50126e..66c91e5046

Changed dependencies:
* src/base: d01b3cd173..4ceeab8236
* src/build: dda9979a24..d3b0d40ae1
* src/ios: 0c45a778c9..68482f399b
* src/third_party: 3f3fcb66ea..c24f4e7eec
* src/third_party/catapult: 0cc3f7ab57..bbfc356b5b
* src/tools: 888e837101..0e9381d8bc
DEPS diff: 0d3e50126e..66c91e5046/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2712753002
Cr-Commit-Position: refs/heads/master@{#16780}
2017-02-22 20:11:31 +00:00
0f8b403eb5 Introduce a new constructor to PlatformThread.
The new constructor introduces two new changes:

* Support specifying thread priority at construction time.
  - Moving forward, the SetPriority() method will be removed.
* New thread function type.
  - The new type has 'void' as a return type and a polling loop
    inside PlatformThread, is not used.

The old function type is still supported until all places have been moved over.

In this CL, the first steps towards deprecating the old mechanism are taken
by moving parts of the code that were simple to move, over to the new callback
type.

BUG=webrtc:7187

Review-Url: https://codereview.webrtc.org/2708723003
Cr-Commit-Position: refs/heads/master@{#16779}
2017-02-22 19:22:05 +00:00
6d230d7b1d Fix issue where video scaling gets stuck at low resolution
This CL fixes issue 7211 as well as adding a test that would have
caught the issue.

BUG=webrtc:7211,webrtc:6850,b/35471214
R=sprang@webrtc.org
TBR=kthelgason, sprang

Review-Url: https://codereview.webrtc.org/2713683002 .
Cr-Commit-Position: refs/heads/master@{#16778}
2017-02-22 17:30:27 +00:00
6f08d7d68d Change frame length on very low bandwidth.
BUG=webrtc:7199

Review-Url: https://codereview.webrtc.org/2703353002
Cr-Commit-Position: refs/heads/master@{#16777}
2017-02-22 15:35:05 +00:00
6e5b2195d7 Add ana config to event log visualiser
BUG=webrtc:7160

Review-Url: https://codereview.webrtc.org/2695613005
Cr-Commit-Position: refs/heads/master@{#16776}
2017-02-22 15:33:27 +00:00
0335e6c4bf Fix flaky test WebRtcMediaRecorderTest.PeerConnection
A previous CL changed from logging to DCHECKing when setting minimum playout delay on a VoE channel: https://codereview.webrtc.org/2452163004/

I thought it safe at the time, since the input parameter range is capped, but apparently I didn't dig deep enough, as ultimately a failure may be returned for other reasons: https://chromium.googlesource.com/external/webrtc/+/master/webrtc/modules/audio_coding/neteq/delay_manager.cc#381

Thus, reverting to old behavior.

BUG=694373

Review-Url: https://codereview.webrtc.org/2704933008
Cr-Commit-Position: refs/heads/master@{#16775}
2017-02-22 15:07:04 +00:00
1d4e3d8a2e Move rtc_task_runner dependency from rtc_base to rtc_base_unittests.
This is step 3 in the task runner migration process started in cl
https://codereview.webrtc.org/2696703009/.

It depends on step 2 being landed in Chrome, cl
https://codereview.chromium.org/2694363005/.

NOTRY=true
BUG=webrtc:6424

Review-Url: https://codereview.webrtc.org/2708843002
Cr-Commit-Position: refs/heads/master@{#16774}
2017-02-22 14:02:34 +00:00
1254d70087 Roll chromium_revision 78cb58e46b..0d3e50126e (451974:452017)
Change log: 78cb58e46b..0d3e50126e
Full diff: 78cb58e46b..0d3e50126e

Changed dependencies:
* src/base: b872109c33..d01b3cd173
* src/ios: dda5bb3a6a..0c45a778c9
* src/third_party: d3c7329060..3f3fcb66ea
* src/third_party/catapult: e56eec8614..0cc3f7ab57
* src/tools: 89bd15621f..888e837101
DEPS diff: 78cb58e46b..0d3e50126e/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2707283002
Cr-Commit-Position: refs/heads/master@{#16773}
2017-02-22 13:43:46 +00:00
a45102f7b4 Revert of Revert Make the new jitter buffer the default jitter buffer. (patchset #1 id:1 of https://codereview.chromium.org/2682073003/ )
Reason for revert:
Fix here: https://codereview.chromium.org/2708593003

Original issue's description:
> Revert Make the new jitter buffer the default jitter buffer.
>
> Speculative revert of https://codereview.chromium.org/2656983002/ to see if it fixes a downstream bug.
>
> BUG=webrtc:5514
>
> Review-Url: https://codereview.webrtc.org/2682073003
> Cr-Commit-Position: refs/heads/master@{#16492}
> Committed: e525d6aba6

TBR=nisse@webrtc.org,stefan@webrtc.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=webrtc:5514

Review-Url: https://codereview.webrtc.org/2704183002
Cr-Commit-Position: refs/heads/master@{#16772}
2017-02-22 13:30:39 +00:00
5650a7d1c4 Improved readability and DCHECKing in AudioVector::[]
This is a follow-up to https://codereview.webrtc.org/2700633003, where
post-commit comments suggested these changes.

BUG=webrtc:7159

Review-Url: https://codereview.webrtc.org/2706263002
Cr-Commit-Position: refs/heads/master@{#16771}
2017-02-22 11:45:40 +00:00
a14d16ea7d Roll chromium_revision 479ccd4b4d..78cb58e46b (451902:451974)
Change log: 479ccd4b4d..78cb58e46b
Full diff: 479ccd4b4d..78cb58e46b

Changed dependencies:
* src/base: d32a354b07..b872109c33
* src/build: 28f9559990..dda9979a24
* src/buildtools: a7cc7a3e21..7e53759cf4
* src/ios: 938e564c46..dda5bb3a6a
* src/testing: c20fda1456..5d970f9d4c
* src/third_party: 0fda0dcf1b..d3c7329060
* src/third_party/catapult: d9036c9b7e..e56eec8614
* src/tools: 9592ac1923..89bd15621f
DEPS diff: 479ccd4b4d..78cb58e46b/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2708983003
Cr-Commit-Position: refs/heads/master@{#16770}
2017-02-22 11:39:24 +00:00
b78bc75e8c Reland of Add optional visualization file writers to VideoProcessor tests. (patchset #1 id:1 of https://codereview.webrtc.org/2708103002/ )
Reason for revert:
Necessary calls were "protected" by RTC_DCHECKs, that were optimized away in some release builds.
Replacing the RTC_DCHECKs with EXPECTs.

Original issue's description:
> Revert of Add optional visualization file writers to VideoProcessor tests. (patchset #4 id:220001 of https://codereview.webrtc.org/2700493006/ )
>
> Reason for revert:
> Breaks downstream project.
>
> Original issue's description:
> > Add optional visualization file writers to VideoProcessor tests.
> >
> > The purpose of this visualization CL is to add the ability to record
> > video at the source, after encode, and after decode, in the VideoProcessor
> > tests. These output files can then be replayed and used as a subjective
> > complement to the objective metric plots given by the existing Python
> > plotting script.
> >
> > BUG=webrtc:6634
> >
> > Review-Url: https://codereview.webrtc.org/2700493006
> > Cr-Commit-Position: refs/heads/master@{#16738}
> > Committed: 872104ac41
>
> TBR=asapersson@webrtc.org,sprang@webrtc.org,kjellander@webrtc.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=webrtc:6634
>
> Review-Url: https://codereview.webrtc.org/2708103002
> Cr-Commit-Position: refs/heads/master@{#16745}
> Committed: 2a8135a174

TBR=asapersson@webrtc.org,sprang@webrtc.org,kjellander@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
BUG=webrtc:6634

Review-Url: https://codereview.webrtc.org/2706123003
Cr-Commit-Position: refs/heads/master@{#16769}
2017-02-22 09:26:59 +00:00