Isaac Aggrey
|
997db4d142
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
|
Michael Wu
|
d165dedcc9
|
Bug 694484 - OpenSL backend for libcubeb, r=kinetik
|
2012-09-04 17:45:08 -03:00 |
|
Paul Adenot
|
02ca3e551c
|
Bug 783953 - Rename MOZ_SAMPLE_TYPE_S16LE to MOZ_SAMPLE_TYPE_S16. r=kinetik,roc
|
2012-09-01 11:35:56 -04:00 |
|
Michael Wu
|
fba649bee9
|
Bug 786690 - Fix buffered streams on 16 bit outputs, r=kinetik
|
2012-08-31 10:18:46 -03:00 |
|
Ehsan Akhgari
|
0fd9123eac
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Paul Adenot
|
9670c86dc2
|
Bug 775319 - Determine the sample format at compile time for all media code. r=kinetik
|
2012-08-16 18:10:36 -07:00 |
|
Chris Jones
|
d0eff0d38b
|
Bug 776069: Disable remote audio for gonk. Sigh. r=kinetik
|
2012-08-18 16:14:37 -07:00 |
|
Chris Double
|
2e4abce09a
|
Backed out changeset dcb9299974a0 due to audio issues on android and b2g
--HG--
extra : rebase_source : 7e2b937487c3df9a40406eadf250e6596b89664f
|
2012-08-10 17:30:01 +12:00 |
|
Paul Adenot
|
0f3392ee19
|
Bug 775319 - Determine the sample format at compile time for all media code. r=kinetik
--HG--
extra : rebase_source : 4e8a2a4544895c9234ccd3992e1cafe82b8cf365
|
2012-08-07 16:01:02 -07:00 |
|
Matthew Gregan
|
e274db737a
|
Bug 779187 - Fix nsBufferedAudioStream's sample format selection for big endian machines. r=doublec
|
2012-08-06 15:26:41 +12:00 |
|
Matthew Gregan
|
9ae4b13c59
|
Bug 761274 - Work around buffer sizing bug in PulseAudio ALSA plugin. r=doublec
|
2012-07-16 17:15:24 -04:00 |
|
Matthew Gregan
|
0d47132a00
|
Bug 768333 - nsBufferedAudioStream::GetPositionInFrames miscompiled with Win32 PGO. r=cpearce
|
2012-07-16 17:21:04 -04:00 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Matthew Gregan
|
3873992ad2
|
Bug 695612 - Make nsRemoteAudioStream::Write block by waiting for acks from its parent. r=doublec
|
2012-07-02 16:59:43 +12:00 |
|
Matthew Gregan
|
3d22845c94
|
Bug 765524 - Register PrefChanged for CUBEB_LATENCY_MS. r=cpearce
|
2012-06-17 14:13:22 +12:00 |
|
Honza Bambas
|
41779e1714
|
Bug 720778 - Important threads should have a name for better debugability, r=bsmith, sr=bsmedberg+glandium
|
2012-06-12 19:06:20 +02:00 |
|
Matthew Gregan
|
14fc840b7b
|
Bug 757707 - Avoid holding nsBufferedAudioStream locks over calls into cubeb. r=roc
|
2012-06-01 16:45:01 +12:00 |
|
Gervase Markham
|
ca171eec44
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Matthew Gregan
|
b9b643548f
|
Bug 747793 - Use a ring buffer for audio buffered by nsBufferedAudioStream. Remove generic sample copy out with volume adjustment and replace with the lightly optimized version from nsNativeAudioStream. Add a fast path for the unity volume case. Bump cubeb's refill thread priority on Win32. r=cpearce
|
2012-05-03 16:48:54 +12:00 |
|
Matthew Gregan
|
c6d2de46e7
|
Bug 742154 - Work around media crashtest shutdown hang in cubeb_winmm. r=cpearce
|
2012-04-16 15:00:40 +12:00 |
|
Matthew Gregan
|
2e2a2c6663
|
Bug 723793 - Lazily initialize libcubeb on first use. r=roc
|
2012-04-16 15:00:12 +12:00 |
|
Robert O'Callahan
|
66ac4221f8
|
Bug 726891. Move rate/channels/format up to nsAudioStream and add inline getters. r=kinetik
|
2012-02-14 17:39:33 +13:00 |
|
Phil Ringnalda
|
9f50602120
|
Back out 7f81109133b5 (bug 725221), 135721f3720b (bug 726891), aef4ead175b4 (bug 726894) for orange
|
2012-02-13 22:31:22 -08:00 |
|
Robert O'Callahan
|
e9992c0076
|
Bug 726891. Move rate/channels/format up to nsAudioStream and add inline getters. r=kinetik
|
2012-02-14 17:39:33 +13:00 |
|
Matthew Gregan
|
37bc4473ce
|
Bug 723781 - Disable libcubeb for now.
--HG--
extra : rebase_source : 23c5d8448d65e2b18a10e61e079f44f261cdb71a
|
2012-02-03 21:31:43 +13:00 |
|
Phil Ringnalda
|
b7bac2bff8
|
Back out 60fc46d5b1ca (bug 723793) for Windows crashtest assertions
--HG--
extra : rebase_source : 6ca69e6016ed2c1699315b7a1f7d632903857a33
|
2012-02-02 23:33:08 -08:00 |
|
Matthew Gregan
|
bc3ac64aeb
|
Bug 723793 - Lazily initialize libcubeb on first use. r=roc
|
2012-02-03 16:01:40 +13:00 |
|
Matthew Gregan
|
ad7180d548
|
Bug 677138 - Integrate libcubeb into a buffered nsAudioStream API. r=cpearce
|
2012-01-13 10:20:36 +13:00 |
|
Matthew Gregan
|
a4cbf2b7f4
|
Bug 695986 - Fix bug 669556 on Android. r=cpearce
|
2011-11-22 13:17:38 +13:00 |
|
Matthew Gregan
|
e31e3f275e
|
Bug 693095 - Fix audio stream position estimation for remoted streams. Also resurrect audio thread wait removed in bug 669556 when using remoted audio streams. r=cpearce
|
2011-10-19 18:29:08 +13:00 |
|
Matthew Gregan
|
b91f76289a
|
Bug 690603 - Remove PR_TRUE/PR_FALSE from media code. r=doublec
|
2011-09-30 12:34:37 +13:00 |
|
Michael Wu
|
d8e503c38b
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
|
Matthew Gregan
|
bd4295528f
|
Bug 689432 - Disambiguate use of "samples" by introducing "frames" in a number of places. r=doublec
|
2011-09-27 16:31:18 +13:00 |
|
Martin Richard
|
398b044837
|
Bug 646333 - Make video constants consistently const T. r=cpearce
|
2011-09-15 07:39:50 +12:00 |
|
Ehsan Akhgari
|
8718a82f9d
|
Backout changesets 8e9aea2febed, 604544452285 and 9f150c4e1a48 because of Mac OS X 32-bit reftest orange
--HG--
extra : rebase_source : dbc017628f469e980efc8edfa26f8cce0ac7a956
|
2011-09-08 11:30:22 -04:00 |
|
Oleg Romashin
|
9427b94ce8
|
Bug 685258 - Pulse audio backend does not check provided playback and crashes r=derf
|
2011-09-08 12:51:25 +02:00 |
|
Matthew Gregan
|
f0cf2aa37d
|
Bug 679261 - sa_stream_get_min_write should return a result in bytes, not frames. r=cpearce
|
2011-08-16 15:47:45 +12:00 |
|
Matthew Gregan
|
6a2291960b
|
Bug 623444 - Remove unused non-blocking code from nsAudioStream. r=doublec
|
2011-08-08 12:51:04 +12:00 |
|
Chris Pearce
|
7ee610a982
|
Bug 664341 - Specify media decoder's thread stack size. r=kinetik
|
2011-07-27 15:28:03 +12:00 |
|
Ed Morley
|
af1d9c6c2b
|
Bug 661584 - Code cleanup, substitute more PR_(MAX|MIN|ABS|ROUNDUP) macro calls; r=roc,ted
|
2011-06-25 16:06:02 +02:00 |
|
Masayuki Nakano
|
85c451e309
|
Bug 660121 Remove all pref related methods from nsContentUtils r=roc
|
2011-05-29 08:42:57 +09:00 |
|
Masayuki Nakano
|
2b6aea130f
|
Bug 660401 Re-land the previous backed out patch
|
2011-05-28 16:03:00 +09:00 |
|
Masayuki Nakano
|
4dede19235
|
Bug 660401 temporary backout the patches for bug 659820 and bug 659821 for investigating talos regression
|
2011-05-28 13:50:19 +09:00 |
|
Masayuki Nakano
|
1f171993d1
|
Bug 659820 part.4 Replace nsContentUtils::Get(Char|String)Pref() with Preferences::GetC?String() r=roc
|
2011-05-27 13:53:03 +09:00 |
|
Chris Pearce
|
ecc5e88894
|
Bug 658177 - Fix potential deadlock in gVolumeScaleLock. r=roc
|
2011-05-19 21:00:39 +12:00 |
|
Chris Pearce
|
7245639e75
|
Bug 652475 - Add media.volume_scale pref to scale output volume without changing reported volume. r=roc
|
2011-05-19 09:12:25 +12:00 |
|
Paul ADENOT
|
fd896d6eec
|
Bug 620331 - Remote nsAudioStreamRemote::GetMinWriteSamples; r=kinetik
|
2011-05-15 12:53:55 +02:00 |
|
Paul ADENOT
|
2d28100bc1
|
Bug 654956 : Added private: statement in nsAudioStreamRemote. r=kinetik
|
2011-05-05 12:18:06 +02:00 |
|
Chris Jones
|
ed22df8f64
|
Bug 556214, parts 1 and 1.1: Rename Monitor to ReentrantMonitor and fix existing Monitor users. r=roc
--HG--
rename : xpcom/glue/Monitor.h => xpcom/glue/ReentrantMonitor.h
|
2011-04-29 14:21:57 -05:00 |
|
Landry Breuil
|
ca994ba2b8
|
Bug 651461 - Fix build failure in nsAudioStream.cpp due to conflicting types. r=roc
|
2011-04-22 01:16:48 +02:00 |
|