Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-11-22 | configure.ac: add macro MPD_ENABLE_AUTO_PKG_LIB | Max Kellermann | 1 | -7/+7 | |
2014-10-28 | decoder/mad: fix negative replay gain values | Max Kellermann | 1 | -1/+1 | |
Negating an unsigned integer does not work. | |||||
2014-09-24 | decoder/mad: move code to tag/MixRamp.cxx | Max Kellermann | 1 | -5/+2 | |
2014-09-24 | tag/ApeReplayGain, decoder/mad: move duplicate code to tag/ReplayGain.cxx | Max Kellermann | 1 | -12/+2 | |
2014-08-29 | TagHandler: pass SongTime to duration() | Max Kellermann | 1 | -5/+3 | |
2014-08-29 | DecoderAPI: pass SignedSongTime to decoder_initialized() | Max Kellermann | 1 | -15/+24 | |
2014-08-26 | DecoderAPI: use std::chrono::duration for decoder_seek*() | Max Kellermann | 1 | -10/+16 | |
For type safety and code readability. | |||||
2014-08-26 | decoder/mad: use integer seek times | Max Kellermann | 1 | -10/+9 | |
Avoid roundtrips to floating point. | |||||
2014-08-26 | decoder/mad: move duplicate code to RecoverFrameError() | Max Kellermann | 1 | -20/+16 | |
2014-08-26 | decoder/mad: simplify if/else chain | Max Kellermann | 1 | -20/+18 | |
2014-08-26 | decoder/mad: make variables more local | Max Kellermann | 1 | -9/+5 | |
2014-08-26 | decoder/mad: simplify "return", eliminate check | Max Kellermann | 1 | -3/+1 | |
This check was redundant, because we could only exit the loop when ret==DECODE_OK. | |||||
2014-08-25 | decoder/mad: don't reset the xing struct | Max Kellermann | 1 | -3/+1 | |
Not necessary. | |||||
2014-08-25 | decoder/mad: remove unused flag "found_xing" | Max Kellermann | 1 | -3/+1 | |
2014-08-24 | decoder/mad: convert enums/macros to constexpr | Max Kellermann | 1 | -22/+17 | |
2014-08-24 | decoder/mad: make variables more local | Max Kellermann | 1 | -60/+31 | |
2014-08-19 | InputStream: move typedef offset_type to Offset.hxx | Max Kellermann | 1 | -5/+5 | |
Reduce header dependencies. | |||||
2014-08-19 | decoder/mad: check InputStream::KnownSize() | Max Kellermann | 1 | -2/+2 | |
2014-05-22 | InputStream: make Seek() always absolute | Max Kellermann | 1 | -1/+1 | |
Remove the "whence" parameter that is not actually necessary, and only complicates the InputStream implementations. | |||||
2014-01-24 | Input*: move to input/ | Max Kellermann | 1 | -2/+2 | |
2014-01-24 | Config*: move to config/ | Max Kellermann | 1 | -1/+1 | |
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 1 | -1/+1 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2013-12-14 | decoder/mad: use new[] instead of g_malloc() | Max Kellermann | 1 | -9/+9 | |
2013-12-14 | DecoderAPI: add function decoder_read_full() | Max Kellermann | 1 | -12/+2 | |
Move code from the "mad" plugin. | |||||
2013-12-14 | DecoderAPI: add function decoder_skip() | Max Kellermann | 1 | -14/+1 | |
Move code from the "mad" plugin. | |||||
2013-11-28 | Util/StringUtil: add StringStartsWith() | Max Kellermann | 1 | -1/+2 | |
Replaces GLib's g_str_has_prefix(). | |||||
2013-11-28 | include cleanup using iwyu | Max Kellermann | 1 | -1/+0 | |
2013-10-26 | DecoderControl: move code/attributes to new class MixRampInfo | Max Kellermann | 1 | -15/+8 | |
2013-10-25 | ReplayGainInfo: refactor to a class | Max Kellermann | 1 | -2/+2 | |
2013-10-25 | ReplayGainInfo: use CamelCase for struct name | Max Kellermann | 1 | -10/+10 | |
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | 1 | -17/+17 | |
2013-10-21 | decoder: rename the struct to "Decoder" | Max Kellermann | 1 | -15/+15 | |
2013-10-21 | decoder_plugin: rename struct to DecoderPlugin | Max Kellermann | 1 | -1/+1 | |
2013-10-20 | Util/ASCII: add function StringEqualsCaseASCII() | Max Kellermann | 1 | -6/+7 | |
Replaces GLib's g_ascii_strcasecmp(). | |||||
2013-10-17 | InputStream: use int64_t instead of goffset | Max Kellermann | 1 | -6/+6 | |
Decouple some more from GLib. | |||||
2013-10-02 | Log: new logging library API | Max Kellermann | 1 | -22/+26 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-27 | DecoderCommand: convert to strictly-typed enum | Max Kellermann | 1 | -20/+20 | |
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 1 | -1/+1 | |
2013-09-05 | conf.h: remove obsolete header | Max Kellermann | 1 | -1/+1 | |
Use only ConfigData.hxx in plugin sources to reduce header dependencies. | |||||
2013-09-05 | InputLegacy: move functions to the input_stream class | Max Kellermann | 1 | -8/+7 | |
2013-09-04 | Tag*: move libtag.a sources to src/tag/ | Max Kellermann | 1 | -2/+2 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -6/+6 | |
Replaces GLib's GError. | |||||
2013-08-04 | DecoderPlugin: pass config_param reference | Max Kellermann | 1 | -1/+1 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 1 | -4/+4 | |
2013-07-31 | DecoderAPI: pass rvalue reference to decoder_tag() | Max Kellermann | 1 | -2/+3 | |
Avoid duplicating the tag. | |||||
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -17/+15 | |
2013-07-29 | audio_check: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-29 | tag_handler: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-28 | tag_id3: convert to C++ | Max Kellermann | 1 | -5/+1 | |