summaryrefslogtreecommitdiffstats
path: root/contrib/x265
Commit message (Collapse)AuthorAgeFilesLines
* x265: Fix pass 2 encode failureNomis1012019-12-091-0/+19
| | | | | | This fixes a 2-pass encoding failure which also does affect HandBrake, see https://bitbucket.org/multicoreware/x265/issues/524/2-pass-encoding-failure-with-32-15 (cherry picked from commit 23b07d0a4857c9d279388da319b1582e0bcbb889)
* x265: Fix limit-tu bug in loading co-located CU's TU depthNomis1012019-12-091-0/+26
| | | | (cherry picked from commit e6478f079c5b0ed09378a882019b0b75cfa473b3)
* contrib: Update to x265 3.2.1.Bradley Sepos2019-11-093-108/+5
|
* x265: Fix encoder crash with zones and add test for zonesNomis1012019-10-261-0/+30
| | | | Patch from https://bitbucket.org/multicoreware/x265/commits/a3a088a7262fcc02560bc8b71d0a3cf5b9c69fe3
* contrib: Add patch to fix AQ-related slowdown in x265 3.2.Bradley Sepos2019-10-141-0/+73
|
* contrib: Update to x265 3.2.Bradley Sepos2019-10-141-5/+5
|
* contrib: Use `ranlib` instead of `ar s` to fix building on Ubuntu 19.10 and ↵Bradley Sepos2019-08-251-1/+1
| | | | | | Debian Sid Unstable. Fixes #2272.
* contrib: Update to x265 3.1.2.Bradley Sepos2019-08-011-5/+5
| | | | Fixes hangs encoding some files.
* contrib: Update to x265 3.1.1.Bradley Sepos2019-07-202-27/+5
|
* make: finish correcting host/build semanticsJohn Stebbins2019-04-171-1/+1
|
* contrib: Add local patch to fix missing x265 animation tune.Nomis1012019-02-141-0/+22
|
* contrib: Update to x265 3.0.Ewout ter Hoeven2019-02-111-5/+5
|
* contrib: Update to x265 2.9.Bradley Sepos2018-11-261-5/+5
|
* contrib: make: Remove CMake contrib.Bradley Sepos2018-06-171-1/+1
| | | | Still required, only HandBrake will not build it anymore.
* contrib: Switch yasm dependencies to nasm.Bradley Sepos2018-06-171-1/+1
|
* x265: Upgrade to version 2.8sr552018-05-271-5/+5
|
* contrib: Fix x265.clean warning. #1195Bradley Sepos2018-02-241-1/+1
|
* contrib: Add universal archiver command for combining x265 libs.Bradley Sepos2017-12-261-14/+10
| | | | Resolves an issue with GNU vs system libtool on Mac, which also does not support ar -M.
* contrib: Update to x265 2.6.Bradley Sepos2017-12-022-15/+5
| | | | Closes #1029.
* x265: add support for 8/10/12 bit encoding in single static lib (#975)John Stebbins2017-11-062-23/+47
| | | | Builds x265 three times, once for each bit depth. Then merges the static libs into one library that HandBrake can statically link against.
* contrib: Update to x265 2.5.Bradley Sepos2017-08-062-4/+15
| | | | Adds patch to workaround define issue for mingw.
* contrib: Update to x265 2.4.Bradley Sepos2017-06-131-4/+4
| | | | Closes #761 and closes #766.
* x265: bump to version 2.3 (#437)John Stebbins2017-03-101-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * x265: bump to version 2.2 Encoder enhancements ---------------------------------- 1. Enhancements to TU selection algorithm with early-outs for improved speed; use --limit-tu to exercise. 2. New motion search method SEA (Successive Elimination Algorithm) supported now as –me 4 3. Bit-stream optimizations to improve fields in PPS and SPS for bit-rate savings through --[no-]opt-qp-pps, --[no-]opt-ref-list-length-pps, and --[no-]multi-pass-opt-rps. 4. Enabled using VBV constraints when encoding without WPP. 5. All param options dumped in SEI packet in bitstream when info selected. 6. x265 now supports POWERPC-based systems. Several key functions also have optimized ALTIVEC kernels. API changes ------------------- 1. Options to disable SEI and optional-VUI messages from bitstream made more descriptive. 2. New option --scenecut-bias to enable controlling bias to mark scene-cuts via cli. 3. Support mono and mono16 color spaces for y4m input. 4. --min-cu-size of 64 no-longer supported for reasons of visual quality (was crashing earlier anyways.) 5. API for CSV now expects version string for better integration of x265 into other applications. Bug fixes -------------- 1. Several fixes to slice-based encoding. 2. --log2-max-poc-lsb‘s range limited according to HEVC spec. 3. Restrict MVs to within legal boundaries when encoding. * x265: bump to version 2.3 Encoder enhancements ---------------------------------- 1. New SSIM-based RD-cost computation for improved visual quality, and efficiency; use --ssim-rd to exercise. 2. Multi-pass encoding can now share analysis information from prior passes (in addition to rate-control information) to improve performance and quality of subsequent passes; to your multi-pass command-lines that use the --pass option, add --multi-pass-opt-distortion to share distortion information, and --multi-pass-opt-analysis to share other analysis information. 3. A dedicated thread pool for lookahead can now be specified with --lookahead-threads. 4. --dynamic-rd dynamically increase analysis in areas where the bitrate is being capped by VBV; works for both CRF and ABR encodes with VBV settings. 5. The number of bits used to signal the delta-QP can be optimized with the --opt-cu-delta-qp option; found to be useful in some scenarios for lower bitrate targets. 6. Experimental feature option:–aq-motion adds new QP offsets based on relative motion of a block with respect to the movement of the frame. API changes ------------------- 1. Reconfigure API now supports signalling new scaling lists. 2. x265 application’s csv functionality now reports time (in milliseconds) taken to encode each frame. 3. --strict-cbr enables stricter bitrate adherence by adding filler bits when achieved bitrate is lower than the target; earlier, it was only reacting when the achieved rate was higher. 4. --hdr can be used to ensure that max-cll and max-fall values are always signaled (even if 0,0). Bug fixes -------------- 1. Fixed incorrect HW thread counting on MacOS platform. 2. Fixed scaling lists support for 4:4:4 videos. 3. Inconsistent output fix for --opt-qp-pss by removing last slice’s QP from cost calculation. 4. VTune profiling (enabled using ENABLE_VTUNE CMake option) now also works with 2017 VTune builds. * x265: remove unnecessary module.defs defines
* contrib: Remove x265 Windows XP support.Bradley Sepos2017-03-041-1/+1
| | | | We stopped supporting XP awhile back. Removal is necessary for NUMA. Closes #539.
* contrib: Use SHA256 instead of MD5 for contrib archive checksums.Justin Scholz2016-12-151-4/+4
| | | | Closes #356.
* contrib: Use https where possible.Bradley Sepos2016-12-141-1/+1
| | | | download.handbrake.fr now uses https, and some other hostnames do as well.
* contrib: Update to x265 2.1-1 hotfix. (#349)Bradley Sepos2016-10-061-2/+4
|
* x265: bump to version 2.1 (#343)John Stebbins2016-09-291-3/+4
| | | | | | Many bug fixes Adds sliced coding Also add multicoreware download URL to contrib module definition
* contrib: Update to x265 2.0.Bradley Sepos2016-08-101-3/+3
| | | | Bug fixes and performance improvements. Notable improvements to tune grain.
* contrib: Add upstream urls where possible.Bradley Sepos2016-05-251-2/+1
|
* Build: refactor fetch for contrib tarballsKonaBlend2016-05-251-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fetch is now python-based and runs on the same version as does configure. The source script is make/fetch.py. New features: MD5 hash tracking for tarballs. Data values for all contribs added. Upon download, the file will be verified, and only then will it be moved into place inside downloads/ . Files that exist before the build system does a fetch will not be md5-checked. Multiple URLs for tarballs. Each module may specify one or more URLs and by convention the official HandBrake should be first when possible. Each URL is tried in sequence, and if it fails for any reason, the next URL is tried. If no URL succeeds, a hard-error is reported. Network fetching may be disabled via configure options. --disable-fetch will hard-error if a fetch is attempted. --accept-fetch-url=SPEC and --deny-fetch-url=SPEC offer an ACL-style mechanism using regex to match against URLs. For example, --accept-fecth-url='.*/download.handbrake.fr/.*' would skip any non-matching URLs. Build dependencies have been lightened. wget and curl are no longer required. TODO: GTK packaging should also be able to remove those deps.
* x265: bump to version 1.9John Stebbins2016-02-111-2/+2
| | | | | | | | | Allows disabling of libnuma. HandBrake would previously encounter link errors when libnuma was auto-detected by the x265 build system. Other various fixes and improvements... (cherry picked from commit e1d46e31ed4534d989bfab78ad514fd5126e5373)
* x265: update to version 1.8John Stebbins2015-10-121-1/+1
| | | | | | | | | | | | | | | | | | Speed improvements and bug fixes. New limit-refs This feature limits the references analysed for individual CUS. Provides a nice tradeoff between efficiency and performance. New aq-mode 3 A new aq-mode that provides additional biasing for low-light conditions. Improved scene cut detection logic that allows ratecontrol to manage visual quality at fade-ins and fade-outs better. modified tune grain Increases psyRdoq strength to 10.0, and rdoq-level to 2.
* x265: bump to version 1.7jstebbins2015-05-212-50/+1
| | | | | | | Eliminates the need for our cleanup patch. Various bug fixes and improvements. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7215 b64f7644-9d1e-0410-96f1-a4d463321fa5
* x265: fix a conflict between Live Preview and the current job.Rodeo2015-04-051-0/+49
| | | | | | | x265_cleanup would happily let x265_encoder_open overwrite the global CTU settings. Now it does nothing if an encode is in progress; any new encode will fail (if the CTU size differs), but the current encode will be unaffected. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7056 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Bump libx265 to version 1.6Rodeo2015-04-033-32/+1
| | | | | | | | | Miscellaneous bugfixes and performance improvements. Also, x265_cleanup lets us drop both patches. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7044 b64f7644-9d1e-0410-96f1-a4d463321fa5
* x265: fix crash when encoding twice with different parametersjstebbins2015-03-011-0/+12
| | | | | | | "static" member in cudata was not re-initialized on second encode. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6956 b64f7644-9d1e-0410-96f1-a4d463321fa5
* x265: enable debug symbols when configured for debuggingjstebbins2015-03-011-0/+4
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6955 b64f7644-9d1e-0410-96f1-a4d463321fa5
* x265: bump to version 1.5jstebbins2015-02-132-7/+7
| | | | | | | | | | many improvements including: psy-rd(oq) enabled by default for presets that support them aq-mode default changed to 1 new "grain" tune git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6901 b64f7644-9d1e-0410-96f1-a4d463321fa5
* contrib: bump x265 to version 1.4jstebbins2014-11-042-10/+10
| | | | | | | Speed improvements in the slower presets (if you have lots of cores). git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6504 b64f7644-9d1e-0410-96f1-a4d463321fa5
* x265: fix maxCUSize errorjstebbins2014-08-261-0/+19
| | | | | | | | | | x265 tries to protect you from doing multiple simultaneous encodes using different settings. It just happens to also prevent back to back encodes from the same process with different settings which is just pure idiocy. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6365 b64f7644-9d1e-0410-96f1-a4d463321fa5
* bump x265 to version 1.3jstebbins2014-08-251-1/+1
| | | | | | | speed improvements and psy-rd git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6362 b64f7644-9d1e-0410-96f1-a4d463321fa5
* build: add cmake contrib for building x265 on osxjstebbins2014-08-201-1/+2
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6328 b64f7644-9d1e-0410-96f1-a4d463321fa5
* LinGui: link lame and x264 system libsjstebbins2014-08-181-1/+1
| | | | | | | | These projects have been stable long enough that we should not need to worry about broken system libs any more. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6312 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Remove empty file faster last commit.Rodeo2014-05-131-0/+0
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6186 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Bump x265 to version 1.0Rodeo2014-05-132-13/+4
| | | | | | | Miscellaneous bugfixes and performance improvements. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6185 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Fix previous commit again. This is not my day.Rodeo2014-04-062-1/+13
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6155 b64f7644-9d1e-0410-96f1-a4d463321fa5
* QSV: fix previous commit (outdated version of the same patch, sorry9.Rodeo2014-04-062-13/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6154 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Bump libx265 to version 0.8.Rodeo2014-03-163-45/+13
| | | | | | | | Miscellaneous fixes and improvements, and simplify the patch to fix multiple inclusions of x265.h git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6114 b64f7644-9d1e-0410-96f1-a4d463321fa5
* x265: set CMAKE_HOST_SYSTEM instead of just removing --build.Rodeo2014-03-131-3/+3
| | | | | | | | Inetrestingly, host/build seems inverted in cmake compared to autotools (and actually matches our build system). git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6108 b64f7644-9d1e-0410-96f1-a4d463321fa5