Commit Graph

170533 Commits

Author SHA1 Message Date
Tony Young
d0cd38a57c test for bug 972678
--HG--
extra : rebase_source : 60639d14b248ec457a42112aa501ded2739d980e
2014-02-27 11:45:04 +13:00
Karl Tomlinson
59a9465d27 b=913854 pass start time as double parameter and subsample align r=padenot
The subsample alignment of resampled buffers provides seamless playback even
when buffer durations are not an integer number of track ticks.

--HG--
extra : rebase_source : 0fcd52e8a9560de881aa73931cf22a02f984d748
2014-02-27 11:45:04 +13:00
Karl Tomlinson
a671ab1fb8 b=913854 capture the full extent of the resampling filter r=padenot
The resampling filter means that the buffer influences a greater number of
samples than indicated by just its length.  Including the full influence of
the linear filter means that adjacent buffers aligned appropriately will
behave as if they were one extended buffer.

The buffers are not yet aligned more carefully than track ticks, so buffers
play back seamlessly only if their sample rates and lengths are such that
their duration is an integer number of track ticks.

Knowing how far the filter extends before the start time requires
initializing the resampler before buffer processing.

The patch also includes the input latency in the first resampler input
buffer sample count estimate to reduce the number to calls required
to start the resampler.

--HG--
extra : rebase_source : 16d5af79bc5621be830f5956b51f7ff59d490575
2014-02-27 11:45:03 +13:00
Karl Tomlinson
7cb01e7526 b=913854 add speex_resampler_set_skip_frac_num r=jmspeex
This allows a client to align output samples consistently for independent
resampling of contiguous input buffers.

--HG--
extra : rebase_source : 58caba11ac7f78418b173a98556276d3b4644603
2014-02-27 11:44:40 +13:00
Tony Young
f4dadd97b6 test for bug 938022
--HG--
extra : rebase_source : 69a7203cb040ef6b33666c2444b8df043dbf7f32
2014-02-24 12:41:47 +13:00
Ms2ger
9d04b5cd6d Bug 973649 - Add logic for CFLAGS, CXXFLAGS and LDFLAGS to moz.build; r=gps
--HG--
extra : amend_source : d44541fd844c1b3f5fb4077add7aa0589ae61942
2014-02-26 12:49:00 -08:00
cajbir
10edaa01a7 Bug 976037 - Implement an eviction algorithm for media source extensions - r=kinetik
--HG--
extra : rebase_source : c21db9dc093b4021ab5dc192564d5fb3e93e2d2c
2014-02-26 15:33:06 +13:00
Sean Stangl
37899ac9af Bug 933001 - Part 5/5 - Pref-off SharedArrayBuffer outside Nightly. r=sfink 2014-02-20 14:49:09 -08:00
Sean Stangl
19f5483c26 Bug 933001 - Part 4/5 - Add SharedArrayBuffer tests. 2014-02-20 14:48:42 -08:00
Sean Stangl
ab54a045b1 Bug 933001 - Part 3/5 - StructuredClone changes for SharedArrayBuffer. r=sfink 2014-02-20 14:47:58 -08:00
Sean Stangl
ae8cbd7af4 Bug 933001 - Part 2/5 - Make SharedArrayBuffer usable as an AsmJS heap. r=luke 2014-02-20 14:47:03 -08:00
Sean Stangl
f9325c702d Bug 933001 - Part 1/5 - Define SharedArrayBufferObject. r=sfink 2014-02-20 14:43:03 -08:00
Jan Beich
130e09dc78 Bug 973176 - Use --ignore-unresolved-symbol on BSDs if available. r=khuey 2014-02-26 16:57:14 -05:00
Jan Beich
129dabe555 Bug 973176 - Move BSD workaround close to the option it's for. r=khuey 2014-02-26 16:56:59 -05:00
Girish Sharma
3fe6e59b41 Bug 970246 - Create an http-on-response-set-cookie notification to tell when cookies are created via SET-COOKIE response header. r=honzab 2014-02-27 00:14:42 +05:30
Ryan VanderMeulen
5a3ac082f6 Backed out changeset 3d4a094ac17e (bug 976790) for bustage on a CLOSED TREE. 2014-02-26 16:52:29 -05:00
Ryan VanderMeulen
a088c05d9a Merge m-c to inbound. 2014-02-26 16:42:16 -05:00
Oleg Romashin
c650e7620f Bug 974177 - PointerCancel must trigger PointerOut event. r=smaug
--HG--
extra : rebase_source : cd88e856cbae08f21aed564899195f9697053f3a
2014-02-26 13:37:30 -08:00
Oleg Romashin
31d70123f1 Bug 970964 - Get pointer events from touch and mouse. tests. r=smaug
--HG--
extra : rebase_source : a2856a27dc24f505297a52881b799282b09a3d47
2014-02-26 13:37:25 -08:00
Oleg Romashin
add07fba1a Bug 970964 - Implement generic mouse/touch -> Pointer events converter. r=smaug,jimm
--HG--
extra : rebase_source : 165dc4e5c598f9e9f9de928efe16824037b95ff3
2014-02-26 13:37:01 -08:00
L. David Baron
d04a0ecef6 Bug 976364: Make 'perspective' create a stacking context. r=mattwoodrow
While it seems a little silly since 'perspective' doesn't require
atomicity (rather, it adds an additional transformation to any 3-D
descendants, which already require atomicity), the spec requires it, and
it matches WebKit.
2014-02-26 13:36:36 -08:00
L. David Baron
7e2eff5514 Bug 331743 patch 5: Fix -Wformat warnings in leaksoup.cpp related to 32-bit vs. 64-bit sizes. r=khuey 2014-02-26 13:36:36 -08:00
L. David Baron
08c61d8112 Bug 331743 patch 4: Fix -Wshadow warning in leaksoup.cpp. r=khuey 2014-02-26 13:36:36 -08:00
L. David Baron
b936bed6b6 Bug 331743 patch 3: Improve trace-malloc memory dumps and their handling on 64-bit. r=khuey
There are three categories of improvements:

 (1) using size_t* rather than unsigned long* (and "%zX" rather than
     "%lX"), to better support platforms where sizeof(long) !=
     sizeof(void*), such as Win64 (untested, though).  This is a
     non-issue for 64-bit Linux (where I tested) and Mac.

 (2) Using the correct amount of 0-padding when printing addresses to
     show how much memory space is being printed.  In other words, using
     "%016zX" on 64-bit platforms instead of "%08zX".  This change is
     cosmetic-only, though it makes the logs much more understandable.

 (3) [in leaksoup.cpp only] Fixing an occurrence of assuming that
     sizeof(int) == sizeof(void*).  This occurrence led to printing only
     the lower half of each word in the output, after doing a correct
     analysis of the memory graph.

This patch is patching three files:

 (A) nsTraceMalloc.cpp, which is the in-process Gecko trace-malloc code
     that generates the memory dumps.

 (B) adreader.cpp, which is shared utility code for reading such a
     memory dump (currently used only by leaksoup.cpp)

 (C) leaksoup.cpp, which reads in such a memory dump, performs a
     strongly connected components analysis of the memory graph, and
     writes it back out, HTML-ized, with the roots listed at the top.

A fourth file appears to need no modification since it only looks at the
stack part of the dump and not the contents of the memory:

 (D) diffbloatdump.pl, which diffs two bloat dumps and produces a stack
     tree showing the change in allocations between them
2014-02-26 13:36:36 -08:00
L. David Baron
2b5d6b3cfb Bug 976350 patch 2: Rename nsTraceRefcntImpl to nsTraceRefcnt. r=bsmedberg
Now that bug 975295 removed the obsolete wrapper class, we can rename
nsTraceRefcntImpl back to its correct pre-XPCOM-glue name,
nsTraceRefcnt.

The best part is that the one place where indentation should have needed
fixing, nsTraceRefcnt::DemangleSymbol, never had its indentation fixed
for the previous renaming.

--HG--
rename : xpcom/base/nsTraceRefcntImpl.cpp => xpcom/base/nsTraceRefcnt.cpp
rename : xpcom/base/nsTraceRefcntImpl.h => xpcom/base/nsTraceRefcnt.h
2014-02-26 13:36:36 -08:00
L. David Baron
4f04bcdc57 Bug 976350 patch 1: Move the contents of nsTraceRefcnt.h into nsISupportsImpl.h. r=bsmedberg
This makes sense since the file no longer contains anything with the
nsTraceRefcnt name in it, and it will allow renaming nsTraceRefcntImpl
back to nsTraceRefcnt.
2014-02-26 13:36:35 -08:00
L. David Baron
aefed2ae72 Bug 975741 patch 2: Remove checks of nsStyleDisplay::mChildPerspective.GetCoordValue() > 0 because it's now always greater than 0. r=mattwoodrow
Now that the first patch in this bug changed things so that 'none' is
reliably stored as eStyleUnit_None (rather than being stored as a 0
length when it comes from the initial value), we know mChildPerspective
is always > 0 when it is eStyleUnit_Coord, and there's no point making
the additional check.
2014-02-26 13:36:35 -08:00
Ryan VanderMeulen
8c2f507822 Merge b2g-inbound to m-c. 2014-02-26 16:35:43 -05:00
Ryan VanderMeulen
43c39149c2 Merge fx-team to m-c. 2014-02-26 16:25:05 -05:00
Ryan VanderMeulen
dab428d7b4 Merge inbound to m-c. 2014-02-26 16:16:11 -05:00
Ryan VanderMeulen
6e2138ee8a Backed out 6 changesets (bug 969218) for bustage. DONTBUILD
Backed out changeset 86356906ecf0 (bug 969218)
Backed out changeset 46fa16a18c27 (bug 969218)
Backed out changeset 75219ceb5175 (bug 969218)
Backed out changeset b9f4ba525eec (bug 969218)
Backed out changeset 323c1329614b (bug 969218)
Backed out changeset e0fa4e0eee36 (bug 969218)
2014-02-26 14:27:54 -05:00
Daniel Holbert
e68084f976 (no bug) insert space before paren in 'switch(' and 'while(' in nsRuleNode.cpp. whitespace-only, no review, DONTBUILD 2014-02-26 11:10:50 -08:00
Szu-Yu Chen [:aknow]
3844dff7fd Bug 969218 - Part 6: ipc r=khuey 2014-02-26 11:03:56 -08:00
Szu-Yu Chen [:aknow]
c1a2d973df Bug 969218 - Part 5: gonk provider r=htsai 2014-02-26 11:03:56 -08:00
Szu-Yu Chen [:aknow]
7e1749f946 Bug 969218 - Part 4: dom r=khuey 2014-02-26 11:03:56 -08:00
Szu-Yu Chen [:aknow]
2aa08d0fca Bug 969218 - Part 3: Internal interface r=htsai 2014-02-26 11:03:56 -08:00
Szu-Yu Chen [:aknow]
ff207a0e1e Bug 969218 - Part 2: Modify tests r=htsai 2014-02-26 11:03:55 -08:00
Szu-Yu Chen [:aknow]
977d5a334e Bug 969218 - Part 1: Use promise for dial and dialEmergency - webidl. r=hsinyi 2014-02-26 11:03:55 -08:00
B2G Bumper Bot
de25930271 Bumping manifests a=b2g-bump 2014-02-26 10:56:11 -08:00
B2G Bumper Bot
90c2d790ac Bumping gaia.json for 3 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/8bb0cf53956e
Author: Mason Chang <mchang@mozilla.com>
Desc: Revert "Merge pull request #16647 from changm/bug975811"

This reverts commit 89950a14ec912d78f44345bd143fab1e0da23804, reversing
changes made to ff53e9a2cf3fb0d65b37831fb5bab6286a9f5d9a.

========

https://hg.mozilla.org/integration/gaia-central/rev/7f00444fe49c
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Merge pull request #16656 from Rik/telephony-promise-969280

Bug 969280 - We should support old and new (promise) telephony API r=etienne

========

https://hg.mozilla.org/integration/gaia-central/rev/822886ec78e8
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Bug 969280 - We should support old and new (promise) telephony API
2014-02-26 10:50:21 -08:00
B2G Bumper Bot
3e7854a552 Bumping manifests a=b2g-bump 2014-02-26 10:46:23 -08:00
B2G Bumper Bot
aa7a50026a Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/e88fea50cbf4
Author: Mason Chang <mason@masonchang.com>
Desc: Merge pull request #16647 from changm/bug975811

Bug 975811. Background position of homescreen corrected. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/796d7ff5022b
Author: Mason Chang <mchang@mozilla.com>
Desc: Bug 975811. Background position of homescreen corrected
2014-02-26 10:40:26 -08:00
Chris AtLee
9e30b07a35 Bug 974082: add libxml2 to emulator/emulator-ics configs to normalize mock package lists. r=RyanVM 2014-02-26 12:49:02 -05:00
Andrea Marchesini
e87af597d7 Bug 976311 - DataStore checks if the messages are for itself, r=ehsan 2014-02-26 17:38:38 +00:00
Andrea Marchesini
7d27eb0477 Bug 974270 - Fixed b2g datastore mochitest failure - undefined testStoreGet() method., r=ehsan 2014-02-26 17:36:40 +00:00
B2G Bumper Bot
3cebbe7efe Bumping manifests a=b2g-bump 2014-02-26 09:36:09 -08:00
B2G Bumper Bot
136b86a561 Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/ae7609835777
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #16490 from etiennesegonzac/bug-946809-ignore-multitouch-in-edge-swipe-detector

Bug 946809 - Ignore multitouch events in the edge swipe detector. r=vingtetun

========

https://hg.mozilla.org/integration/gaia-central/rev/180fb7e6c91c
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Bug 946809 - Ignore multitouch events in the edge swipe detector.

========

https://hg.mozilla.org/integration/gaia-central/rev/7d14cb0ff28a
Author: Zac <zcampbell@mozilla.com>
Desc: Merge pull request #16668 from viorelaioia/bug-977052

Intermittent in test_settings_from_message

========

https://hg.mozilla.org/integration/gaia-central/rev/37a8fb62856e
Author: Viorela Ioia <viorelaioia@gmail.com>
Desc: intermittent in test_settings_from_message
2014-02-26 09:30:21 -08:00
Ed Morley
d2c87d8647 Bug 976892 - Update mach mercurial-setup to use qimportbz from it's new home in version-control-tools; r=gps
qimportbz is now pulled from its new canonical home. The old location can
be cleaned if the user agrees to it. The new location is updated in the
hgrc.

DONTBUILD (NPOTB)
2014-02-26 17:28:09 +00:00
David Burns
3485871e32 Bug 976831: Remove unused getStatus method from Marionette; r=mdas 2014-02-26 17:06:24 +00:00
B2G Bumper Bot
d3e13f2fb3 Bumping manifests a=b2g-bump 2014-02-26 09:06:04 -08:00