Граф коммитов

471074 Коммитов

Автор SHA1 Сообщение Дата
Christoph Kerschbaumer d82c07bf27 Bug 1262635 - Don't strip URIs of ftp: when sending reports. r=dveditz 2016-04-17 20:09:18 +02:00
Alastor Wu 5f525bec24 Bug 1013933 - preserve playbackrate across play/pause. r=padenot
MozReview-Commit-ID: KGnh1exMgSw

--HG--
extra : transplant_source : %E8%F4r%9D%B2J%03%C1%AFnwj%5D%26%97%F8Sa%92%DF
2016-04-15 10:33:37 +08:00
Gabor Krizsanits 3943237646 Bug 1264383 - makeFilteringListener breaks eventremoval with shims. r=mconley 2016-04-18 10:40:26 +02:00
Mark Goodwin 33bbad3164 Bug 1264675 - Add content signature root hash to security preferences r=keeler,r=ulfr
MozReview-Commit-ID: 256b3zC6h1K
2016-04-15 12:04:14 +01:00
Jean-Yves Avenard a6c2920dde Bug 1247138: [MSE] P2. Add mochitest. r=gerald
2nd media segment also exercise bug 1264622 resolution

MozReview-Commit-ID: F5euopyUiPk

--HG--
extra : rebase_source : b1e1199317612e159507583bcbc4753d106580a6
2016-04-15 01:46:36 +10:00
Jean-Yves Avenard 580e5aa834 Bug 1247138: [MSE] P1. Allow change of audio format. r=gerald
MozReview-Commit-ID: 9fktsFVXtdt

--HG--
extra : rebase_source : bba6b286c6281b34d21cd2a1d1341ef05a4977e4
2016-04-14 19:12:44 +10:00
Jean-Yves Avenard 730f304d31 Bug 1264199: P6. Drain resampler when changing format or reaching the end. r=kinetik
MozReview-Commit-ID: KqcB0FYxNtC

--HG--
extra : rebase_source : 777c5b85e8999a54a8b0b5c9da999d41e746daa2
2016-04-14 15:44:02 +10:00
Jean-Yves Avenard 7e4703cb30 Bug 1264199: P5. Perform all downmixing operations in DecodedAudioDataSink. r=kinetik
Performing all audio processing operations in the same place, allows to simplify the code.

Additionally, if accessibility.monoaudio.enable is not set, we always upmix mono to stereo so that if the first audio stream seen was mono, we aren't stuck playing all future streams in mono.

MozReview-Commit-ID: 5yANN6PLFhX

--HG--
extra : rebase_source : c789ba66fa168bc11064b2a329311d90b046c7fc
2016-04-13 20:25:50 +10:00
Jean-Yves Avenard d9d9a0a69f Bug 1264199: P4. Add mono to stereo upmix to AudioConverter. r=rillian
MozReview-Commit-ID: 4sCvNWKEMZS

--HG--
extra : rebase_source : 8e6df035e7cc4ba37bce748bec9f47276f201c22
2016-04-13 19:50:54 +10:00
Jean-Yves Avenard 16c0bd7cd9 Bug 1264199: P3. Attempt to minimize audio quality loss and unnecessary processing. r=kinetik
We attempt to avoid unnecessary resampling of 44.1kHz and 48kHz content, for all others we use cubeb's preferred sampling rate as final sampling rate.

MozReview-Commit-ID: 413qnsDFHzY

--HG--
extra : rebase_source : 2c783be7f6d2ccaab88cee70372905ea92b690f4
2016-04-13 17:55:48 +10:00
Jean-Yves Avenard d679b38075 Bug 1264199: P2. Ensure the AudioStream only ever receive the same content format. r=kinetik
The audio is automatically converted to always match the format of the first processed sample.
This is a temporary approach, as it would be preferred to use a final sampling rate not causing too much quality loss.

MozReview-Commit-ID: Lo3827aon43

--HG--
extra : rebase_source : d8de2c85de5a78c2d1a17201a9d0c418ce3312e4
2016-04-13 17:30:23 +10:00
Jean-Yves Avenard 6517105f96 Bug 1264199: P1. Perform audio conversion in the reader's taskqueue and ahead of use. r=kinetik
This will allow to easily detect audio configuration change prior immediate playback.

MozReview-Commit-ID: IwDUGOd17ND

--HG--
extra : rebase_source : 37e9e19a58d2e90b107eaf63a2ac19233c521033
2016-04-13 17:17:54 +10:00
Jean-Yves Avenard e672cebce4 Bug 1262753: P8. Remove useless assert. r=gerald
Fly by fix unrelated to bug 1262753.

MozReview-Commit-ID: 3IHtrWS280f

--HG--
extra : rebase_source : a4aec3f7a348de0a92ec122ef5676eb424824f27
2016-04-12 08:50:32 +10:00
Jean-Yves Avenard 9d61bb0d32 Bug 1262753: P7. Add debugging pref to enable/disable downmixer and resample. r=kinetik
Using the gfxprefs for the time being, in order to access the preferences outside of the main thread.

It will allow to easily test future cubeb changes to support change of sampling rate / multichannels.

MozReview-Commit-ID: 2Qvq4zAtzCL

--HG--
extra : rebase_source : 46e272ca46ceb35b8e97b62cd1d2be949ba054f2
2016-04-12 19:24:09 +10:00
Jean-Yves Avenard 4132e3555b Bug 1262753: P6. Perform downmixing in DecodeAudioDataSink. r=kinetik
Rather than performing the audio processing a few frames at a time, we perform the operation when popping the audio data block.
The only downmixing task left to AudioStream is to handle the force mono preference.

Resampling is currently disabled.

MozReview-Commit-ID: GNQA1h0xcp7

--HG--
extra : rebase_source : c58aa4514a0dc4de06be6dc1da6a598742caa262
2016-04-11 21:16:17 +10:00
Jean-Yves Avenard b382680a6a Bug 1262753: P5. Pass number of frames rather than the number of bytes. r=gerald
The Process API was originally planned to be used to also convert data type. However, this task is now the responsibility of the AudioDataBuffer class.
We can simplify the logic and use frames everywhere.

MozReview-Commit-ID: KvKn1d1yHqQ

--HG--
extra : rebase_source : cd5a3ec2c0293fa39274828ebfd9e80103126cc5
2016-04-12 12:16:38 +10:00
Jean-Yves Avenard ab5d1e11d2 Bug 1262753: P4. Add resampling capabilities to AudioConverter. r=kinetik
MozReview-Commit-ID: 93PNC5ooEPg

--HG--
extra : rebase_source : 85aff569f014833d23f23ce488bd61dee8749109
2016-04-11 21:07:11 +10:00
Jean-Yves Avenard 09de840ad6 Bug 1262753: P3. Add AudioConverter::InputConfig/OutputConfig. r=gerald
Allow access to original constructor objects, to avoid having to store the original AudioConfig objects elsewhere.

MozReview-Commit-ID: 66pbRJ0wyl

--HG--
extra : rebase_source : 8d9331db430494ead6dad726d18ff4ef5ebdc8a0
2016-04-11 21:04:15 +10:00
Jean-Yves Avenard a0a6145da5 Bug 1262753: P2. Add AudioDataBuffer::operator=. r=gerald
MozReview-Commit-ID: D68ikKaDtj0

--HG--
extra : rebase_source : 29bda85c9d9c1374fcd9ffe31d3378a599ae074c
2016-04-11 21:01:45 +10:00
Jean-Yves Avenard 871c53283b Bug 1262753: P1. Add AudioConfig == and != operator. r=gerald
MozReview-Commit-ID: A7qVGxiMOnh

--HG--
extra : rebase_source : 199f8ba5aadb07438c463b857b74b2139a173190
2016-04-11 20:57:29 +10:00
Andrea Marchesini ca25a39241 Bug 1263992 - patch 2 - Support the creation of directories from FileSystemTasks, r=smaug 2016-04-18 03:32:59 -04:00
Andrea Marchesini 8e22a11655 Bug 1263992 - patch 1 - Remove DirectoryType enum, r=smaug 2016-04-18 03:32:30 -04:00
Chris Pearce 136af0a4d8 Bug 1265038 - Turn on Adobe EME by build config rather than per-platform basis. r=jwwang
We end up showing the "Adobe EME is preffed off" UI on MacOSX because we're
check for Adobe EME support based on platform, not based on whether it's
configured on in the mozconfig. We should really only check for Adobe EME
if 'ac_add_options --enable-eme=adobe' is present in the build config,
as otherwise preffing it on isn't going to work.


MozReview-Commit-ID: CpSAh6gUU1S

--HG--
extra : rebase_source : 815b5ddf8f2889787acd22ab7a434db9b0f23213
2016-04-18 14:22:58 +12:00
Carsten "Tomcat" Book fbeb4ca1bd Merge mozilla-central to mozilla-inbound 2016-04-18 08:51:38 +02:00
Tooru Fujisawa 5a3b8095ed Bug 1265187 - Backout bug 1263857 testcase due to frequent timeout on Windows xp debug jittest. r=Tomcat, a=Tomcat 2016-04-18 15:44:43 +09:00
CJKu 1f80f6d497 Bug 1265154 - Fix compile error in MSVC 2013 caused by ArrayLength; r=heycam
MozReview-Commit-ID: DvyCNwTRiI7
2016-04-18 11:31:24 +08:00
Brian Birtles 05276091f4 Bug 1245000 part 1 - Add a preference for enabling Element.animate; r=bz
MozReview-Commit-ID: H3HPYWeyGCL
2016-04-18 09:16:04 +09:00
Olli Pettay 556d99331e Bug 1265032 - Enable Document.scrollingElement in release builds, r=bz 2016-04-18 02:31:57 +03:00
ffxbld e169c5fcb3 No bug, Automated blocklist update from host bld-linux64-spot-312 - a=blocklist-update 2016-04-16 04:49:11 -07:00
ffxbld 9fa9277647 No bug, Automated HPKP preload list update from host bld-linux64-spot-312 - a=hpkp-update 2016-04-16 04:49:09 -07:00
ffxbld 1d4acf2cee No bug, Automated HSTS preload list update from host bld-linux64-spot-312 - a=hsts-update 2016-04-16 04:49:07 -07:00
Carsten "Tomcat" Book 558930f4e9 Backed out changeset e673dbc9848f (bug 1232686) for breaking VS2013 Builds 2016-04-16 10:57:53 +02:00
Wes Kocher 4f233d527d Merge fx-team to central, a=merge
MozReview-Commit-ID: J70qG3TcPFl
2016-04-15 15:36:39 -07:00
Wes Kocher 656b901828 Merge inbound to central, a=merge
MozReview-Commit-ID: BpCN8N6VSVt
2016-04-15 14:31:31 -07:00
Wes Kocher 59d9a1b8ae Backed out 4 changesets (bug 1263558) for jit OOM crashes a=backout
Backed out changeset 7fcc62dda4e3 (bug 1263558)
Backed out changeset faa055e3ace8 (bug 1263558)
Backed out changeset 94805cd19c15 (bug 1263558)
Backed out changeset ad22cb06de5d (bug 1263558)

MozReview-Commit-ID: JkWyfHDBf1E
2016-04-15 10:21:35 -07:00
Julian Descottes aa3b208dcd Bug 1264101 - Force dom.animations-api.core.enabled pref to true before animation inspector tests. r=pbro
WebAnimations API is not enabled by default in all release channels yet.
It is behing the pref dom.animations-api.core.enabled.

Turn the preference on before any test of the animationinspector, and
clear it after the test.

MozReview-Commit-ID: K8UXEthLhnH

--HG--
extra : rebase_source : c20aad209c3bd47b4e76ba05f3ca675fc86ed92a
extra : histedit_source : b09656b90a57beb684d84e7571f16cd36d6d0f7b
2016-04-15 12:35:58 +02:00
Wes Kocher 5b1e4f68c2 Backed out changeset fec92924befb (bug 1250203) for bc leaks
MozReview-Commit-ID: BMq0vBarOQZ
2016-04-15 12:19:44 -07:00
Drew Willcoxon 793fe50f6f Bug 1262588 - Keep favicons in awesomebar popup aligned with urlbar's identity icon. r=mak
MozReview-Commit-ID: Ly3NNgUVcoU
2016-04-15 11:34:35 -07:00
Carsten "Tomcat" Book c4445ccd33 merge mozilla-inbound to mozilla-central a=merge 2016-04-15 11:41:41 +02:00
Carsten "Tomcat" Book 26fa2ff692 merge fx-team to mozilla-central a=merge
--HG--
extra : amend_source : ad367ce5c609bdeabd41e252d379aae9bee81e04
2016-04-15 11:39:35 +02:00
Carsten "Tomcat" Book 59e7f69334 Backed out changeset cd9ea65ce9b9 (bug 1258205) for issues in wpt-2 tests 2016-04-15 08:09:42 +02:00
Astley Chen 379d4f965b Bug 1243675 - Part 6. Add mask-size property reftest. r=dbaron
MozReview-Commit-ID: AKYv1z4rBCV
2016-04-15 12:07:14 +08:00
Astley Chen 866b7b078c Bug 1243675 - Part 5. Add mask-origin property reftest. r=dbaron
MozReview-Commit-ID: AL2J2USBJmA
2016-04-15 12:06:12 +08:00
Chris Pearce d9baf3c3ba Bug 1264832 - Delay resolution of navigator.requestMediaKeySystemAccess promise until Widevine CDM is downloaded. r=gerald
MozReview-Commit-ID: I6OMiKUj9ot

--HG--
extra : rebase_source : ea150c1b3f480bef4579e280c5f7840b8a174a8c
2016-04-15 14:20:33 +12:00
Andrzej Hunt b3549fb619 Bug 1264138 - Upgrade FxAccountStatusActivity to use AppCompatActivity too r=sebastian
Our theming inheritance around Preferences still seems quite messy, however given we'll
need to uplift this I'm planning to tackle this in a separate bug.

We add the LocaleAwareAppCompatActivity in order to avoid affecting other consumers
of LocaleAwareFragementActivity (primarily the SearchActivity). We will investigate
those separately.

MozReview-Commit-ID: KVEZbDdza1s

--HG--
extra : amend_source : 3b296714b2f1d1aa2fd09f4ea8ee7641d0bb36fb
2016-04-14 08:35:13 -07:00
Dão Gottwald 10bc69ffda Bug 1250203 - Re-populate recent bookmarks when a bookmark has been deleted. r=mak 2016-04-15 16:50:20 +02:00
Carsten "Tomcat" Book f893a5d6de Backed out changeset 0a5cf306560d (bug 1255925) on request from evilpie 2016-04-14 16:20:02 +02:00
Carsten "Tomcat" Book 56fa69434b Backed out changeset ff56abc1768b (bug 1255925) 2016-04-14 16:19:41 +02:00
Edouard Oger be199c0753 Bug 1247110 - Synced Tabs Sidebar - Fixed keyboard navigation. r=markh 2016-04-14 09:33:00 -04:00
Carsten "Tomcat" Book 32c25ca2da merge mozilla-inbound to mozilla-central a=merge 2016-04-14 11:38:11 +02:00