253 lines
9.7 KiB
Text
253 lines
9.7 KiB
Text
Changes in libmpg123 libtool interface versions. Next to the version
|
|
the mpg123 release where its changes first appeared to the public
|
|
is given.
|
|
|
|
48.0.48 (mpg123 1.32)
|
|
- Added mpg123_distversion() and mpg123_libversion().
|
|
- Added mpg123_reader64() and the other int64_t-based functions:
|
|
mpg123_framebyframe_decode64(), mpg123_framepos64(), mpg123_tell64(),
|
|
mpg123_tellframe64(), mpg123_tell_stream64(), mpg123_seek64(),
|
|
mpg123_feedseek64(), mpg123_seek_frame64(), mpg123_timeframe64(),
|
|
mpg123_index64(), mpg123_set_index64(), mpg123_framelength64(),
|
|
mpg123_length64(), and mpg123_set_filesize64().
|
|
- Added MPG123_PORTABLE_API to hide non-portable API (off_t, ssize_t)
|
|
from mpg123.h.
|
|
- Made mpg123_seek() family ignore sign with SEEK_END offsets, always
|
|
putting a negative one on it to allow usage consistent with lseek().
|
|
|
|
47.0.47 (mpg123 1.30)
|
|
- Added mpg123_eq_bands(), mpg123_eq_change() and mpg123_volume_change_db().
|
|
|
|
46.0.46 (mpg123 1.27)
|
|
- Functions mpg123_init() and mpg123_exit() are really no-ops now.
|
|
There is no need to call them, and no harm done calling them in
|
|
parallel. The latter used to be the case before, too, but only in
|
|
practice, not in theory.
|
|
- Common tables provided in precomputed form now, both float and fixed.
|
|
- There are enum-less variants of all API entry points now, mapped to
|
|
by default unless MPG123_ENUM_API is defined.
|
|
|
|
45.0.45 (mpg123 1.26)
|
|
- mpg123_read(), mpg123_decode(), and mpg123_replace_buffer() now taking
|
|
void* for output buffers
|
|
- value 0 for any rate in mpg123_format()/mpg123_fmt()
|
|
- use of mpg123_decoder() after track open supported
|
|
(also as hack to trigger renegotiation of output format,
|
|
which will not be communicated as it only happens by users's
|
|
intention)
|
|
- added struct mpg123_moreinfo and mpg123_set_moreinfo()
|
|
- officially declared mpg123_exit() as superfluous
|
|
- added MPG123_ENC_DELAY, MPG123_ENC_PADDING, MPG123_DEC_DELAY
|
|
- added MPG123_STORE_RAW_ID3 and mpg123_id3_raw()
|
|
- added mpg123_new_string() and mpg123_delete_string()
|
|
- added MPG123_FORCE_ENDIAN and MPG123_BIG_ENDIAN
|
|
- added MPG123_NO_READAHEAD and MPG123_FREEFORMAT_SIZE
|
|
- changed format logic to search all possible encodings
|
|
and channel counts for a rate first, then trying different
|
|
rates (rate > channel > encoding)
|
|
- included float and >16 bit integer encodings in default
|
|
format search
|
|
- added MPG123_FLOAT_FALLBACK
|
|
- added MPG123_NO_FRANKENSTEIN
|
|
- added mpg123_feature2(), added MPG123_FEATURE_OUTPUT_FLOAT32 and
|
|
MPG123_FEATURE_OUTPUT_FLOAT32
|
|
- added mpg123_open_fixed()
|
|
|
|
44.0.44 (mpg123 1.25)
|
|
- added mpg123_getformat2()
|
|
|
|
43.0.43 (mpg123 1.24)
|
|
- added MPG123_NO_PEEK_END and MPG123_FORCE_SEEKABLE
|
|
|
|
42.0.42 (mpg123 1.23)
|
|
- added mpg123_framelength()
|
|
Now mpg123_position() is truly obsolete!
|
|
- hardened string API to not crash if given NULL pointers
|
|
(except mpg123_init_string())
|
|
- equalizer feature optional
|
|
|
|
41.0.41 (mpg123 1.22)
|
|
- Add checks for NULL handles in some API functions that missed that, changed return value in others to MPG123_BAD_HANDLE where appropriate:
|
|
- mpg123_format_none(NULL) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_format_all(NULL) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_format(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_reset_eq(NULL) == MPG123_BAD_HANDLE (was: undefined)
|
|
- mpg123_replace_buffer(NULL, ...) == MPG123_BAD_HANDLE (was: undefined)
|
|
- mpg123_framedata(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_decoder(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_param(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_getparam(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_getstate(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_eq(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_open(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_open_handle(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_open_feed(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_replace_reader(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_replace_reader_handle(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_decode_frame(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_feed(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_decode(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_info(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_getformat(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_set_filesize(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_scan(NULL) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_id3(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_icy(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_index(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_set_index(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- mpg123_close(NULL, ...) == MPG123_BAD_HANDLE (was: MPG123_ERR)
|
|
- Changed return value of mpg123_geteq() to 0 for NULL handle to be consistent with itself.
|
|
|
|
|
|
40.0.40 (mpg123 1.19)
|
|
- Bump for marking the first actual implementation of A-Law encoding.
|
|
Not that it matters to anyone, though --- I wonder why not even the
|
|
Asterisk users wanted this. It's for telephony, dammit!
|
|
- Added arm_fpu decoder for runtime switch between NEON and generic fpu.
|
|
|
|
39.2.39 (mpg123 1.19)
|
|
- Added more elaborate post-processing to enable 32 and 24 bit output also with low-precision decoder (16 bit, fixed-point).
|
|
|
|
39.0.39 (mpg123 1.18)
|
|
- Added MPG123_FRESH_DECODER.
|
|
- Also containing several regression fixes.
|
|
|
|
38.0.38 (mpg123 1.16)
|
|
- Added MPG123_PICTURE and associated addition to mpg123_id3v2 struct.
|
|
|
|
37.0.37 (mpg123 1.16)
|
|
- Added mpg123_chomp_string.
|
|
|
|
36.0.36 (mpg123 1.14)
|
|
- Extended MPG123_RESYNC_LIMIT to initial header search.
|
|
- Not cutting decoder delay unconditionally anymore (only in combination with known encoder delay / padding).
|
|
|
|
35.0.35 (mpg123 1.14)
|
|
- Added mpg123_meta_free().
|
|
|
|
34.0.34 (mpg123 1.14)
|
|
- Added flag MPG123_AUTO_RESAMPLE.
|
|
- Changed (improved;-) outbuffer behaviour.
|
|
|
|
33.0.33 (mpg123 1.14)
|
|
- Added MPG123_BUFFERFILL.
|
|
|
|
32.0.32 (mpg123 1.14)
|
|
- Added mpg123_framepos()
|
|
|
|
31.0.31 (mpg123 1.14)
|
|
- Added mpg123_framedata() and MPG123_IGNORE_INFOFRAME.
|
|
|
|
30.0.30 (mpg123 1.14)
|
|
- Added MPG123_FEEDPOOL and MPG123_FEEDBUFFER.
|
|
|
|
29.0.29 (mpg123 1.13)
|
|
- New decoder: ARM neon.
|
|
- Added support for 24 bit output (dumb byte-chopping of 32 bit output).
|
|
|
|
28.0.28 (mpg123 1.13)
|
|
- Add mpg123_strlen().
|
|
|
|
27.0.27 (mpg123 1.13)
|
|
- Implictly disable seeking on streams when client enforced ICY parsing.
|
|
This helps debugging dumps of http streams.
|
|
|
|
26.0.26 (mpg123 1.13)
|
|
- Added mpg123_encsize().
|
|
- Added flag MPG123_SKIP_ID3V2.
|
|
|
|
25.0.25 (mpg123 1.12)
|
|
- Version increase to mark the point where the split between normal and large-file-enabled library vanishes again. The world did not like it.
|
|
Now Thomas lost some days of recreation and sleep to give it a dual-mode libmpg123 on large-file-sensitive systems.
|
|
|
|
24.0.24 (mpg123 1.12)
|
|
- Introduce mpg123_replace_reader_handle() and mpg123_open_handle()
|
|
... this is also in preparation for the next version which will drop the separated large-file library again, due to public display of dismay.
|
|
- Add the experimental mpg123_framebyframe_decode to the off_t-sensitive functions.
|
|
|
|
23.0.23 (mpg123 1.11)
|
|
- Version increase to mark the point where the explicit split between normal and large-file-enabled library has been introduced.
|
|
|
|
22.0.22 (mpg123 1.10)
|
|
- Experimental framebyframe API added.
|
|
|
|
21.0.21 (mpg123 1.10)
|
|
- Added support of unicode file names under windows via UTF-8 argument to mpg123_open.
|
|
- Added mpg123_feature(), for example to test for the above behaviour.
|
|
|
|
20.0.20 (mpg123 1.9)
|
|
- New flag: MPG123_PLAIN_ID3TEXT
|
|
- Corresponding text encoding handling API added:
|
|
mpg123_enc_from_id3, mpg123_store_utf8
|
|
|
|
19.0.19 (mpg123 1.9)
|
|
- Hm, what was it exactly now... there are candidates:
|
|
- runtime dithering
|
|
- free format
|
|
- ARM optimizations
|
|
|
|
18.0.18 (mpg123 1.8)
|
|
- new parameter: MPG123_PREFRAMES is now tunable (the number of frames to decode and skip before a seek point), also default value increased
|
|
|
|
17.0.17 (mpg123 1.8)
|
|
- introduction optimized stereo synths
|
|
|
|
16.0.16 (mpg123 1.8)
|
|
- introducing floating point x86-64 SSE synth
|
|
|
|
15.0.15 (mpg123 1.8)
|
|
- first addition of x86-64 SSE optimizations
|
|
|
|
14.0.14 (mpg123 1.7)
|
|
- the first libmpg123 with actually working MPG123_UPSPEED
|
|
- also important regression fix concerning skipping of frames
|
|
|
|
13.0.13 (mpg123 1.7)
|
|
- The whole set of output formats is generally available (8, 16 and 32 bit integer, signed/unsigned, float)
|
|
- Many features can be absent from libary as build decision (minimize binary size).
|
|
|
|
12.0.12 (mpg123 1.7)
|
|
- added mpg123_current_decoder
|
|
- fixed value of MPG123_ENC_FLOAT
|
|
- float output now is a real runtime option
|
|
|
|
11.0.11 (mpg123 1.6)
|
|
- added mpg123_getstate
|
|
- run-time tunable frame index
|
|
- officially configured with largefile support where available
|
|
|
|
10.0.10 (mpg123 1.6)
|
|
- new flag MPG123_FUZZY (along with the fuzzy seek functionality)
|
|
|
|
9.0.9 (mpg123 1.6)
|
|
- added mpg123_tell_stream
|
|
|
|
8.0.8 (mpg123 1.6)
|
|
- added mpg123_get_eq
|
|
|
|
7.0.7 (mpg123 1.6)
|
|
- added mpg123_set_filesize
|
|
|
|
6.0.6 (mpg123 1.5)
|
|
- added mpg123_icy2utf8
|
|
|
|
5.0.5 (mpg123 1.5)
|
|
- added mpg123_feed
|
|
- input buffers now const
|
|
|
|
4.0.4 (mpg123 1.5)
|
|
- extended mpg123_string api (mpg123_add_substring, mpg123_grow_string)
|
|
|
|
3.0.3 (mpg123 1.5)
|
|
- Initial floating point support as compile-time option.
|
|
|
|
2.0.2 (mpg123 1.3)
|
|
- New flag MPG123_SEEKBUFFER.
|
|
|
|
1.0.1 (mpg123 1.2)
|
|
- Added MPG123_RESYNC_LIMIT parameter.
|
|
- Added MPG123_OUT_OF_SYNC and MPG123_RESYNC_FAIL error codes.
|
|
- Fix for uninitialized framesize value in handle.
|
|
|
|
0.0.0 (mpg123 1.0)
|
|
- Initial library design.
|