Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
... | |||||
| * | | | | Export aom_config.h | trav90 | 2018-10-18 | -0/+7 | |
| | | | | | | | | | | | | | | | | | | | | Recent changes made this a public header, so it needs to be available to callers like AOMDecoder. | ||||
| * | | | | Update aom to commit id f5bdeac22930ff4c6b219be49c843db35970b918 | trav90 | 2018-10-18 | -31935/+56094 | |
| | | | | | |||||
| * | | | | [aom] Remove unused option | trav90 | 2018-10-17 | -3/+3 | |
| | | | | | |||||
| * | | | | [aom] Filter out CONFIG_EXT_PARTITION_TYPES | trav90 | 2018-10-17 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | aom_dsp_rtcd_defs.pl checks only whether this key is present in the config, not whether it is set to true or not. Our script sets CONFIG_FOO=no for disabled options, while the upstream build system omits them, resulting in extra symbol declarations the build will never define. Work around this by stripping the offending disabled config key if it is disabled. | ||||
| * | | | | Make aom_config.asm match upstream | trav90 | 2018-10-17 | -2/+2 | |
| | | | | | |||||
| * | | | | [aom] Add x86-win32-gcc config | trav90 | 2018-10-17 | -0/+2 | |
| | | | | | |||||
| * | | | | [av1] Clean up duplicate filenames check | trav90 | 2018-10-17 | -8/+7 | |
| | | | | | |||||
| * | | | | Add missing includes to FFmpegLibWrapper | trav90 | 2018-10-17 | -1/+3 | |
| | | | | | |||||
| * | | | | Fix typo (build bustage) | trav90 | 2018-10-17 | -1/+1 | |
| | | | | | |||||
| * | | | | Update aom to slightly newer commit ID | trav90 | 2018-10-17 | -31455/+52957 | |
| | | | | | |||||
| * | | | | Add av1 to MediaSource.isTypeSupported | trav90 | 2018-10-17 | -0/+24 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When av1 video playback is enabled, declare it as supported in the webm container in MediaSource.IsTypeSupported. Also support special mime types of the form video/webm; codecs=vp9.experimental.<git-commit-id> so test sites can verify playback support of particular encodings while the av1 bitstream is under development. | ||||
| * | | | | Remove aom_codec_stream_info_t sz field references | trav90 | 2018-10-17 | -2/+0 | |
| | | | | | | | | | | | | | | | | | | | | Upstream has removed the requirement to set this when initializing the stream_info struct. | ||||
| * | | | | Make AOMDecoder actually build | trav90 | 2018-10-15 | -3/+3 | |
| | | | | | |||||
| * | | | | [aom] Enable YASM | trav90 | 2018-10-15 | -0/+2 | |
| | | | | | |||||
| * | | | | [aom] Remove 32-bit Mac OS build config | trav90 | 2018-10-15 | -3/+0 | |
| | | | | | |||||
| * | | | | Add aom to the list of thirdparty code | trav90 | 2018-10-15 | -0/+1 | |
| | | | | | |||||
| * | | | | Add missing includes to WebMDemuxer | trav90 | 2018-10-15 | -0/+4 | |
| | | | | | |||||
| * | | | | Recognize AV1 in WebMDemuxer | trav90 | 2018-10-15 | -4/+25 | |
| | | | | | | | | | | | | | | | | | | | | Call AOMDecoder to handle AV1 video tracks from the WebM container. The new decoder is very similar to VPXDecoder so we can use parallel calls. This codec is still build-time conditional. | ||||
| * | | | | Add AOMDecoder to AgnosticDecoderModule | trav90 | 2018-10-15 | -1/+14 | |
| | | | | | |||||
| * | | | | Add AOMDecoder | trav90 | 2018-10-15 | -0/+314 | |
| | | | | | | | | | | | | | | | | | | | | Port the VPXDecoder interface to libaom which uses the same api with the names changed. | ||||
| * | | | | Add --enable-av1 configure switch | trav90 | 2018-10-15 | -0/+17 | |
| | | | | | |||||
| * | | | | Generate build description for libaom | trav90 | 2018-10-15 | -0/+15811 | |
| | | | | | |||||
| * | | | | Import aom library | trav90 | 2018-10-15 | -0/+470949 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the reference implementation for the Alliance for Open Media's av1 video code. The commit used was 4d668d7feb1f8abd809d1bca0418570a7f142a36. | ||||
| * | | | | Port the libvpx mozbuild generator to aom | trav90 | 2018-10-15 | -0/+516 | |
| |/ / / | | | | | | | | | | | | | | | | | | | | | This is a port of the libvpx scripts, themselves a port of Chromium's scripts to generate an external build description using hooks in the upstream configure and make scripts. The libaom library is a fork of libvpx so we can use a similar approach. The upstream source is located in $(topsrc_dir)/third_party/aom but the build description and any patches are under the media directory with the other codecs, similar to how zlib works. Config files and headers generated by the upstream build system are also under $(topsrc_dir)/media/libaom/. | ||||
* | | | | Merge pull request #847 from g4jc/debugspam | Moonchild | 2018-10-24 | -2/+6 | |
|\ \ \ \ | | | | | | | | | | | Don't use NS_ENSURE_SUCCESS where it causes useless logspam. | ||||
| * | | | | backport m-c bug 1333172 - Avoid 1100 warnings by replacing ↵ | Gaming4JC | 2018-10-23 | -1/+3 | |
| | | | | | | | | | | | | | | | | | | | | NS_ENSURE_SUCCESS in nsNetUtilInlines.h:180 | ||||
| * | | | | backport m-c bug 1333174 - Don't use NS_ENSURE_SUCCESS at nsIOService:793 | Gaming4JC | 2018-10-22 | -1/+3 | |
| | | | | | | | | | | | | | | | | | | | | Log spam fix. Suppresses 1,100 instances of NS_ENSURE_SUCCESS(rv, rv) failed with result 0x80520012 emitted from netwerk/base/nsIOService.cpp during linux64 debug testing. Backports [m-c 1333174](https://bugzilla.mozilla.org/show_bug.cgi?id=1333174). | ||||
* | | | | | Merge pull request #848 from adeshkp/search-btn-border | Moonchild | 2018-10-23 | -1/+0 | |
|\ \ \ \ \ | | | | | | | | | | | | | Show hidden left border of search button on about:newtab page | ||||
| * | | | | | Show hidden left border of search button on about:newtab page | adeshkp | 2018-10-23 | -1/+0 | |
| | | | | | | |||||
* | | | | | | Merge pull request #849 from adeshkp/basilisk-mac-build | Moonchild | 2018-10-23 | -1/+5 | |
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | Basilisk: Trivial fixes for Mac build | ||||
| * | | | | | Basilisk: Trivial fixes for Mac build | adeshkp | 2018-10-23 | -1/+5 | |
|/ / / / / | |||||
* | | | | | Code style improvements (no bug). | wolfbeast | 2018-10-23 | -9/+18 | |
| | | | | | |||||
* | | | | | Improve graph edge resolution code. | wolfbeast | 2018-10-23 | -17/+48 | |
| | | | | | | | | | | | | | | | | | | | | This is a follow-up to ca7ecd37c94e268972697a37eec4e46771c6e6f2 further improving the DiD resolution for CVE-2018-12386. | ||||
* | | | | | Merge pull request #844 from kn-yami/issue768 | Moonchild | 2018-10-23 | -0/+15 | |
|\ \ \ \ \ | |/ / / / |/| | | | | align Basilisk sidebar context menu behaviour with Pale Moon | ||||
| * | | | | align Basilisk sidebar context menu behaviour with Pale Moon | yami | 2018-10-20 | -0/+15 | |
| | |/ / | |/| | | |||||
* / | | | Fix reference to undefined property warnings in toolkit's browser.xml. | wolfbeast | 2018-10-21 | -4/+5 | |
|/ / / | |||||
* | | | Merge pull request #843 from kn-yami/issue516 | Moonchild | 2018-10-20 | -1/+1 | |
|\ \ \ | | | | | | | | | fix naming of getStartupChanges function | ||||
| * | | | fix naming of getStartupChanges function | yami | 2018-10-20 | -1/+1 | |
| | | | | |||||
* | | | | Merge pull request #839 from kn-yami/issue516 | Moonchild | 2018-10-20 | -163/+150 | |
|\| | | | | | | | | | | | remove named function syntax in several TychoAM components | ||||
| * | | | make style of amInstallTrigger.js more consistent | yami | 2018-10-04 | -1/+1 | |
| | | | | |||||
| * | | | remove named function syntax in LightweightThemeManager.jsm | yami | 2018-10-04 | -15/+15 | |
| | | | | |||||
| * | | | remove named function syntax in amWebInstallListener.js | yami | 2018-10-04 | -14/+14 | |
| | | | | |||||
| * | | | remove named function syntax in AddonManager.jsm | yami | 2018-10-04 | -116/+107 | |
| | | | | |||||
| * | | | remove named function syntax in addonManager.js | yami | 2018-10-04 | -17/+13 | |
| | | | | |||||
* | | | | Merge pull request #841 from JustOff/PR_css_grid_shrink_wrap | Moonchild | 2018-10-20 | -3/+353 | |
|\ \ \ \ | | | | | | | | | | | [css-grid] Don't shrink-wrap the inline size when we have an available size when measuring block size | ||||
| * | | | | [css-grid] Reftests for 88671bcc3633af5a5e34715518e0804ca892fac7 | JustOff | 2018-10-20 | -0/+348 | |
| | | | | | |||||
| * | | | | [css-grid] Don't shrink-wrap the inline size when we have an available size ↵ | JustOff | 2018-10-20 | -3/+5 | |
| | | | | | | | | | | | | | | | | | | | | when measuring block size | ||||
* | | | | | Merge pull request #838 from FranklinDM/notification-work | Moonchild | 2018-10-20 | -13/+0 | |
|\ \ \ \ \ | |/ / / / |/| | | | | Pale Moon: Remove message manager property from tabbrowser.xml | ||||
| * | | | | Remove superfluous message manager property | Franklin DM | 2018-10-20 | -13/+0 | |
|/ / / / | |||||
* | | | | Merge branch 'master' of https://github.com/MoonchildProductions/UXP | wolfbeast | 2018-10-19 | -5146/+2690 | |
|\ \ \ \ |