gecko-dev/dom/media/webaudio/blink
Julian Seward 7f3e3b8977 Bug 1232326 - Uninitialised value use in AudioBufferInPlaceScale. r=dminor.
--HG--
extra : rebase_source : 608cb061bb6da051dd781ff6fdbbdb5ec8e1cc6d
2015-12-16 17:36:21 +01:00
..
Biquad.cpp Bug 1228947 - Replace mfbt/Constants.h with math.h. r=roc 2015-11-27 20:49:55 -08:00
Biquad.h
DenormalDisabler.h Bug 1228947 - Replace mfbt/Constants.h with math.h. r=roc 2015-11-27 20:49:55 -08:00
DynamicsCompressor.cpp Bug 1229963 - use UniquePtr<T[]> instead of nsAutoArrayPtr<T> in dom/media/; r=cpearce 2015-12-02 18:07:59 -05:00
DynamicsCompressor.h Bug 1229963 - use UniquePtr<T[]> instead of nsAutoArrayPtr<T> in dom/media/; r=cpearce 2015-12-02 18:07:59 -05:00
DynamicsCompressorKernel.cpp Bug 1228947 - Replace mfbt/Constants.h with math.h. r=roc 2015-11-27 20:49:55 -08:00
DynamicsCompressorKernel.h Bug 1229963 - use UniquePtr<T[]> instead of nsAutoArrayPtr<T> in dom/media/; r=cpearce 2015-12-02 18:07:59 -05:00
FFTConvolver.cpp bug 1221836 return output pointer from FFTConvolver::process() to save a buffer copy r=padenot 2015-11-04 21:23:18 +13:00
FFTConvolver.h bug 1221836 return output pointer from FFTConvolver::process() to save a buffer copy r=padenot 2015-11-04 21:23:18 +13:00
HRTFDatabase.cpp Bug 1188745 - Rename nsTArray::SizeOfExcludingThis() as ShallowSizeOfExcludingThis(). r=froydnj. 2015-07-28 23:24:24 -07:00
HRTFDatabase.h
HRTFDatabaseLoader.cpp Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat 2015-10-18 01:24:48 -04:00
HRTFDatabaseLoader.h Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat 2015-10-18 01:24:48 -04:00
HRTFElevation.cpp bug 1221836 return output pointer from FFTConvolver::process() to save a buffer copy r=padenot 2015-11-04 21:23:18 +13:00
HRTFElevation.h
HRTFKernel.cpp Bug 926838 - [Part 4] Implement AlignedTArray for 32-byte alignment is required by openmax dl. Also modify callers. r=ehsan 2013-11-13 11:07:31 +08:00
HRTFKernel.h Bug 1182996 - Fix and add missing namespace comments. rs=ehsan 2015-07-13 08:25:42 -07:00
HRTFPanner.cpp bug 1221836 return output pointer from FFTConvolver::process() to save a buffer copy r=padenot 2015-11-04 21:23:18 +13:00
HRTFPanner.h Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat 2015-10-18 01:24:48 -04:00
IRC_Composite_C_R0195-incl.cpp
moz.build bug 1221833 remove now-unused direct convolver r=padenot 2015-11-04 09:21:45 +13:00
PeriodicWave.cpp Bug 1232326 - Uninitialised value use in AudioBufferInPlaceScale. r=dminor. 2015-12-16 17:36:21 +01:00
PeriodicWave.h Bug 1222405 - (part 3) Build band limited tables lazily r=padenot 2015-11-27 15:01:28 -05:00
README
Reverb.cpp bug 1221830 use WEBAUDIO_BLOCK_SIZE constant in Reverb methods r=padenot 2015-11-03 16:35:32 +13:00
Reverb.h bug 1221830 use WEBAUDIO_BLOCK_SIZE constant in Reverb methods r=padenot 2015-11-03 16:35:32 +13:00
ReverbAccumulationBuffer.cpp bug 1221836 return output pointer from FFTConvolver::process() to save a buffer copy r=padenot 2015-11-04 21:23:18 +13:00
ReverbAccumulationBuffer.h bug 1221836 return output pointer from FFTConvolver::process() to save a buffer copy r=padenot 2015-11-04 21:23:18 +13:00
ReverbConvolver.cpp bug 1224102 reduce the size of the final FFT convolution stage if possible r=padenot 2015-11-12 17:34:13 +13:00
ReverbConvolver.h bug 1221833 remove first two half-block-size convolver stages r=padenot 2015-11-04 09:02:57 +13:00
ReverbConvolverStage.cpp bug 1221836 return output pointer from FFTConvolver::process() to save a buffer copy r=padenot 2015-11-04 21:23:18 +13:00
ReverbConvolverStage.h bug 1221833 remove now-unused direct convolver r=padenot 2015-11-04 09:21:45 +13:00
ReverbInputBuffer.cpp
ReverbInputBuffer.h Bug 1188745 - Rename nsTArray::SizeOfExcludingThis() as ShallowSizeOfExcludingThis(). r=froydnj. 2015-07-28 23:24:24 -07:00
ZeroPole.cpp
ZeroPole.h

This directory contains the code originally borrowed from the Blink Web Audio
implementation.  We are forking the code here because in many cases the burden
of adopting Blink specific utilities is too large compared to the prospect of
importing upstream fixes by just copying newer versions of the code in the
future.

The process of borrowing code from Blink is as follows:

* Try to borrow utility classes only, and avoid borrowing code which depends
  too much on the Blink specific utilities.
* First, import the pristine files from the Blink repository before adding
  them to the build system, noting the SVN revision of Blink from which the
  original files were copied in the commit message.
* In a separate commit, add the imported source files to the build system,
  and apply the necessary changes to make it build successfully.
* Use the code in a separate commit.
* Never add headers as exported headers.  All headers should be included
  using the following convention: #include "blink/Header.h".
* Leave the imported code in the WebCore namespace, and import the needed
  names into the Mozilla code via `using'.
* Cherry-pick upsteam fixes manually when needed.  In case you fix a problem
  that is not Mozilla specific locally, try to upstream your changes into
  Blink.
* Ping ehsan for any questions.