~pcsx2-team/pcsx2-github-mirror/+git/lz4:fix/typo-makefile-variables

Last commit made on 2024-03-31
Get this branch:
git clone -b fix/typo-makefile-variables https://git.launchpad.net/~pcsx2-team/pcsx2-github-mirror/+git/lz4

Branch merges

Branch information

Name:
fix/typo-makefile-variables
Repository:
lp:~pcsx2-team/pcsx2-github-mirror/+git/lz4

Recent commits

5b44fd1... by t-mat <email address hidden>

Fix typo `libzstd` -> `liblz4`

2e33b0c... by Yann Collet <email address hidden>

Merge pull request #1377 from lz4/dependabot/github_actions/github/codeql-action-3.24.7

Bump github/codeql-action from 3.24.6 to 3.24.7

98a475d... by Yann Collet <email address hidden>

Merge pull request #1378 from lz4/dependabot/github_actions/actions/checkout-4.1.2

Bump actions/checkout from 4.1.1 to 4.1.2

643a51c... by Yann Collet <email address hidden>

minor: assert successful context creation

5b4f996... by Yann Collet <email address hidden>

Merge pull request #1380 from lz4/fix1374

fix #1374

fab3068... by Yann Collet <email address hidden>

add test for bug #1374

e50a894... by Yann Collet <email address hidden>

fix #1374

The output buffer size was sized using the function `LZ4F_compressFrameBound(, NULL)`,
with the mention "cover worst scenario".
That's incorrect : using `, NULL` covers the _default_ scenario,
and there are ways to make the situation worse
by using advanced command line options, starting with `-B4`.
In some limit scenarios, it leads to situations where the output buffer is not large enough.

Switched to determining the main ingredients of LZ4F_preferences_t during initialization
and using actual compression parameters to determine the output buffer size
thus avoiding corner cases where it's under-sized.

fc0943e... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

Bump actions/checkout from 4.1.1 to 4.1.2

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <email address hidden>

d8f0e86... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

Bump github/codeql-action from 3.24.6 to 3.24.7

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.24.6 to 3.24.7.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/8a470fddafa5cbb6266ee11b37ef4d8aae19c571...3ab4101902695724f9365a384f86c1074d94e18c)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <email address hidden>

a3be311... by Yann Collet <email address hidden>

Merge pull request #1376 from lz4/async_dec

Introduce Async I/O for decompression