17203 Commits

Author SHA1 Message Date
denicija
c1524301f7 Add unit test class for RTCCameraVideoCapturer.
To achieve higher testability, some internally used ivars needed to be syntesized as properties
and some methods needed to be refactored.

BUG=webrtc:7177

Review-Url: https://codereview.webrtc.org/2815823002
Cr-Commit-Position: refs/heads/master@{#17971}
2017-05-02 10:20:50 +00:00
pbos
fa18e25461 Extract TL config to VP8 libvpx flag conversion.
libvpx flags aren't applicable to hardware encoders or non-libvpx
software encoders. This moves libvpx flag conversion into the
VP8EncoderImpl integration.

BUG=chromium:702017,webrtc:7349
R=brandt@webrtc.org

Review-Url: https://codereview.webrtc.org/2849723002
Cr-Commit-Position: refs/heads/master@{#17970}
2017-05-02 09:51:12 +00:00
brandtr
fc31a43e36 Delete dead code VP8EncoderImpl::UpdateCodecFrameSize.
BUG=webrtc:7349

Review-Url: https://codereview.webrtc.org/2855473006
Cr-Commit-Position: refs/heads/master@{#17969}
2017-05-02 09:21:17 +00:00
terelius
bf2c049a12 When receiving an RTCP packet containing feedback about multiple RTP packets,
we currently check for bandwidth overuse once for every RTP packet.

This CL creates an experiment to test processing all packets in the RTCP
feedback before checking for overuse. This can be thought of as checking
for overuse per RTCP packet instead of per RTP packet.

The change is not expected to have a large impact, but enabling the
experiment will make the delay-based BWE slightly less sensitive. This means
that we'll be less likely to back down incorrectly after a brief network
transient, at the cost of sometimes missing real overuse (especially when
the network queues are short). In the latter case, the loss-based estimator
is expected to detect the overuse.

The experiment is off by default.

BUG=webrtc:7508

Review-Url: https://codereview.webrtc.org/2835573003
Cr-Commit-Position: refs/heads/master@{#17968}
2017-05-02 08:04:26 +00:00
ilnik
b82ac6aed3 Fix video_loopback to work with -duration flag: add missing ntp_timestamp to frames
BUG=none

Review-Url: https://codereview.webrtc.org/2852463002
Cr-Commit-Position: refs/heads/master@{#17967}
2017-05-02 07:48:41 +00:00
oprypin
78ef2c7da7 Disable video quality test due to unexpected failures
BUG=webrtc:7548
NOTRY=True

Review-Url: https://codereview.webrtc.org/2854803002
Cr-Commit-Position: refs/heads/master@{#17966}
2017-05-02 07:09:32 +00:00
deadbeef
fc1af01557 Relanding: Fixing crash that can occur if signal is modified while firing.
The crash occurs if a slot causes the very next slot in iteration order
to be disconnected.

Relanding after fixing a race condition that this CL revealed. Previously
the race resulted in an invalidated iterator, but now it will result in the
iterator being modified, so TSan catches it.

BUG=webrtc:7527

Review-Url: https://codereview.webrtc.org/2846593005
Cr-Original-Commit-Position: refs/heads/master@{#17943}
Committed: 961c2adf1e
Review-Url: https://codereview.webrtc.org/2846593005
Cr-Commit-Position: refs/heads/master@{#17965}
2017-05-02 05:24:20 +00:00
buildbot
0153ca5a61 Roll chromium_revision b0fb333255..9bee9f62d8 (468433:468514)
Change log: b0fb333255..9bee9f62d8
Full diff: b0fb333255..9bee9f62d8

Changed dependencies:
* src/base: 3e70695e11..806e97369c
* src/ios: 0206963269..ccd6ba336e
* src/testing: bc8c92ced4..c93d794661
* src/third_party: a60b67204e..e3cc517f68
* src/third_party/catapult: 2b7090e935..9300a23423
* src/tools: 75fdefb097..4c2e52cbe8
DEPS diff: b0fb333255..9bee9f62d8/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2848343003
Cr-Commit-Position: refs/heads/master@{#17964}
2017-05-02 01:11:11 +00:00
buildbot
137ae0dbd4 Roll chromium_revision 859478de17..b0fb333255 (468372:468433)
Change log: 859478de17..b0fb333255
Full diff: 859478de17..b0fb333255

Changed dependencies:
* src/base: d79f2b5d97..3e70695e11
* src/build: b8545353d4..4a81c967d6
* src/ios: 95404860a3..0206963269
* src/testing: aa1a28be3d..bc8c92ced4
* src/third_party: 0d2f5ec2bf..a60b67204e
* src/third_party/catapult: 1c3f4b9217..2b7090e935
* src/tools: 0cfc54f5be..75fdefb097
DEPS diff: 859478de17..b0fb333255/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2851373002
Cr-Commit-Position: refs/heads/master@{#17963}
2017-05-01 22:30:43 +00:00
buildbot
0cfc618365 Roll chromium_revision 3016c7260f..859478de17 (468316:468372)
Change log: 3016c7260f..859478de17
Full diff: 3016c7260f..859478de17

Changed dependencies:
* src/base: e009f549c7..d79f2b5d97
* src/ios: 66fbbf1ff3..95404860a3
* src/testing: 61f02a5e71..aa1a28be3d
* src/third_party: 4903852180..0d2f5ec2bf
* src/tools: e9f12310e7..0cfc54f5be
DEPS diff: 3016c7260f..859478de17/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2848323002
Cr-Commit-Position: refs/heads/master@{#17962}
2017-05-01 19:15:02 +00:00
deadbeef
7311b24660 Disable CpuTimeTest on instrumented builds.
The test relies on the ability to run a thread for a controllable
duration of time, which is unreliable on instrumented builds (TSan,
etc.).

Also adding a minimal test which can still be run on instrumented builds, so
they at least still exercise the code.

BUG=webrtc:7542
TBR=kjellander@webrtc.org

Review-Url: https://codereview.webrtc.org/2856473002
Cr-Commit-Position: refs/heads/master@{#17961}
2017-05-01 17:43:39 +00:00
buildbot
d7851aad40 Roll chromium_revision 51b208180c..3016c7260f (468309:468316)
Change log: 51b208180c..3016c7260f
Full diff: 51b208180c..3016c7260f

Changed dependencies:
* src/testing: 762ed82b67..61f02a5e71
* src/third_party: 3971b7ad1b..4903852180
* src/tools: fa11dc079a..e9f12310e7
DEPS diff: 51b208180c..3016c7260f/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2853823002
Cr-Commit-Position: refs/heads/master@{#17960}
2017-05-01 16:06:27 +00:00
buildbot
08462f0572 Roll chromium_revision c362658d24..51b208180c (468305:468309)
Change log: c362658d24..51b208180c
Full diff: c362658d24..51b208180c

Changed dependencies:
* src/third_party: 5ce4fa61ab..3971b7ad1b
DEPS diff: c362658d24..51b208180c/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2852063002
Cr-Commit-Position: refs/heads/master@{#17959}
2017-05-01 13:10:21 +00:00
buildbot
923c9dc434 Roll chromium_revision 93cf7d6a5e..c362658d24 (468298:468305)
Change log: 93cf7d6a5e..c362658d24
Full diff: 93cf7d6a5e..c362658d24

Changed dependencies:
* src/build: 3b48c72530..b8545353d4
* src/third_party: 6681a43e97..5ce4fa61ab
DEPS diff: 93cf7d6a5e..c362658d24/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2852973002
Cr-Commit-Position: refs/heads/master@{#17958}
2017-05-01 10:08:37 +00:00
buildbot
4f32cfc23a Roll chromium_revision 0b70e87ed7..93cf7d6a5e (468276:468298)
Change log: 0b70e87ed7..93cf7d6a5e
Full diff: 0b70e87ed7..93cf7d6a5e

Changed dependencies:
* src/third_party: 9bdb3d9dde..6681a43e97
DEPS diff: 0b70e87ed7..93cf7d6a5e/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2856533002
Cr-Commit-Position: refs/heads/master@{#17957}
2017-05-01 07:11:23 +00:00
buildbot
14c8fa4735 Roll chromium_revision 9b549cec86..0b70e87ed7 (468264:468276)
Change log: 9b549cec86..0b70e87ed7
Full diff: 9b549cec86..0b70e87ed7

Changed dependencies:
* src/third_party: 614a5f5ac6..9bdb3d9dde
* src/tools: 0677058279..fa11dc079a
DEPS diff: 9b549cec86..0b70e87ed7/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2853763002
Cr-Commit-Position: refs/heads/master@{#17956}
2017-05-01 04:12:59 +00:00
buildbot
b45c250ac1 Roll chromium_revision 2a7adc3543..9b549cec86 (468257:468264)
Change log: 2a7adc3543..9b549cec86
Full diff: 2a7adc3543..9b549cec86

Changed dependencies:
* src/base: c52a5ea00c..e009f549c7
* src/third_party: 08970f48a3..614a5f5ac6
DEPS diff: 2a7adc3543..9b549cec86/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2850093002
Cr-Commit-Position: refs/heads/master@{#17955}
2017-05-01 01:12:54 +00:00
buildbot
b23edd98a8 Roll chromium_revision ef4a5d5cee..2a7adc3543 (468253:468257)
Change log: ef4a5d5cee..2a7adc3543
Full diff: ef4a5d5cee..2a7adc3543

Changed dependencies:
* src/third_party: c98185009c..08970f48a3
DEPS diff: ef4a5d5cee..2a7adc3543/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2849053003
Cr-Commit-Position: refs/heads/master@{#17954}
2017-04-30 22:06:40 +00:00
buildbot
7d06366510 Roll chromium_revision d38126b6c8..ef4a5d5cee (468252:468253)
Change log: d38126b6c8..ef4a5d5cee
Full diff: d38126b6c8..ef4a5d5cee

No dependencies changed.
No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2850043002
Cr-Commit-Position: refs/heads/master@{#17953}
2017-04-30 10:10:15 +00:00
buildbot
675aee8e07 Roll chromium_revision a26ad25c4f..d38126b6c8 (468251:468252)
Change log: a26ad25c4f..d38126b6c8
Full diff: a26ad25c4f..d38126b6c8

No dependencies changed.
No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2854563002
Cr-Commit-Position: refs/heads/master@{#17952}
2017-04-30 07:13:18 +00:00
buildbot
144717de5a Roll chromium_revision efddbe79f2..a26ad25c4f (468249:468251)
Change log: efddbe79f2..a26ad25c4f
Full diff: efddbe79f2..a26ad25c4f

No dependencies changed.
No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2849053002
Cr-Commit-Position: refs/heads/master@{#17951}
2017-04-30 04:07:11 +00:00
buildbot
cd7ac7d58b Roll chromium_revision 934e8926ee..efddbe79f2 (468248:468249)
Change log: 934e8926ee..efddbe79f2
Full diff: 934e8926ee..efddbe79f2

No dependencies changed.
No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2852853002
Cr-Commit-Position: refs/heads/master@{#17950}
2017-04-30 01:13:32 +00:00
buildbot
a94b05c3ff Roll chromium_revision 66fbe94856..934e8926ee (468247:468248)
Change log: 66fbe94856..934e8926ee
Full diff: 66fbe94856..934e8926ee

No dependencies changed.
No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2851453006
Cr-Commit-Position: refs/heads/master@{#17949}
2017-04-29 22:09:21 +00:00
buildbot
029f82a049 Roll chromium_revision c43891b29b..66fbe94856 (468245:468247)
Change log: c43891b29b..66fbe94856
Full diff: c43891b29b..66fbe94856

Changed dependencies:
* src/third_party: 9122919bba..c98185009c
DEPS diff: c43891b29b..66fbe94856/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2847413002
Cr-Commit-Position: refs/heads/master@{#17948}
2017-04-29 19:11:15 +00:00
deadbeef
86746c475f Revert of Fixing crash that can occur if signal is modified while firing. (patchset #3 id:40001 of https://codereview.webrtc.org/2846593005/ )
Reason for revert:
Revealed a race condition (now reported by TSan), and breaks the scenario where a signal is deleted while firing.

Original issue's description:
> Fixing crash that can occur if signal is modified while firing.
>
> The crash occurs if a slot causes the very next slot in iteration order
> to be disconnected.
>
> BUG=webrtc:7527
>
> Review-Url: https://codereview.webrtc.org/2846593005
> Cr-Commit-Position: refs/heads/master@{#17943}
> Committed: 961c2adf1e

TBR=pthatcher@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:7527

Review-Url: https://codereview.webrtc.org/2847243006
Cr-Commit-Position: refs/heads/master@{#17947}
2017-04-29 19:00:21 +00:00
buildbot
e89ee4cace Roll chromium_revision 060d293f1d..c43891b29b (468239:468245)
Change log: 060d293f1d..c43891b29b
Full diff: 060d293f1d..c43891b29b

Changed dependencies:
* src/ios: 1b9d8daed0..66fbbf1ff3
* src/third_party: 435c73e553..9122919bba
* src/tools: d573f78a32..0677058279
DEPS diff: 060d293f1d..c43891b29b/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2847393002
Cr-Commit-Position: refs/heads/master@{#17946}
2017-04-29 16:07:40 +00:00
buildbot
1891489814 Roll chromium_revision beff0a104d..060d293f1d (468234:468239)
Change log: beff0a104d..060d293f1d
Full diff: beff0a104d..060d293f1d

Changed dependencies:
* src/base: 868273e4a5..c52a5ea00c
* src/build: e198cab409..3b48c72530
* src/third_party: 0d2943879e..435c73e553
DEPS diff: beff0a104d..060d293f1d/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2850013002
Cr-Commit-Position: refs/heads/master@{#17945}
2017-04-29 13:11:34 +00:00
buildbot
5c0261998e Roll chromium_revision 321e67522e..beff0a104d (468228:468234)
Change log: 321e67522e..beff0a104d
Full diff: 321e67522e..beff0a104d

Changed dependencies:
* src/base: 3ec90df7cf..868273e4a5
* src/build: 853f22fc61..e198cab409
* src/third_party: 959b0bd519..0d2943879e
* src/third_party/gtest-parallel: 5af9d383bc..c9bb1c9e8a
DEPS diff: 321e67522e..beff0a104d/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2849823004
Cr-Commit-Position: refs/heads/master@{#17944}
2017-04-29 10:11:17 +00:00
deadbeef
961c2adf1e Fixing crash that can occur if signal is modified while firing.
The crash occurs if a slot causes the very next slot in iteration order
to be disconnected.

BUG=webrtc:7527

Review-Url: https://codereview.webrtc.org/2846593005
Cr-Commit-Position: refs/heads/master@{#17943}
2017-04-29 08:39:52 +00:00
deadbeef
8b1d862bfe Fixing sigslot copy constructors.
They used to work, but were broken by a somewhat recent refactoring of
sigslot.h.

It's reasonable for signals and slots to have copy constructors, since
a class that uses signals/slots may want to be copyable.

BUG=webrtc:7342

Review-Url: https://codereview.webrtc.org/2842423002
Cr-Commit-Position: refs/heads/master@{#17942}
2017-04-29 07:27:04 +00:00
buildbot
12a467ffca Roll chromium_revision 6f9127a09a..321e67522e (468222:468228)
Change log: 6f9127a09a..321e67522e
Full diff: 6f9127a09a..321e67522e

Changed dependencies:
* src/third_party: eb258a4ef8..959b0bd519
* src/third_party/catapult: fa1d11d053..1c3f4b9217
* src/tools: dc23ea067f..d573f78a32
DEPS diff: 6f9127a09a..321e67522e/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2851043002
Cr-Commit-Position: refs/heads/master@{#17941}
2017-04-29 07:13:34 +00:00
buildbot
81ec592b64 Roll chromium_revision b416391e0a..6f9127a09a (468198:468222)
Change log: b416391e0a..6f9127a09a
Full diff: b416391e0a..6f9127a09a

Changed dependencies:
* src/base: b989bd1458..3ec90df7cf
* src/build: 23ab15d13e..853f22fc61
* src/third_party: 10fdbbd967..eb258a4ef8
* src/tools: cec732b51f..dc23ea067f
DEPS diff: b416391e0a..6f9127a09a/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2853683002
Cr-Commit-Position: refs/heads/master@{#17940}
2017-04-29 04:07:15 +00:00
buildbot
9e1c527b40 Roll chromium_revision 28867910b5..b416391e0a (468153:468198)
Change log: 28867910b5..b416391e0a
Full diff: 28867910b5..b416391e0a

Changed dependencies:
* src/base: 82d75227c1..b989bd1458
* src/testing: e8c96d8c86..762ed82b67
* src/third_party: 695d5f4b18..10fdbbd967
* src/tools: 72a39f4422..cec732b51f
DEPS diff: 28867910b5..b416391e0a/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2849943003
Cr-Commit-Position: refs/heads/master@{#17939}
2017-04-29 01:10:28 +00:00
zijiehe
419c742715 Allow Windows to return a monitor out of the first quadrant
Windows may return a DesktopCoordinate out of the first quadrant
(x >= 0 && y >= 0), this typically happens when the primary and secondary
monitors are swapped. i.e. The secondary monitor is on the left but the primary
one is on the right.
This change "moves" the entire screen from any quadrant to the (0, 0), so we can
capture the monitors in other quadrants.

BUG=chromium:715689

Review-Url: https://codereview.webrtc.org/2848443004
Cr-Original-Commit-Position: refs/heads/master@{#17935}
Committed: 049ec71e65
Review-Url: https://codereview.webrtc.org/2848443004
Cr-Commit-Position: refs/heads/master@{#17938}
2017-04-28 23:08:20 +00:00
buildbot
23c65b6a19 Roll chromium_revision ce7ea8b138..28867910b5 (468075:468153)
Change log: ce7ea8b138..28867910b5
Full diff: ce7ea8b138..28867910b5

Changed dependencies:
* src/base: 955bd2a43a..82d75227c1
* src/build: 4f20590cbe..23ab15d13e
* src/ios: 497dec7d78..1b9d8daed0
* src/third_party: b48448332b..695d5f4b18
* src/third_party/catapult: 5fa840e82c..fa1d11d053
* src/third_party/libyuv: fc02cc3806..3b583396bf
* src/tools: e1412815f6..72a39f4422
DEPS diff: ce7ea8b138..28867910b5/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2847293002
Cr-Commit-Position: refs/heads/master@{#17937}
2017-04-28 22:37:14 +00:00
zijiehe
7aea6afdab Revert of Allow Windows to return a monitor out of the first quadrant (patchset #2 id:60001 of https://codereview.chromium.org/2848443004/ )
Reason for revert:
TranslateRect() is placed in a wrong position.

Original issue's description:
> Allow Windows to return a monitor out of the first quadrant
>
> Windows may return a DesktopCoordinate out of the first quadrant
> (x >= 0 && y >= 0), this typically happens when the primary and secondary
> monitors are swapped. i.e. The secondary monitor is on the left but the primary
> one is on the right.
> This change "moves" the entire screen from any quadrant to the (0, 0), so we can
> capture the monitors in other quadrants.
>
> BUG=chromium:715689
>
> Review-Url: https://codereview.webrtc.org/2848443004
> Cr-Commit-Position: refs/heads/master@{#17935}
> Committed: 049ec71e65

TBR=sergeyu@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=chromium:715689

Review-Url: https://codereview.webrtc.org/2852783002
Cr-Commit-Position: refs/heads/master@{#17936}
2017-04-28 21:30:56 +00:00
zijiehe
049ec71e65 Allow Windows to return a monitor out of the first quadrant
Windows may return a DesktopCoordinate out of the first quadrant
(x >= 0 && y >= 0), this typically happens when the primary and secondary
monitors are swapped. i.e. The secondary monitor is on the left but the primary
one is on the right.
This change "moves" the entire screen from any quadrant to the (0, 0), so we can
capture the monitors in other quadrants.

BUG=chromium:715689

Review-Url: https://codereview.webrtc.org/2848443004
Cr-Commit-Position: refs/heads/master@{#17935}
2017-04-28 20:43:28 +00:00
buildbot
281aecdca6 Roll chromium_revision d6d85694bd..ce7ea8b138 (468014:468075)
Change log: d6d85694bd..ce7ea8b138
Full diff: d6d85694bd..ce7ea8b138

Changed dependencies:
* src/base: 8d716e0c1f..955bd2a43a
* src/build: 02044bf86a..4f20590cbe
* src/ios: 4306eb8f26..497dec7d78
* src/third_party: 00ba8abfb1..b48448332b
* src/tools: a9b7bf6d33..e1412815f6
DEPS diff: d6d85694bd..ce7ea8b138/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2848823003
Cr-Commit-Position: refs/heads/master@{#17934}
2017-04-28 19:13:34 +00:00
buildbot
d638954152 Roll chromium_revision 8f67705094..d6d85694bd (467946:468014)
Change log: 8f67705094..d6d85694bd
Full diff: 8f67705094..d6d85694bd

Changed dependencies:
* src/base: 93f3cd4407..8d716e0c1f
* src/ios: 0553e28977..4306eb8f26
* src/testing: de9f733ce3..e8c96d8c86
* src/third_party: 55a04a606e..00ba8abfb1
* src/third_party/catapult: 778079b344..5fa840e82c
* src/tools: d696949400..a9b7bf6d33
DEPS diff: 8f67705094..d6d85694bd/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2852743002
Cr-Commit-Position: refs/heads/master@{#17933}
2017-04-28 16:08:19 +00:00
terelius
ee37e86de8 Create tool to print statistics about the file size usage of an RTC event log.
BUG=webrtc:7502

Review-Url: https://codereview.webrtc.org/2717553004
Cr-Commit-Position: refs/heads/master@{#17932}
2017-04-28 14:48:17 +00:00
ossu
0d6195dd15 Hooked up Opus CBR support when configured manually or through an SdpAudioFormat.
BUG=webrtc:7394

Review-Url: https://codereview.webrtc.org/2798403003
Cr-Commit-Position: refs/heads/master@{#17931}
2017-04-28 14:33:18 +00:00
nisse
eb44b39a21 Delete RawVideoType enum, use the VideoType enum instead.
BUG=webrtc:7385

Review-Url: https://codereview.webrtc.org/2765243002
Cr-Commit-Position: refs/heads/master@{#17930}
2017-04-28 14:18:05 +00:00
nisse
aec49d2b49 Revert of Delete deprecated and transitional stuff related to video frame refactoring. (patchset #17 id:320001 of https://codereview.webrtc.org/2622263002/ )
Reason for revert:
Broke Chrome build, see, e.g.,
http://build.chromium.org/p/chromium.webrtc.fyi/builders/Linux%20Builder/builds/16237

Original issue's description:
> Delete deprecated and transitional stuff related to video frame refactoring.
>
> BUG=webrtc:5880
>
> Review-Url: https://codereview.webrtc.org/2622263002
> Cr-Commit-Position: refs/heads/master@{#17928}
> Committed: 713a3bbcc7

TBR=mflodman@webrtc.org,perkj@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:5880

Review-Url: https://codereview.webrtc.org/2845333002
Cr-Commit-Position: refs/heads/master@{#17929}
2017-04-28 13:03:40 +00:00
nisse
713a3bbcc7 Delete deprecated and transitional stuff related to video frame refactoring.
BUG=webrtc:5880

Review-Url: https://codereview.webrtc.org/2622263002
Cr-Commit-Position: refs/heads/master@{#17928}
2017-04-28 12:43:20 +00:00
mbonadei
148d5a2dca Reland of Enable GN check for webrtc/base (patchset #3 id:230001 of https://codereview.webrtc.org/2838683002/ )
Reason for revert:
Fourth attempt to land.

Waiting for https://codereview.webrtc.org/2845013003 to
avoid conflicts on webrtc/modules/audio_coding:neteq_unittest_tools.

Original issue's description:
> Revert of Enable GN check for webrtc/base (patchset #13 id:240001 of https://codereview.webrtc.org/2717083002/ )
>
> Reason for revert:
> Breaks Chromium because in Chromium we import WebRTC with rtc_include_tests=false (https://bugs.chromium.org/p/chromium/issues/detail?id=713179#c6).
>
> Chromium uses webrtc/test/fuzzers and this CL adds test dependencies to neteq_rtc_fuzzer.
>
> Original issue's description:
> > Enable GN check for webrtc/base
> >
> > It's not possible to enable it for the rtc_base_approved
> > target but since a larger refactoring is ongoing for webrtc/base
> > this CL doesn't attempt to fix that.
> >
> > Changes made:
> > * Move webrtc/system_wrappers/include/stringize_macros.h into
> >   webrtc/base:rtc_base_approved_unittests (and corresponding
> >   unit test to rtc_base_approved_unittests).
> > * Move md5digest.* from rtc_base_approved to rtc_base_test_utils target.
> > * Move webrtc/system_wrappers/include/stringize_macros.h (+test) into
> >   webrtc/base.
> > * Remove unused use include of webrtc/base/fileutils.h in
> >   webrtc/base/pathutils.cc
> >
> > BUG=webrtc:6828, webrtc:3806, webrtc:7480
> > NOTRY=True
> >
> > Review-Url: https://codereview.webrtc.org/2717083002
> > Cr-Commit-Position: refs/heads/master@{#17766}
> > Committed: ed754e71ae
>
> TBR=perkj@webrtc.org,tommi@webrtc.org,nisse@webrtc.org,kjellander@webrtc.org
> # Not skipping CQ checks because original CL landed more than 1 days ago.
> BUG=webrtc:6828, webrtc:3806, webrtc:7480
> NOTRY=True
>
> Review-Url: https://codereview.webrtc.org/2838683002
> Cr-Commit-Position: refs/heads/master@{#17849}
> Committed: 11ed366c48

TBR=perkj@webrtc.org,tommi@webrtc.org,nisse@webrtc.org,kjellander@webrtc.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=webrtc:6828, webrtc:3806, webrtc:7480

Review-Url: https://codereview.webrtc.org/2852663002
Cr-Commit-Position: refs/heads/master@{#17927}
2017-04-28 12:24:50 +00:00
buildbot
5e82c87d23 Roll chromium_revision 7d57a8fa0d..8f67705094 (467919:467946)
Change log: 7d57a8fa0d..8f67705094
Full diff: 7d57a8fa0d..8f67705094

Changed dependencies:
* src/ios: 468200325f..0553e28977
* src/testing: d62e5167d6..de9f733ce3
* src/third_party: 62d592853b..55a04a606e
DEPS diff: 7d57a8fa0d..8f67705094/DEPS

No update to Clang.

TBR=
BUG=None

Review-Url: https://codereview.webrtc.org/2846763006
Cr-Commit-Position: refs/heads/master@{#17926}
2017-04-28 10:42:52 +00:00
philipel
f684269541 Reject re-inserting already decoded frames into FrameBuffer2.
BUG=webrtc:7518

Review-Url: https://codereview.webrtc.org/2842133002
Cr-Commit-Position: refs/heads/master@{#17925}
2017-04-28 10:29:15 +00:00
brandtr
56c78aea5f Update FlexFEC field trial string in AppRTCMobile Android.
BUG=webrtc:5654

Review-Url: https://codereview.webrtc.org/2847543004
Cr-Commit-Position: refs/heads/master@{#17924}
2017-04-28 09:52:20 +00:00
denicija
d208815685 iOS/MacOS:Refactor metal rendering by extracting common implementation
in separate super class.

Included changes:
- Fix rendering on iOS to support NV12 and i420 frames
- Improve code style
- Update build targets
- Update tests

BUG=webrtc:7079

Review-Url: https://codereview.webrtc.org/2784243003
Cr-Commit-Position: refs/heads/master@{#17923}
2017-04-28 09:14:54 +00:00
henrik.lundin
7a38fd2628 Add NetEqInput::PacketData::ToString method
This new method prints information about the packet.

BUG=webrtc:7467

Review-Url: https://codereview.webrtc.org/2844283002
Cr-Commit-Position: refs/heads/master@{#17922}
2017-04-28 08:35:53 +00:00