aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/mad_decoder_plugin.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* decoder_control: remove MixRamp debug messagesMax Kellermann2012-09-251-3/+2
| | | | | These are confusing, and since MixRamp development has ceased, not useful to anybody.
* decoder_plugin: scan tags with callback tableMax Kellermann2012-02-111-8/+8
| | | | | Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object.
* input_stream: non-blocking I/OMax Kellermann2011-09-161-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.
* copyright year 2011Max Kellermann2011-01-291-1/+1
|
* decoder/mad: work around build failure on SolarisAlex Viskovatoff2010-12-211-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
* decoder_control: use g_free() to manage mixramp allocationsMax Kellermann2010-09-231-2/+2
| | | | | Be consistent with the rest of MPD, and don't use the non-portable header "malloc.h".
* decoder/mad: move RVA2 code to tag_rva2.cMax Kellermann2010-07-201-89/+2
|
* Merge release 0.15.12 from branch 'v0.15.x'Max Kellermann2010-07-201-11/+10
| | | | | | Conflicts: NEWS configure.ac
* Merge release 0.15.10 from branch 'v0.15.x'Max Kellermann2010-05-301-5/+25
| | | | | | | Conflicts: NEWS configure.ac src/input/mms_input_plugin.c
* mixramp: Adjust MixRamp threshold to account for ReplayGain.Tim Phipps2010-05-081-2/+5
|
* Merge release 0.15.9 from branch 'v0.15.x'Max Kellermann2010-03-281-4/+0
| | | | | | | | | Conflicts: NEWS configure.ac src/cue/cue_tag.c src/decoder/mpcdec_decoder_plugin.c src/player_thread.c
* Add support for MixRamp tagsTim Phipps2010-03-211-0/+47
| | | | | Adds mixrampdb and mixrampdelay commands. Reads MIXRAP_START and MIXRAMP_END tags from FLAC files and overlaps instead of crossfading.
* replay_gain_info: allocate the struct staticallyMax Kellermann2010-02-171-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.
* renamed decoder plugin sourcesMax Kellermann2010-01-041-0/+1235
Make it X_decoder_plugin.c.