Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-07-09 | DecoderAPI: add function decoder_read_full() | Max Kellermann | 1 | -12/+2 | |
Move code from the "mad" plugin. | |||||
2014-07-09 | DecoderAPI: add function decoder_skip() | Max Kellermann | 1 | -14/+1 | |
Move code from the "mad" plugin. | |||||
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 1 | -1155/+0 | |
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 | |
2013-07-28 | decoder_api: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-26 | tag_rva2: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-07-26 | decoder/mad: convert to C++ | Max Kellermann | 1 | -313/+295 | |
2013-01-26 | input_stream: forward-declare the struct | Max Kellermann | 1 | -5/+7 | |
Hide the definition from C code, to prepare the transition to C++. | |||||
2013-01-05 | DecoderAPI: _replay_gain() returns void | Max Kellermann | 1 | -3/+2 | |
Let the function decoder_replay_gain() update decoder_control::replay_gain_db instead of letting each decoder plugin take care for that. | |||||
2012-09-25 | decoder_control: remove MixRamp debug messages | Max Kellermann | 1 | -3/+2 | |
These are confusing, and since MixRamp development has ceased, not useful to anybody. | |||||
2012-08-29 | decoder/mad, output_thread: add gcc_unlikely() | Max Kellermann | 1 | -2/+2 | |
2012-02-11 | decoder_plugin: scan tags with callback table | Max Kellermann | 1 | -8/+8 | |
Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object. | |||||
2011-09-16 | input_stream: non-blocking I/O | Max Kellermann | 1 | -1/+1 | |
Add GMutex, GCond attributes which will be used by callers to conditionally wait on the stream. Remove the (now-useless) plugin method buffer(), wait on GCond instead. Lock the input_stream before each method call. Do the same with the playlist plugins. | |||||
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2010-12-21 | decoder/mad: work around build failure on Solaris | Alex Viskovatoff | 1 | -2/+2 | |
Rename the "version" struct, because it seems to be a reserved name on Solaris: "src/decoder/mad_decoder_plugin.c", line 550: (enum) tag redeclared: version cc: acomp failed for src/decoder/mad_decoder_plugin.c | |||||
2010-09-23 | decoder_control: use g_free() to manage mixramp allocations | Max Kellermann | 1 | -2/+2 | |
Be consistent with the rest of MPD, and don't use the non-portable header "malloc.h". | |||||
2010-07-20 | decoder/mad: move RVA2 code to tag_rva2.c | Max Kellermann | 1 | -89/+2 | |
2010-05-08 | mixramp: Adjust MixRamp threshold to account for ReplayGain. | Tim Phipps | 1 | -2/+5 | |
2010-03-21 | Add support for MixRamp tags | Tim Phipps | 1 | -0/+47 | |
Adds mixrampdb and mixrampdelay commands. Reads MIXRAP_START and MIXRAMP_END tags from FLAC files and overlaps instead of crossfading. | |||||
2010-02-17 | replay_gain_info: allocate the struct statically | Max Kellermann | 1 | -24/+15 | |
Don't allocate each replay_gain_info object on the heap. Those objects who held a pointer now store a full replay_gain_info object. This reduces the number of allocations and heap fragmentation. | |||||
2010-01-04 | renamed decoder plugin sources | Max Kellermann | 1 | -0/+0 | |
Make it X_decoder_plugin.c. | |||||
2010-01-04 | decoder/mad: fix build error without libid3tag | Max Kellermann | 1 | -1/+0 | |
2010-01-04 | decoder_api: added function decoder_replay_gain() | Max Kellermann | 1 | -42/+31 | |
This function replaces the replay_gain_info parameter for decoder_data(). This allows the decoder to announce replay gain changes, instead of having to pass the same object over and over. |