2021-01-31 06:39:44 +00:00
|
|
|
# Changelog
|
|
|
|
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
|
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
|
|
|
|
|
## [Unreleased]
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
2021-03-26 07:10:48 +00:00
|
|
|
* MPEG Encode/Decode Support.
|
|
|
|
|
|
|
|
Uses libmpg123 for decode, liblame for encode. Encoding and decoding support
|
|
|
|
is independent of each other and is split into separate files. MPEG support
|
|
|
|
is generalized as subformats, `SF_FORMAT_MPEG_LAYER`(I,II,III) so that it
|
|
|
|
might be used by other containers (`MPEG1WAVEFORMAT` for example), but also
|
|
|
|
contains a major format `SF_FORMAT_MPEG` for 'mp3 files.'
|
|
|
|
|
|
|
|
Encoding Status:
|
|
|
|
* Layer III encoding
|
|
|
|
* ID3v1 writing
|
|
|
|
* ID3v2 writing
|
|
|
|
* Lame/Xing Tag writing
|
|
|
|
* Bitrate selection command
|
|
|
|
* VBR or CBR
|
|
|
|
|
|
|
|
Decoding Status:
|
|
|
|
* Layers I/II/III decoding
|
|
|
|
* ID3v1 reading
|
|
|
|
* ID3v2 reading
|
|
|
|
* Seeking
|
2021-01-31 06:39:44 +00:00
|
|
|
* This `CHANGELOG.md`. All notable changes to this project will be documented in
|
|
|
|
this file. The old `NEWS` file has been renamed to `NEWS.OLD` and is no longer
|
|
|
|
updated.
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
* `SFC_SET_DITHER_ON_READ` and `SFC_SET_DITHER_ON_WRITE` enums comments in
|
2021-02-16 05:44:12 +00:00
|
|
|
public header, thanks @SmiVan (issue #677).
|
2021-02-18 08:09:16 +00:00
|
|
|
* `ENABLE_SNDFILE_WINDOWS_PROTOTYPES` define is deprecated and not needed
|
|
|
|
anymore.
|
|
|
|
|
|
|
|
Previously, in order for the [`sf_wchar_open`()](http://libsndfile.github.io/libsndfile/api.html#open)
|
|
|
|
function to become available on the Windows platform, it was required to
|
|
|
|
perform certain actions:
|
|
|
|
|
|
|
|
```c
|
|
|
|
#include <windows.h>
|
|
|
|
#define ENABLE_SNDFILE_WINDOWS_PROTOTYPES 1
|
|
|
|
#including <sndfile.h>
|
|
|
|
```
|
|
|
|
|
|
|
|
These steps are no longer required and the `sf_wchar_open`() function is
|
|
|
|
always available on the Windows platform.
|
2021-02-16 07:08:06 +00:00
|
|
|
* Use UTF-8 as internal path encoding on Windows platform.
|
|
|
|
|
|
|
|
This is an internal change to unify and simplify the handling of file paths.
|
|
|
|
|
|
|
|
On the Windows platform, the file path is always converted to UTF-8 and
|
|
|
|
converted to UTF-16 only for calls to WinAPI functions.
|
|
|
|
|
|
|
|
The behavior of the functions for opening files on other platforms does not
|
|
|
|
change.
|
2021-01-31 06:39:44 +00:00
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
* Typo in `docs/index.md`.
|
2021-02-08 04:18:19 +00:00
|
|
|
* Memory leak in `caf_read_header`(), credit to OSS-Fuzz ([issue 30375](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=30375)).
|
2021-02-16 05:44:12 +00:00
|
|
|
* Stack overflow in `guess_file_type`(), thanks @bobsayshilol, credit to
|
|
|
|
OSS-Fuzz ([issue 29339](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=29339)).
|
|
|
|
* Abort in fuzzer, thanks @bobsayshilol, credit to OSS-Fuzz
|
|
|
|
([issue 26257](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=26257)).
|
|
|
|
* Infinite loop in `svx_read_header`(), thanks @bobsayshilol, credit to OSS-Fuzz
|
|
|
|
([issue 25442](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=25442)).
|
|
|
|
* GCC and Clang pedantic warnings, thanks @bobsayshilol.
|
2021-02-14 04:45:07 +00:00
|
|
|
* Normalisation issue when scaling floating point data to `int` in
|
2021-02-16 05:44:12 +00:00
|
|
|
`replace_read_f2i`(), thanks @bobsayshilol, (issue #702).
|
|
|
|
* Missing samples when doing a partial read of Ogg file from index till the end
|
|
|
|
of file, thanks @arthurt (issue #643).
|
2021-03-06 07:22:14 +00:00
|
|
|
* sndfile-salvage: Handle files > 4 GB on Windows OS
|
2021-03-19 06:33:49 +00:00
|
|
|
* Undefined shift in `dyn_get_32bit`(), credit to OSS-Fuzz
|
|
|
|
([issue 27366](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=27366)).
|
|
|
|
* Integer overflow in `nms_adpcm_update`(), credit to OSS-Fuzz
|
|
|
|
([issue 25522](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=25522)).
|
2021-05-16 09:51:13 +00:00
|
|
|
* ABI version incompatibility between Autotools and CMake build on Apple
|
|
|
|
platforms.
|
|
|
|
|
|
|
|
Now ABI must be compatible with Autotools builds. Note that this change
|
|
|
|
requires CMake >= 3.17 for building dylib on Apple platforms.
|
2021-06-18 06:23:02 +00:00
|
|
|
|
|
|
|
* Fix build with Autotools + MinGW toolchain on Windows platform.
|
|
|
|
|
|
|
|
See https://github.com/msys2/MINGW-packages/issues/5803 for details.
|
2021-02-16 05:44:12 +00:00
|
|
|
|
|
|
|
### Security
|
|
|
|
|
|
|
|
* Heap buffer overflow in `wavlike_ima_decode_block`(), thanks @bobsayshilol,
|
|
|
|
credit to OSS-Fuzz ([issue 25530](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=25530)).
|
2021-03-19 06:33:49 +00:00
|
|
|
* Heap buffer overflow in `msadpcm_decode_block`(), thanks @bobsayshilol,
|
|
|
|
credit to OSS-Fuzz ([issue 26803](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=26803)).
|
|
|
|
* Heap buffer overflow in `psf_binheader_readf`(), thanks @bobsayshilol,
|
|
|
|
credit to OSS-Fuzz ([issue 26026](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=26026)).
|
|
|
|
* Index out of bounds in `psf_nms_adpcm_decode_block`(), credit to OSS-Fuzz
|
|
|
|
([issue 25561](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=25561)).
|
2021-04-20 08:26:37 +00:00
|
|
|
* Heap buffer overflow in `flac_buffer_copy`(), thanks @yuawn, @bobsayshilol.
|
2021-06-01 05:25:51 +00:00
|
|
|
* Heap buffer overflow in `copyPredictorTo24`(), thanks @bobsayshilol,
|
|
|
|
credit to OSS-Fuzz ([issue 27503](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=27503)).
|
|
|
|
|
2021-01-31 06:39:44 +00:00
|
|
|
|
|
|
|
[Unreleased]: https://github.com/libsndfile/libsndfile/compare/1.0.31...HEAD
|