Randell Jesup
9c505baf27
Bug 1030372: use explicit runnable and Release for ReadBlob to avoid wrong-thread release assert r=bsmedberg relanding on a CLOSED TREE
...
--HG--
extra : amend_source : 4351ac6c3a17885cd5a24d19c080ff8aa610de3f
2015-01-11 00:28:34 -05:00
Tom Schuster
967d0d250a
Backout changeset b4ebefd0f7e3:a8044fd506db Bug 1117607, Bug 1118087, Bug 1118092, Bug 1118105, Bug 1030372, Bug 1079627 on CLOSED TREE
2015-01-11 20:43:32 +01:00
Randell Jesup
0ef23256a4
Bug 1030372: use explicit runnable and Release for ReadBlob to avoid wrong-thread release assert r=bsmedberg
2015-01-11 00:28:34 -05:00
Masatoshi Kimura
bf312ad056
Bug 1120062 - Part 1: Remove most Nullptr.h includes. r=waldo
2015-01-11 11:34:52 +09:00
Chris Peterson
9e23388ca8
Bug 1118076 - Remove MOZ_THIS_IN_INITIALIZER_LIST. r=Waldo
2015-01-06 21:39:46 -08:00
James Willcox
352dabf6d6
bug 1118552 - fix gcc4.9 warnings on Android r=glandium
2015-01-06 22:20:46 -05:00
Byron Campen [:bwc]
8e57d65201
Bug 1112682: Prefer hardware codecs. r=jesup
2015-01-02 11:51:00 -08:00
Ehsan Akhgari
4354953b4f
Bug 1118486 - Part 1: Use = delete
instead of MOZ_DELETE directly; r=Waldo
...
Most of this patch (with the exception of dom/bindings/Codegen.py) was
generated by the following bash script:
#!/bin/bash
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "*/.git*" \
! -wholename "obj-*" \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-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 MOZ_DELETE '= delete'
2015-01-08 23:19:05 -05:00
Ehsan Akhgari
02203cdfb4
Bug 1119267 - Mark virtual overridden functions as MOZ_OVERRIDE in media; r=jesup
2015-01-08 23:10:52 -05:00
Chris Pearce
7ba4d8b1c1
Bug 1111391 - Enable keyMessages to be sent before create/load session promise is resolved. r=jwwang
2015-01-09 14:30:07 +13:00
Wes Kocher
f88bfbf94c
Merge mozilla-inbound to mozilla-central a=merge
2015-01-08 17:08:12 -08:00
Carsten "Tomcat" Book
dff961fa6a
Merge mozilla-central to b2g-inbound
2015-01-08 15:44:18 +01:00
Ethan Lin
3cf7829b11
Bug 1118698 - Add namespace for automic functions to prevent redefine error. r=ajones
2015-01-07 03:41:00 -05:00
Botond Ballo
f14a262ef0
Bug 1073003 - Disable -Wattribute warnings in media/webrtc/signaling. r=jesup
...
--HG--
extra : rebase_source : 7ed91b6452409799a66b00b34d9ff5e812f591c8
2014-12-19 12:08:08 -05:00
Botond Ballo
24acf4aba0
Bug 1073003 - Fix -Wsign-compare warnings. r=ehsan
...
--HG--
extra : rebase_source : c04b9b1a886562cda4f59af1d194231138e30be7
2014-12-17 16:50:32 -05:00
Botond Ballo
86b8e38244
Bug 1073003 - Fix -Wformat warnings. r=jesup
...
--HG--
extra : rebase_source : 3ffac66132efa04908834567f226508ad65b1827
2014-12-17 16:49:50 -05:00
Botond Ballo
edd363abd6
Bug 1073003 - Fix more -Wunused-variable and -Wunused-but-set-variable warnings. r=ehsan
...
--HG--
extra : rebase_source : bb768dd07c19dc39994d5cca6e0f59048d12130a
2014-12-17 18:05:28 -05:00
Botond Ballo
c97b750cc0
Bug 1073003 - Fix warnings about macro redefinitions by renaming macros. r=ehsan
...
--HG--
extra : rebase_source : 7d4247178a992af245af111efeeada305f805ef2
2014-12-17 16:48:41 -05:00
Botond Ballo
36d6e73f78
Bug 1073003 - Fix more -Wreorder warnings. r=ehsan
...
--HG--
extra : rebase_source : e80a449d7ba32aefd67a13874b91b2fccc4356e3
2014-12-17 16:46:51 -05:00
Bobby Holley
c69456ab40
Bug 1064128 - Implement support for timestampOffset in segments mode. r=k17e,r=cajbir
2015-01-07 15:58:55 -08:00
Ryan VanderMeulen
a11c606b18
Bug 934984 - Disable the /GL flag when compiling libvpx asm files to avoid MSVC bustage. r=ted
2015-01-08 08:23:00 -05:00
Brad Lassey
33ab8e9b66
bug 1118554 - make android's stdcxx work r=glandium
2015-01-06 23:34:31 -05:00
Ehsan Akhgari
699da75d0b
Bug 1118432 - Mark virtual overridden functions as MOZ_OVERRIDE in WebRTC; r=jesup
2015-01-06 23:33:52 -05:00
Chris Pearce
2f391988bb
Bug 1118593 - Disable MoofParser for encrypted streams. r=kentuckyfriedtakahe
2015-01-07 17:09:27 +13:00
Ralph Giles
fd23fde9eb
Bug 1111328 - Add missing include. r=jya
...
Fixes problems with non-unified builds.
2015-01-05 13:20:00 -08:00
Ehsan Akhgari
a41280816e
Bug 1116622 - Give TemporaryRef a take() method semantically equivalent to already_AddRefed::take(); r=froydnj
...
This is in preparation of removing TemporaryRef. It should help make
already_AddRefed a drop-in replacement for it.
2015-01-05 11:32:37 -05:00
Timothy B. Terriberry
e4712d359b
Bug 1117571 - Check mode index in vorbis_packet_blocksize(), r=kinetik
2015-01-04 17:34:00 +01:00
Glenn Randers-Pehrson
4c80b736b4
Bug 1114360 - Update libpng to version 1.6.16. r=jmuizelaar
2014-12-23 06:44:00 +01:00
Bobby Holley
b6b5e959bb
Bug 1115749 - Assert that we hold the monitor at all the MP4Demuxer API entry points. r=rillian
...
MP4Demuxer accesses shared state (index, moofparser) in lots of shared helper
routines, so we should assume that it's not safe to touch the demuxer at all
without holding the lock (unless demonstrated otherwise). This stuff should
probably be redesigned, but that's a problem for another day.
2014-12-29 16:10:16 -08:00
Martin Thomson
82879d45c3
Bug 1052610 - Disabling non-PFS cipher suites, r=ekr
...
--HG--
extra : rebase_source : 05b724914c08ca3e9c0b0f50ebdb5ed151b72b98
2014-12-29 09:38:37 -08:00
Jean-Yves Avenard
a52d454032
Bug 1111328: Add H264 SPS NAL decoder part #2 (VUI and HDR). r=kentuckyfriedtakahe
2014-12-24 23:11:35 +11:00
Jean-Yves Avenard
c40872326d
Bug 1111328: Add H264 SPS NAL decoder. r=kentuckyfriedtakahe
2014-12-24 23:11:35 +11:00
Ehsan Akhgari
4045514658
Remove media/webrtc/trunk/webrtc/tools/e2e_quality/audio/perf, which seems to have randomly been added in bug 987979
...
DONTBUILD
--HG--
extra : amend_source : 1b3ff1e9a5b0eb721f5209e21187f433c24294fa
2014-12-23 21:25:50 -05:00
Randell Jesup
7cbc61a973
Bug 1109552: Fix incorrect scoped_ptr type (uint8_t array vs ptr) r=glandium
2014-12-23 18:16:02 -05:00
Carsten "Tomcat" Book
693c44368a
Backed out changeset 39853e6515eb (bug 1073003) for breaking B2G non-unified builds on a CLOSED TREE
2014-12-23 13:36:00 +01:00
Carsten "Tomcat" Book
ee357ede50
Backed out changeset a12d10d57fd5 (bug 1073003)
2014-12-23 13:35:18 +01:00
Carsten "Tomcat" Book
4d35b56fd1
Backed out changeset 07b42d1d60aa (bug 1073003)
2014-12-23 13:35:17 +01:00
Carsten "Tomcat" Book
6c63afac81
Backed out changeset d778ea49056a (bug 1073003)
2014-12-23 13:35:15 +01:00
Carsten "Tomcat" Book
c892ecf785
Backed out changeset 033bfc2c3483 (bug 1073003)
2014-12-23 13:35:13 +01:00
Carsten "Tomcat" Book
5df02ec579
Backed out changeset a0ef52a09f98 (bug 1073003)
2014-12-23 13:35:11 +01:00
Jean-Yves Avenard
0c7596a490
Bug 1113073: Add H264 3-bytes NAL size support. r=kentuckyfriedtakahe
2014-12-23 14:41:21 +11:00
Jean-Yves Avenard
d7f0a4602f
Bug 1113403: Make MP4Sample destructor virtual. r=kinetik
2014-12-23 14:40:29 +11:00
Jean-Yves Avenard
0dabc8a96c
Bug 1110534: Add AVC Annex B to AVCC format conversion utility. r=kentuckyfriedtakahe
...
Based on original code by Baptiste Coudurier extracted from FFmpeg's libavformat
2014-12-23 14:36:09 +11:00
Jean-Yves Avenard
7341bcdb6e
Bug 1110534: Use more accurate names in MP4Sample and Annex B utility functions. r=kentuckyfriedtakahe
2014-12-23 14:36:09 +11:00
Jean-Yves Avenard
c430fe390c
Bug 1110534: Retrieve SPS and PPS from AVCC stream when necessary. r=kentuckyfriedtakahe
...
In avc3 or annex B stream, the AVCC extradata doesn't always contain the SPS and PPS required to
decode the first frame. Add method to extract SPS and PPS and construct an AVCC extradata.
2014-12-23 14:36:09 +11:00
Jean-Yves Avenard
8f57ec0db8
Bug 1110534: Simplify MP4 extradata handling. r=kentuckyfriedtakahe
2014-12-23 14:36:09 +11:00
Botond Ballo
cd4ee48a5a
Bug 1073003 - Disable -Wattribute warnings in media/webrtc/signaling. r=jesup
...
--HG--
extra : rebase_source : 94f3143aa82f6dee9042101b2aa7ca123418490a
extra : source : 63c0c77d853e1aa286fb084ba7bd814ee894c42b
2014-12-19 12:08:08 -05:00
Botond Ballo
ee547e466a
Bug 1073003 - Fix -Wsign-compare warnings. r=ehsan
...
--HG--
extra : rebase_source : d1b67f0a11461b5dcd2b70626a2bf9cbb21bd82a
extra : source : c94e789de3e6ec87e9d605a98ca95fd5009ff126
2014-12-17 16:50:32 -05:00
Botond Ballo
ad3d46565a
Bug 1073003 - Fix -Wformat warnings. r=jesup
...
--HG--
extra : rebase_source : 3b734679ac32c1d958cb73e169cf4fd0a1486830
extra : source : 528aa87b4f0d174b84765a4b6c2e8e2fee2d493b
2014-12-17 16:49:50 -05:00
Botond Ballo
8eab762580
Bug 1073003 - Fix more -Wunused-variable and -Wunused-but-set-variable warnings. r=ehsan
...
--HG--
extra : rebase_source : 0a6c783a6428ca0dc25090e21a61b90c192dd252
extra : source : 8ab86311e17416689d176dae5c577a2c6df89b54
2014-12-17 18:05:28 -05:00
Botond Ballo
dbeca8b842
Bug 1073003 - Fix warnings about macro redefinitions by renaming macros. r=ehsan
...
--HG--
extra : rebase_source : b0f80299a702ea1952de52e21f175b738dd2f752
extra : source : 119e8a1f1683aee07c44492c8861ca85e4a2388d
2014-12-17 16:48:41 -05:00
Botond Ballo
5a8c6cf169
Bug 1073003 - Fix more -Wreorder warnings. r=ehsan
...
--HG--
extra : rebase_source : 9185deb19ec52daa518bdf93b27893c4c2167258
extra : source : 21930ebe7c715c45db065809981ae181b49c442a
2014-12-17 16:46:51 -05:00
Bobby Holley
6d0ec2b9a3
Bug 1114383 - Assert that access to mMoofs goes through a monitor. r=k17e
2014-12-21 22:04:36 -08:00
Chris Peterson
5d0250ee51
Bug 1113229 - webrtc/sdp tests: fix -Wconversion-null warning and mark FAIL_ON_WARNINGS. r=adr
2014-12-17 21:30:44 -08:00
Byron Campen [:bwc]
404d84f2d4
Bug 1016476 - Part 2: Test work. r=drno
2014-11-25 17:36:16 -08:00
Byron Campen [:bwc]
884d5704bd
Bug 1016476 - Part 1: Bundle support. r=mt
2014-11-21 18:03:24 -08:00
Byron Campen [:bwc]
5b4f44abc6
Bug 1111299: Make sure we don't prioritize random codecs. r=jesup
2014-12-18 16:05:12 -08:00
Byron Campen [:bwc]
41de67c504
Bug 1107307: Teach JsepSessionImpl to handle rtcp-fb:* r=drno
2014-12-04 09:26:59 -08:00
Chris Pearce
ee2a73fe1c
Bug 1109457 - Prevent potential for Join()ing a pointer held in free'd memory in gmp-clearkey. r=edwin
2014-12-19 09:55:05 +13:00
Chris Pearce
67369e80dd
Bug 1109457 - Use Contains instead of std.find to detect whether we have keys in gmp-clearkey, and don't overwrite old decryptors when we get a new key. r=edwin.
2014-12-19 09:55:00 +13:00
Chris Pearce
a23d2bdf73
Bug 1109457 - Add persistent session to our ClearKey CDM. r=edwin
2014-12-19 09:54:34 +13:00
Ehsan Akhgari
d40b227bc3
Bug 1109895 - Send the correct -m flags to clang-cl when building libvpx; r=jrmuizel
...
--HG--
extra : rebase_source : 2806ced531eb39e33b30337f1112e4efb3e179db
2014-12-18 10:31:46 -05:00
Alfredo Yang
833002460c
Bug 938034 - Enable gonk camera recording callback. r=roc
2014-12-18 01:00:00 -05:00
Ryan VanderMeulen
7acf8539fb
Backed out changesets 70428bb355a4 and a0ba2f134695 (bug 1109457) for EME failures and crashes on OSX 10.6.
2014-12-18 00:22:19 -05:00
Chris Pearce
91c26dceb7
Bug 1109457 - Use Contains instead of std.find to detect whether we have keys in gmp-clearkey, and don't overwrite old decryptors when we get a new key. r=edwin.
2014-12-18 16:16:20 +13:00
Chris Pearce
65cccb08b1
Bug 1109457 - Add persistent session to our ClearKey CDM. r=edwin
2014-12-18 16:16:13 +13:00
Ryan VanderMeulen
bf0212ce4f
Backed out changeset dc6994acf4e3 (bug 1109457) for EME test failures and crashes.
...
CLOSED TREE
2014-12-17 20:57:12 -05:00
Chris Pearce
ddd4b18d14
Bug 1109457 - Add persistent session to our ClearKey CDM. r=edwin
2014-12-18 13:23:27 +13:00
Jean-Yves Avenard
82b860da6b
Bug 1111311: Use 32 bits signed for storing CTS in order to properly calculate PTS. r=kentuckyfriedtakahe
2014-12-17 22:21:10 +11:00
Byron Campen [:bwc]
544114ca0f
Bug 1110976 - Part 2: Don't configure multiple recv codecs if we are the answerer. r=jesup
2014-12-12 14:33:12 -08:00
Byron Campen [:bwc]
8e54c7f088
Bug 1110976 - Part 1: Test case that demonstrates the underlying bug. r=jesup
2014-12-12 14:30:14 -08:00
Paul Adenot
f1241b66bf
Bug 1108455 - r=kinetik
2014-12-16 18:45:40 +01:00
Sotaro Ikeda
1247620b1d
Bug 1043558 - Use gralloc for WebRTC camera preview r=jesup,nical
2014-12-16 07:11:48 -08:00
Anthony Jones
3310881371
Bug 1110608 - Add CENC support to MoofParser; r=edwin
2014-12-16 18:10:46 +13:00
Anthony Jones
8fb4e80e99
Bug 1098126
- Fix build bustage; r=mattwoodrow
2014-12-16 18:10:46 +13:00
Anthony Jones
02faa200e5
Bug 1098126
- MoofParser fixes and disable for EME; r=mattwoodrow
2014-12-05 14:01:44 -08:00
Anthony Jones
92e8ac3174
Bug 1098126
- Add CENC support to MoofParser; r=edwin
2014-12-16 18:10:45 +13:00
Anthony Jones
d1939b42de
Bug 1098126
- MoofParser forced moof read; r=mattwoodrow
2014-12-16 18:10:45 +13:00
Anthony Jones
38ea3d4cfa
Bug 1098126
- Use MoofParser to read fragmented MP4 data; r=mattwoodrow
2014-12-16 18:10:45 +13:00
Anthony Jones
ed2c17e4a0
Bug 1098126
- Remove duplication in MP4 demuxer seek; r=mattwoodrow
2014-12-16 18:10:44 +13:00
Wes Kocher
129894fc0d
Backed out changeset 4dabf09c2e19 (bug 938034) for non-unified bustage on a CLOSED TREE
2014-12-15 14:16:45 -08:00
Alfredo Yang
f089a2fa04
Bug 938034 - Enable new gUM recording callback. r=roc
2014-12-15 01:01:00 -05:00
Jan-Ivar Bruaroey
1267c35d6d
Bug 1098314 - Ignore and warn on turns: and stuns: urls until we support TURN/STUN TLS. r=bwc
2014-11-17 22:18:49 -05:00
Carsten "Tomcat" Book
3034734290
Backed out changeset f3830d09ce0e (bug 1098126
) for bustage on a CLOSED TREE
2014-12-15 09:04:00 +01:00
Carsten "Tomcat" Book
c56f3e3222
Backed out changeset 3af0cab9d0de (bug 1098126
)
2014-12-15 09:03:12 +01:00
Carsten "Tomcat" Book
6df2459399
Backed out changeset 3ecd5b8c293a (bug 1098126
)
2014-12-15 09:03:10 +01:00
Carsten "Tomcat" Book
6822668b05
Backed out changeset 732d6e4e6bed (bug 1098126
)
2014-12-15 09:03:08 +01:00
Carsten "Tomcat" Book
0b38e775a5
Backed out changeset 7da16258c33b (bug 1098126
)
2014-12-15 09:03:06 +01:00
Nigel Babu
86a7ed283e
Backed out changeset cdf7d7507577 (bug 1110608) for non-unified build failure on CLOSED TREE
2014-12-15 12:43:40 +05:30
Anthony Jones
f1040951a5
Bug 1110608 - Add CENC support to MoofParser; r=edwin
2014-12-15 17:43:59 +13:00
Anthony Jones
e67eb4ca12
Bug 1098126
- MoofParser fixes and disable for EME; r=mattwoodrow
2014-12-05 14:01:44 -08:00
Anthony Jones
346dfff41b
Bug 1098126
- Add CENC support to MoofParser; r=edwin
2014-12-15 17:43:59 +13:00
Anthony Jones
9861fa319e
Bug 1098126
- MoofParser forced moof read; r=mattwoodrow
2014-12-15 17:43:59 +13:00
Anthony Jones
4c94759c2a
Bug 1098126
- Use MoofParser to read fragmented MP4 data; r=mattwoodrow
2014-12-15 17:43:58 +13:00
Anthony Jones
6b03fa4598
Bug 1098126
- Remove duplication in MP4 demuxer seek; r=mattwoodrow
2014-12-15 17:43:58 +13:00
Chris Pearce
5b926c8fae
Bug 1110497 - Reject promises for clearkey updates with invalid license data. r=edwin
2014-12-15 14:24:30 +13:00
Jean-Yves Avenard
b8eb3e2c1f
Bug 1109987: Use signed timestamps in mp4 demuxer. r=k17e
2014-12-15 10:07:39 +11:00
Jan-Ivar Bruaroey
4760e3d471
Bug 1110478 - Remove obsolete peerConnectionImpl.connectDataConnection. r=smaug, r=jesup
2014-12-12 13:00:42 -05:00
Byron Campen [:bwc]
7a93f4250e
Bug 1109160: Report Gecko version in SDP. r=abr
2014-12-10 15:17:55 -08:00
Matthew Gregan
7867c261cc
Bug 1109802 - Release IAudioStreamVolume after use in libcubeb's WASAPI backend. r=padenot
2014-12-11 12:17:19 +13:00
Phil Ringnalda
f6af08fc15
Back out 5 changesets (bug 1098126
) for failing like they did on try
...
Backed out changeset 81bdd9d3aa25 (bug 1098126
)
Backed out changeset 4b8bb6132ae1 (bug 1098126
)
Backed out changeset 4e7a358bdd20 (bug 1098126
)
Backed out changeset 36f3e9c34b70 (bug 1098126
)
Backed out changeset bd8b11d1e93b (bug 1098126
)
2014-12-10 20:01:08 -08:00
Anthony Jones
4117cec7b0
Bug 1098126
- Disable MoofParser for EME; r=rillian
2014-12-05 14:01:44 -08:00
Anthony Jones
03b7ea76e0
Bug 1098126
- Add CENC support to MoofParser; r=edwin
2014-12-11 15:29:38 +13:00
Anthony Jones
39d524a138
Bug 1098126
- MoofParser forced moof read; r=mattwoodrow
2014-12-11 15:29:37 +13:00
Anthony Jones
a48fab1845
Bug 1098126
- Use MoofParser to read fragmented MP4 data; r=mattwoodrow
2014-12-11 15:29:37 +13:00
Anthony Jones
87edf66046
Bug 1098126
- Remove duplication in MP4 demuxer seek; r=mattwoodrow
2014-12-11 15:29:37 +13:00
Ehsan Akhgari
fd1c6fd698
Bug 1109841 - Remove the C11 _Static_assert which checks a runtime condition; r=abr
...
clang-cl enables C11 and therefore complains on this code:
static_assert expression is not an integral constant expression.
2014-12-10 17:46:42 -05:00
Byron Campen [:bwc]
d55e0a2714
Bug 1109130: Give MSVC2012 a hint about what these aggregate initializers mean. r=jesup
2014-12-09 20:16:28 -08:00
Ehsan Akhgari
2ce0732625
Bug 1109683 - Compare the first character of start_time and stop_time instead of the array itself; r=abr
...
Caught by clang ToT warning:
comparison of array 'sdp_p->timespec_p->start_time' equal to a null pointer is always false
2014-12-10 11:27:13 -05:00
Jean-Yves Avenard
9ecccae28a
Bug 1107339 - Add VP6F and extend MP3 support in libstagefright. r=k17e
2014-12-04 11:54:06 -08:00
Chris Pearce
b392b7de2a
Bug 1077159 - Use macros for GMP API names, to make them implicitly versionable. r=jesup
2014-12-10 09:35:26 +13:00
Byron Campen [:bwc]
4d39bfe617
Bug 1091242 - Part 8: When running on tbpl, disable parts of ice_unittest that rely on external network. r=drno
2014-10-31 14:51:00 -07:00
Byron Campen [:bwc]
9f12762413
Bug 1091242 - Part 7: Wiring the build system together. r=jesup, r=ted
2014-11-17 17:03:28 -08:00
Byron Campen [:bwc]
3af28ea884
Bug 1091242 - Part 6: Wiring the new JSEP handler code in. See https://github.com/unicorn-wg/gecko-dev/tree/multistream_rebase for more history. r=jesup, r=smaug
2014-11-19 16:16:29 -08:00
Byron Campen [:bwc]
43300ec021
Bug 1091242 - Part 5.3: Use modern integral types in sipcc code. r=ehugg
2014-11-14 17:38:00 -08:00
Byron Campen [:bwc]
3a2e44d3e2
Bug 1091242 - Part 5.2: Functionality changes to sipcc sdp code. r=ehugg r=pkerr
2014-11-14 17:37:40 -08:00
Byron Campen [:bwc]
1ad35746ef
Bug 1091242 - Part 5.1: Whitespace-only modifications to sipcc sdp code. r=ehugg
2014-11-14 17:37:26 -08:00
Byron Campen [:bwc]
6f209817c8
Bug 1091242 - Part 4: Remove most of sipcc, and move just the sdp stuff into a new location. r=ehugg
2014-11-14 17:36:59 -08:00
Byron Campen [:bwc]
e2bbde0e5f
Bug 1091242 - Part 2: New JSEP handling code. See https://github.com/unicorn-wg/gecko-dev/tree/multistream_rebase for more history. r=ehugg, r=jesup
2014-11-19 16:12:08 -08:00
Byron Campen [:bwc]
3c30078b23
Bug 1091242 - Part 1: SDP wrapper code around sipcc sdp impl. See https://github.com/unicorn-wg/gecko-dev/tree/multistream_rebase for more history. r=jesup
2014-11-19 16:11:06 -08:00
Phil Ringnalda
5fe54ea0fd
Backed out 10 changesets (bug 1091242) for Android/b2g non-unified build bustage
...
CLOSED TREE
Backed out changeset 7f72b55c5de7 (bug 1091242)
Backed out changeset f1501aa24397 (bug 1091242)
Backed out changeset 7fde5994aee5 (bug 1091242)
Backed out changeset 59b415714087 (bug 1091242)
Backed out changeset dadb65fedc08 (bug 1091242)
Backed out changeset 21be81424e4e (bug 1091242)
Backed out changeset 498fb1dafba5 (bug 1091242)
Backed out changeset 8d0653eb85ab (bug 1091242)
Backed out changeset c82d484e135a (bug 1091242)
Backed out changeset 3e0c8932f1b1 (bug 1091242)
2014-12-08 20:53:07 -08:00
Wes Kocher
126b4f108e
Backed out changeset bf25101e66cf (bug 1095098) for build bustage
2014-12-08 16:27:12 -08:00
Denis Volk
0f94bddfc8
Bug 1095098: move do_QueryObject templates into their own header r=froydnj
2014-11-20 12:20:10 +01:00
Byron Campen [:bwc]
a818fd6977
Bug 1091242 - Part 8: When running on tbpl, disable parts of ice_unittest that rely on external network. r=drno
2014-10-31 14:51:00 -07:00
Byron Campen [:bwc]
c29c3be2eb
Bug 1091242 - Part 7: Wiring the build system together. r=jesup, r=ted
2014-11-17 17:03:28 -08:00
Byron Campen [:bwc]
bb404e8254
Bug 1091242 - Part 6: Wiring the new JSEP handler code in. See https://github.com/unicorn-wg/gecko-dev/tree/multistream_rebase for more history. r=jesup, r=smaug
2014-11-19 16:16:29 -08:00
Byron Campen [:bwc]
9d88a2063b
Bug 1091242 - Part 5.3: Use modern integral types in sipcc code. r=ehugg
2014-11-14 17:38:00 -08:00
Byron Campen [:bwc]
97c7d70639
Bug 1091242 - Part 5.2: Functionality changes to sipcc sdp code. r=ehugg r=pkerr
2014-11-14 17:37:40 -08:00
Byron Campen [:bwc]
4dce0f2d18
Bug 1091242 - Part 5.1: Whitespace-only modifications to sipcc sdp code. r=ehugg
2014-11-14 17:37:26 -08:00
Byron Campen [:bwc]
32e7bd5898
Bug 1091242 - Part 4: Remove most of sipcc, and move just the sdp stuff into a new location. r=ehugg
2014-11-14 17:36:59 -08:00
Byron Campen [:bwc]
8fc14d7513
Bug 1091242 - Part 2: New JSEP handling code. See https://github.com/unicorn-wg/gecko-dev/tree/multistream_rebase for more history. r=ehugg, r=jesup
2014-11-19 16:12:08 -08:00
Byron Campen [:bwc]
37ac84c860
Bug 1091242 - Part 1: SDP wrapper code around sipcc sdp impl. See https://github.com/unicorn-wg/gecko-dev/tree/multistream_rebase for more history. r=jesup
2014-11-19 16:11:06 -08:00
Jan-Ivar Bruaroey
afad2eeeee
Bug 1053407
- return DOMError rather than string in peerConnection callbacks. r=bz, r=jesup
2014-11-26 15:26:37 -05:00
Ryan VanderMeulen
ba53ff1161
Backed out 5 changesets (bug 1098126
) for Windows web-platform-test failures.
...
Backed out changeset 7cf7a6ea28c2 (bug 1098126
)
Backed out changeset 21aab02fb41c (bug 1098126
)
Backed out changeset 55dba2167b36 (bug 1098126
)
Backed out changeset 73c2707c4f60 (bug 1098126
)
Backed out changeset 4d6a52c5fb75 (bug 1098126
)
2014-12-05 20:09:54 -05:00
Anthony Jones
bf236b5978
Bug 1098126
- Disable MoofParser for EME; r=rillian
2014-12-05 14:17:23 -08:00
Anthony Jones
4a402212d8
Bug 1098126
- Add CENC support to MoofParser; r=edwin
2014-12-05 14:17:23 -08:00
Anthony Jones
e30fe94716
Bug 1098126
- MoofParser forced moof read; r=mattwoodrow
2014-12-05 14:17:23 -08:00
Anthony Jones
41972ef3e8
Bug 1098126
- Use MoofParser to read fragmented MP4 data; r=mattwoodrow
2014-12-05 14:17:23 -08:00
Anthony Jones
162732a26d
Bug 1098126
- Remove duplication in MP4 demuxer seek; r=mattwoodrow
2014-12-05 14:17:22 -08:00
Matthew Gregan
73ffa2d5f9
Bug 1105901 - Update cubeb from upstream to pick up compilation fix for glibc 2.20. r=padenot
...
--HG--
extra : rebase_source : cb04020b3c502f51e2411b1984bb42d8423d524b
2014-12-02 12:04:16 +13:00
Ralph Giles
a52484c104
Bug 1105858 - Bump libvpx for arm toolchain work-arounds. r=kinetik
...
Update our in-tree libvpx code to upstream master from September 25.
This includes a work-around added to skip neon intrinsics which
android toolchains fail to compile properly. See bug 1087096.
Results of running ./update.py --ndk ~/android/android-ndk-r9 --commit
587ff646f
2014-11-27 13:15:00 -08:00
Jean-Yves Avenard
e211d708fb
Bug 1105661
: MP4Sample: use proper delete[] operator. r=k17e
...
]
2014-11-27 21:09:16 +11:00
Jean-Yves Avenard
4e2434fee9
Bug 1101534 - Add MP4Sample copy constructor. r=k17e
2014-11-28 19:31:57 +11:00
Jan-Ivar Bruaroey
5beda2c015
Bug 1087528: make pc.id settable from chrome content. r=smaug, r=bwc
2014-11-20 14:43:02 -05:00
Matt Woodrow
cb9f6864db
Bug 1102647 - Accept 4k video sizes in MPEG4Extractor. r=ajones
2014-11-28 13:18:35 +13:00
Juan Gomez
59052ffb3b
Bug 1056337 - Work around toolchain issues with arm gcc 4.8 and opus. r=rillian
...
The androidabi-4.8 toolchain we'd liek to use for B2G ICS builds cannot
compile this section of the opus source. Force-disable optimizations
for the offending code in order to avoid the ICE.
2014-11-26 15:23:00 -08:00
Glenn Randers-Pehrson
2b1ce96921
Bug 1102523 - Update intree libpng to version 1.6.15. r=jmuizelaar
2014-11-26 05:42:00 +01:00
Trevor Saunders
1a013270b5
bug 1105074 - make more stuff final r=froydnj
2014-11-25 13:56:07 -05:00
Matt Woodrow
334bec207c
Bug 1102666 - Parse the edts block in MoofParser and offset composition time accordingly. r=ajones
2014-11-26 18:00:31 +13:00
Carsten "Tomcat" Book
1857927626
Backed out changeset 3947f817fc0a (bug 1102523) for breaking device b2g builds
2014-11-26 11:42:58 +01:00