Commit Graph

364 Commits

Author SHA1 Message Date
Ralph Giles
178bb65cbb Bug 790381 - Update libopus to 1.0.0 release. r=derf
Update files to match the opus-1.0.0 source release.
This corresponds to the spec implementation included
in RFC 6716.

Changes from the previous in-tree version (draft-12):

 - Add extern "C" protection on opus_multistream.h.
 - Align to sizeof(void*) instead of 4 bytes.
 - Copyright header updates for IETF publication.
 - Minor documentation and whitespace fixes.
2012-09-11 13:08:00 -07:00
Ralph Giles
39481f9737 Bug 790381 - Filter out makefile comments in opus update.sh. r=derf
We read *_sources.mk from the opus source tree to get a list
of needed files. As of the 1.0.0 release, those files have
comment lines, which the previous sed one-liner failed to
strip out.

The earlier version attempted this with 's/^#.8//', but
the whole file has been read into memory so we can
remove the line continuation escapes. However, the
newlines are still present, so we can replace this
with 's/#[^\n]*\(\n\)/\1\g' Which replaces everything
from a comment character to a newline with a newline.

We have to capture and subsitute the final newline instead
of using a literal \n because portable sed doesn't expand
that character on the right-hand side. GNU sed will,
however.
2012-09-12 16:59:04 -04:00
Chris Peterson
7d31c29958 Bug 785536 - Add PluginHost->GetPref() so platform decoders can query about:config prefs. r=doublec 2012-08-24 14:20:39 -07:00
Michael Wu
38a2fa1577 Bug 694484 - OpenSL backend for libcubeb, r=kinetik 2012-09-04 17:45:08 -03:00
Matthew Gregan
bc572b9151 Bug 778675 - Add some more logging to debug a cubeb_audiounit test failure. 2012-09-03 13:18:42 +12:00
Mike Hommey
0a643d0aea Bug 785622 - Only include .pp files corresponding to files we do build. r=khuey 2012-08-29 08:55:58 +02:00
Doug Turner
a7299f5ff2 Backout of bug 773423. Breaks linux clobber builds. r=dontbreakthebuild 2012-08-28 15:53:32 -07:00
Nathan Froyd
d108154297 Bug 786372 - eliminate libtheora -pedantic warning spew; r=derf 2012-08-28 15:25:17 -04:00
Randell Jesup
eed137b113 Bug 773423: use absolute paths for windows, different for make vs pymake r=ted 2012-07-13 15:48:07 -04:00
Nathan Froyd
b60c0f6f5c Bug 786372 - eliminate libvpx -pedantic warning spew; r=derf 2012-08-28 14:08:35 -04:00
Jan Beich
b2b006bd36 Bug 785638 - Use VP8 asm on ELF platforms by default. r=tterribe 2012-08-27 19:34:30 -04:00
Chris Peterson
b81a4e8ce1 Bug 784329 - Part 1: Add some OmxPlugin error logging. r=doublec 2012-08-22 18:29:58 -07:00
Ehsan Akhgari
2962d2eed1 Bug 579517 - Part 5: Add missing StandardInteger.h #includes where needed; r=bsmedberg
Landing on a CLOSED TREE
2012-08-08 17:08:17 -04:00
Ehsan Akhgari
217645f36e Bug 579517 - Part 4: Manually rewrite some parts of the code base not covered by the automated conversion; r=bsmedberg 2012-08-22 11:59:54 -04:00
Ehsan Akhgari
8c296bbcd4 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
Chris Double
d21fe1debb Bug 766395 - Enable hardware video decoding on Otoro B2G devices - r=edwin 2012-08-22 15:05:09 +12:00
Chris Double
f4318197d0 Bug 783927 - Handle zero length audio reads in stagefright backend to fix audio issues - r=cpeterson 2012-08-21 17:03:21 +12:00
Chris Double
1e247811fb Bug 782508 - Enable hardware decoder usage in Android libstagefright OMX plugin - r=cpeterson 2012-08-21 15:25:13 +12:00
Matthew Gregan
4cdc32cfb0 Bug 778675 - Add some logging to debug a cubeb_audiounit test failure. 2012-08-17 17:16:35 +12:00
Matthew Gregan
01a7681b0b Bug 761917 - Fail when stream restart is attempted on a dead PCM. r=doublec 2012-08-16 18:48:40 +12:00
Steven Lee
23dca1a089 Bug 779149 - [Dialer] Audio does not go through headset. r=mwu 2012-08-15 21:00:50 -04:00
Chris Double
3ac9021341 Bug 759945 - Part 5: Fix build errors on B2g -- r=cpearce
--HG--
extra : rebase_source : 87c56c813e0fbdd14e7f089830a1ca772c2be27e
2012-08-10 20:15:28 +12:00
Chris Double
d74b5f8a1c Bug 759945 - Part 3: Android OS headers and stub files for software decoding using libstagefright on Android - r=cpearce
--HG--
extra : rebase_source : 0f5b9fed7dac3040a98af6dcc324407c4f8a9772
2012-08-10 20:15:20 +12:00
Jan Beich
b2f160f9bb Bug 780432 - Explicitly pass CFLAGS for ALSA and PulseAudio. r=kinetik
--HG--
extra : rebase_source : 829d51b17390d44fa31b786408e632844ad12473
2012-08-08 10:27:44 +12:00
Jan Beich
9d6fc2f877 Bug 780432 - Add experimental --enable-pulseaudio configure option. r=kinetik,khuey
--HG--
extra : rebase_source : 9bf00787997d4ed465427e6570c5d937c1cb9ff4
2012-08-08 10:26:04 +12:00
Matthew Gregan
a0be501c49 Bug 779187 - Fix nsBufferedAudioStream's sample format selection for big endian machines. r=doublec 2012-08-06 15:26:41 +12:00
Mike Hommey
c1b35e7b2a Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
Matthew Gregan
47efc774e3 Bug 761274 - Work around buffer sizing bug in PulseAudio ALSA plugin. r=doublec 2012-07-16 17:15:24 -04:00
Brad Lassey
73ffa2b92a bug 776907 - quiet log spew from sydney audio on android r=kinetik 2012-07-24 09:56:24 -04:00
Andrew Benton
c575567a81 Bug 774060 - Compiling Firefox fails --with-system-libvpx when using libvpx 1.1 or later. r=tterribe 2012-07-24 11:57:47 +09:00
Randell Jesup
5588af7472 Bug 694817: Turn off webrtc's internal video renderer and protobuf (take 2) r=ted 2012-07-23 22:35:35 -04:00
Tim Abraldes
1d1133e080 bug 773454. Pass "-D_VARIADIC_MAX=10" to the compiler on Windows when building gtest. r=ted 2012-07-23 18:07:58 -07:00
Ralph Giles
e1858f41bb Bug 776661 - Initialize all of the bytes in the incoming data structure in silk_get_TOC; r=rillian
Fixes a warning under clang in dead code. Ehsan's original patch
converted to upstream-carrying style and applied by rillian.
2012-07-23 17:42:37 -04:00
Ed Morley
4e8827ab36 Merge last PGO-green changeset of mozilla-inbound to mozilla-central 2012-07-20 14:32:04 +01:00
Gervase Markham
69110ab2b1 Bug 774614 - Relicense Gonk/Gecko interface code to Apache License 2.0. 2012-07-20 10:10:44 +01:00
Matthew Gregan
61fede556b Bug 774454 - Fix PA detection hack in sydneyaudio ALSA backend. r=doublec
--HG--
extra : rebase_source : 30da2a2bb07ddc52a40417402a258e53ad2c87e5
2012-07-16 17:10:02 -04:00
Landry Breuil
382f40ff57 Bug 774598: Enable libvpx assembler on OpenBSD/x86(_64). r=derf 2012-07-17 13:24:06 +02:00
Timothy B. Terriberry
5192b8fc4b Bug 750447 - Wrap &rtcd->common->variance in IF_RTCD, r=cpearce 2012-07-17 09:21:47 +02:00
Max Stepin
87282e5332 Bug 759067 - Add an "APNG-aware app" flag. r=joe 2012-07-16 20:38:46 -04:00
Randell Jesup
390730bf91 Bug 772201: remove relative topsrcdir/srcdir/etc paths from gyp-sourced Makefiles - fixes symlinked objdirs for linux/mac r=ted 2012-07-12 18:14:14 -04:00
Mike Hommey
882d156651 Bug 763651 - Link the javascript engine against zlib. r=khuey 2012-07-12 08:30:59 +02:00
Randell Jesup
7401f0cd15 Bug 771981: Don't build webrtc except for Linux/Mac/Windows; don't check for chrome dlls on windows r=bsmedberg 2012-07-09 14:34:33 -04:00
Randell Jesup
8bee9cca2e Bug 771588: don't PGO asm_enc_offsets.c in libvpx - fix for MSVC2010 r=bsmedberg 2012-07-08 08:39:03 -04:00
Ryan VanderMeulen
ae29f43eb9 Bug 771403 - Update libjpeg-turbo to version 1.2.1. r=jlebar 2012-07-07 10:21:32 -04:00
Ryan VanderMeulen
7c722d69d7 Bug 771394 - Update libpng to version 1.5.11. r=jlebar 2012-07-07 10:21:31 -04:00
Randell Jesup
4797f62dc3 Bug 770230: Remove broken symlinks in webrtc to third_party/google-visualization-python DONTBUILD r=derf 2012-07-06 12:15:49 -04:00
Rafael Ávila de Espíndola
a5d97e17cc Bug 769772 - Print compiler version being used and drop checks for llvm-gcc and old versions of clang. r=khuey. 2012-07-03 08:27:18 -04:00
Randell Jesup
1a9b82b934 Bug 767250: Stop B2G/Gonk from trying to build Android.mk's in media/webrtc rs=mwu 2012-06-22 19:07:41 -04:00
Randell Jesup
8d9866664c Bug 749889 and Bug 688178: Make webrtc build without referencing third_party modules not in first tranche r=ted 2012-06-20 07:27:50 -04:00
Randell Jesup
435602cf1a Bug 757637: Rollup makesystem changes for webrtc r=khuey r=ted f=glandium 2012-06-20 07:27:43 -04:00