- Jan 25, 2023
-
-
Nico Grunbaum authored
Depends on D167858 Differential Revision: https://phabricator.services.mozilla.com/D167859
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D167858
-
- Nov 24, 2022
-
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D162818
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D162817
-
Nico Grunbaum authored
Depends on D150727 Differential Revision: https://phabricator.services.mozilla.com/D150728
-
Nico Grunbaum authored
Depends on D150726 Differential Revision: https://phabricator.services.mozilla.com/D150727
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150726
-
- Jul 07, 2022
-
-
David Shin authored
Differential Revision: https://phabricator.services.mozilla.com/D151296
-
- Jun 28, 2022
-
-
Nico Grunbaum authored
Depends on D150305 Differential Revision: https://phabricator.services.mozilla.com/D150312
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150305
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150304
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150303
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150302
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150301
-
- Jun 27, 2022
-
-
Iulian Moraru authored
Backed out changeset b2606be8a0cf (bug 1698699) Backed out changeset 97f5dde2d55e (bug 1698699) Backed out changeset edf2a2cb7803 (bug 1698699) Backed out changeset 0cc8a5a2d484 (bug 1698699) Backed out changeset 95c49f3cfc03 (bug 1698699) Backed out changeset 7016afe1f7f4 (bug 1698699) Backed out changeset f0da7c35e088 (bug 1698699)
-
Nico Grunbaum authored
Depends on D150305 Differential Revision: https://phabricator.services.mozilla.com/D150312
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150305
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150304
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150303
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150302
-
Nico Grunbaum authored
Differential Revision: https://phabricator.services.mozilla.com/D150301
-
- May 19, 2021
-
-
Yuan Tong authored
Fix for ConvertYCbCrToRGB32 to use full range convert functions for full range data. Some changes of libyuv are backported from newer version, to get support of full range BT.709 and BT.2020 colorspace. Differential Revision: https://phabricator.services.mozilla.com/D105937
-
- Jul 14, 2021
-
-
Nico Grunbaum authored
This patch changes the meaning of the target architecture to mean what it nominally should according to the gn documentation. I question as to if this could be upstreamed, but it may be worth a shot. If we do choose to pursue that. There are several other smaller patches that tackle individual instances, that this could be combined with. Differential Revision: https://phabricator.services.mozilla.com/D119707
-
- May 01, 2019
-
-
Dan Minor authored
Differential Revision: https://phabricator.services.mozilla.com/D27786 --HG-- extra : moz-landing-system : lando
-
- Apr 11, 2019
-
-
Jean-Yves Avenard authored
This is used by the basic compositor. Re-using existing logic, however as with other conversion it only handles limited 8 bits ranges (16-235) and to make things worse is rounded aggressively as the focus is on speed. Differential Revision: https://phabricator.services.mozilla.com/D25345 --HG-- extra : moz-landing-system : lando
-
- Nov 23, 2018
-
-
byron jones authored
Replace README_MOZILLA with moz.yaml, various fixups for update.py, and create a missing patch file from Bug 1491848. Differential Revision: https://phabricator.services.mozilla.com/D11891 --HG-- extra : moz-landing-system : lando
-
- Oct 03, 2018
-
-
Tom Ritter authored
This patch combines the following two upstream patches (which we are missing, because we're out of date): https://chromium.googlesource.com/libyuv/libyuv/+/d8680893ecfcffd952c7a5d0dc1878d1c486a4e4%5E%21/ https://chromium.googlesource.com/libyuv/libyuv/+/6e498475c749063485a046dfb24e1fa1a81cbedf%5E%21/ Differential Revision: https://phabricator.services.mozilla.com/D7218 --HG-- extra : moz-landing-system : lando
-
- Sep 27, 2018
-
-
Nathan Froyd authored
The NEON codepaths could work, but they'd have to be converted to MSVC-friendly assembly (or separate .asm files) first. Just disable building them for now.
-
- May 11, 2018
-
-
Randell Jesup authored
-
- May 10, 2018
-
-
Randell Jesup authored
--HG-- rename : media/libyuv/libyuv/util/convert.cc => media/libyuv/libyuv/util/yuvconvert.cc
-
Randell Jesup authored
Bug 1346291: Update libyuv update script and update patches for upstream 98a0a157dcf5dee0882b2dfcc9578ab1f44afb12 r=tritter
-
- Dec 22, 2017
-
-
Masatoshi Kimura authored
>+#if !defined(_MSC_VER) && (_MSC_VER < 1600) is wrong. It should have been: >+#if !(defined(_MSC_VER) && (_MSC_VER < 1600)) But I reverted this local change completely because we do not support such older MSVC versions anyway. MozReview-Commit-ID: 3VhtViP7WpX --HG-- extra : rebase_source : f18f57d8505e5847452263847d561b5cdef255b7
-
- Nov 03, 2017
-
-
Jan Beich authored
SSE2 isn't enabled by default on BSD x86 systems which ends up disabling SIMD-optimized routines in libyuv. As Clang can build the code fine without -msse limit the requirement to GCC. https://github.com/llvm-mirror/clang/blob/6fc97e7c1cf4/lib/Driver/ToolChains/Arch/X86.cpp#L98 MozReview-Commit-ID: BaVAbEpkoHj --HG-- extra : rebase_source : d32d55c09f34ad2d8d9e0d275167b576c9070e65
-
- Oct 25, 2017
-
-
Chris Manchester authored
Bug 1403346 - Replace all uses of ALLOW_COMPILER_WARNINGS with a template, remove ALLOW_COMPILER_WARNINGS. r=glandium MozReview-Commit-ID: 1G2o4fy74cf
-
- May 30, 2017
-
-
Dan Minor authored
This applies the fix from Bug 1354207 to the libyuv moz.build. --HG-- extra : rebase_source : 006b869166a0c361fb006226a3769fb975b3dcb7 extra : amend_source : a3f9336cd38d07e37c31ec4f3f0614dee89cb1ed
-
- Mar 07, 2017
-
-
Joel Maher authored
MozReview-Commit-ID: C7xWOE0OwIK
-
- Mar 01, 2017
-
-
Randell Jesup authored
MozReview-Commit-ID: ARnj1K5o2LM
-
Randell Jesup authored
MozReview-Commit-ID: 2EwQHcN8gfF
-
- Feb 24, 2017
-
-
Randell Jesup authored
MozReview-Commit-ID: CDMDXqpGueS
-
Randell Jesup authored
MozReview-Commit-ID: 3MK84gHSrLg
-