aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cue: prepend pregap to the beginning of the trackOrivej Desh2010-03-282-4/+22
| | | | | | | | | | | | | | | | | | | | | | | .. rather then append to the end of the previous one Cuebreakpoints from the cuetools package has three modes of operation, and the default is to append pregap (INDEX 00) to the end of the previous track. This is the behavior most compliant to the existing cue files. Here is the patch which fixes the issue. I borrowed bits of implementation from cuebreakpoints. I assumed that the whole audio file must be covered by head-to-head going tracks, which is how hardware CD players probably work. In cue_tag I changed rounding from rounding up to rounding down because the thing in mpd which calculates actual track duration (and current position) rounds it down, and I didn't want to see in my playlist values different from whose in a now-playing progress bar. I've compared the resultant mpd behaviour with "mplayer -ss MM:SS.MS" where the time was supplied by cuebreakpoints and noticed that mplayer started each track a bit earlier then mpd, though this was the same before the patch.
* Merge release 0.15.9 from branch 'v0.15.x'Max Kellermann2010-03-287-23/+65
|\ | | | | | | | | | | | | | | | | Conflicts: NEWS configure.ac src/cue/cue_tag.c src/decoder/mpcdec_decoder_plugin.c src/player_thread.c
| * decoder/mpcdec: fix replay gain formula with v8Aleksei Kaveshnikov2010-03-191-0/+8
| | | | | | | | | | | | | | | | | | | | "When playing musepack files with mpd v0.15.8, rg seems to have no effect. Using sample file below, mpd says 'computing ReplayGain album scale with gain 122.879997, peak 0.549150'. One thing though, if I build mpd against old libmpcdec-1.2.6, rg works as expected: 'computing ReplayGain album scale with gain 16.820000, peak 0.099765'"
| * player_thread: postpone song tags during cross-fadeMax Kellermann2010-03-171-0/+27
| | | | | | | | | | | | | | | | | | Previously, tags of the new song being cross-faded in were sent immediately. That can cause wrong information being displayed, because the "previous" song might send its tag at the end again, overriding the "next" song's tag. This patch saves & merges the tag of the next song, and sends it when cross-fading is finished, and the next song really starts.
| * tag: added function tag_merge_replace()Max Kellermann2010-03-173-21/+26
| | | | | | | | | | Like tag_merge(), but can deal with NULL parameters, and frees both tag objects.
| * decoder/mpcdec: fix negative shift on fixed-point samplesPiotr Gozdur2010-03-171-1/+1
| | | | | | | | | | | | "There is a bug in fixed-point musepack (musepack_src_r435) playback. In floating-point audio is OK but in fixed audio is distorted. I have made a patch for this"
| * playlist: fix single+repeat in random modeMax Kellermann2010-03-071-1/+2
| | | | | | | | | | | | | | With single+repeat enabled, it is expected that MPD repeats the current song over andd over. With random mode also enabled, this didn't work, because the song order was shuffled internally. This patch adds a special check for this case.
| * decoder/mad: fix crash when seeking at end of songMax Kellermann2010-02-271-4/+0
| | | | | | | | | | | | Removed the decoder_command_finished() call at the end of mp3_decode(). This is invalid, because decoder_command_finished() has already been called in mp3_read().
* | Add support for building httpd_output plugin for win32Avuton Olrich2010-03-222-0/+10
| |
* | Define winnt or greater on mingw32 to take advantage of get*info().Avuton Olrich2010-03-212-0/+2
| |
* | strtok() is recursive by default on win32.Avuton Olrich2010-03-211-0/+4
| |
* | Add support for MixRamp tagsTim Phipps2010-03-2118-19/+423
| | | | | | | | | | Adds mixrampdb and mixrampdelay commands. Reads MIXRAP_START and MIXRAMP_END tags from FLAC files and overlaps instead of crossfading.
* | AudioCompress: explicitly include stdint.hMax Kellermann2010-03-171-0/+1
| | | | | | | | For int16_t.
* | decoder_api: use the correct format to calculate elapsed timeMax Kellermann2010-03-171-1/+1
| | | | | | | | | | | | When decoder->timestamp is calculated, the PCM data is already converted to out_audio_format; using in_audio_format may cause funny speedups/slowdowns.
* | command: allow "update" with slash or empty pathMax Kellermann2010-03-121-1/+4
| | | | | | | | | | | | | | When handle_update() was modified to use uri_safe_local(), suddently "mpc update ''" and "mpc update '/'" stopped working, because both are not a "safe" local URI. This patch adds a special case for these, to retain backwards compatibility.
* | output: added option "always_on" for radio stationsMax Kellermann2010-03-107-2/+61
| | | | | | | | | | | | | | Did you ever accidently click "stop" while feeding a radio station? This option sets the output device to "pause" to disable the "close" method. It falls back to "pause" then, which is specific to the plugin. Some plugins implement it by feeding silence.
* | output/jack: drain the ring buffers during pauseMax Kellermann2010-03-101-0/+7
| | | | | | | | | | If we're not doing this, and a new song is played after pause ends, then you will hear the rest of the previous song.
* | output/jack: synchronize all channelsMax Kellermann2010-03-101-9/+26
| | | | | | | | | | Always use the same number of samples from each channel's ring buffer. This ensures that all channels are kept in sync.
* | decoder/ffmpeg: fix indentationMax Kellermann2010-03-071-6/+6
| |
* | decoder/ffmpeg: implement the libavutil log callbackMax Kellermann2010-02-271-0/+31
| | | | | | | | Pass everything to the GLib logging library. No direct stderr access.
* | decoder/ffmpeg: don't close the AVFormatContext after open failureMax Kellermann2010-02-271-1/+0
| | | | | | | | The pointer is invalid if av_open_input_file() fails.
* | command: "update" checks if the path is malformedMax Kellermann2010-02-271-2/+16
| | | | | | | | | | | | This is a very basic check, which only ensures that the path does not begin with a slash, doesn't have double slashes and the special names "." and ".." are forbidden.
* | uri: allow leading dots, but explicitly exclude "." and ".."Max Kellermann2010-02-271-1/+4
| | | | | | | | | | Dots at the beginning of an URI segment are ok, as long as the special names "." and ".." are not used.
* | update: log start/finish of the update threadMax Kellermann2010-02-271-1/+11
| |
* | replay_gain: optionally use hardware mixer to apply replay gainMax Kellermann2010-02-174-6/+88
| | | | | | | | | | | | | | | | | | | | Add an option for each audio output which enables the use of the hardware mixer, instead of the software volume code. This is hardware specific, and assumes linear volume control. This is not the case for hardware mixers which were tested, making this patch somewhat useless, but we will use it to experiment with the settings, to find a good solution.
* | replay_gain: fall back to track gain if album gain is unavailableMax Kellermann2010-02-173-2/+18
| |
* | replay_gain: reimplement as a filter pluginMax Kellermann2010-02-1714-159/+289
| | | | | | | | | | | | | | Apply the replay gain in the output thread. This means a new setting will be active instantly, without going through the whole music pipe. And we might have different replay gain settings for each audio output device.
* | replay_gain_info: allocate the struct staticallyMax Kellermann2010-02-1710-133/+71
| | | | | | | | | | | | 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.
* | replay_gain_info: use INFINITY to mark undefined valuesMax Kellermann2010-02-172-3/+3
| | | | | | | | | | | | | | | | | | The previous patch not only moved code, it also changed the check. Negative gain values seem to be valid after all, there just was the "magic" value 0.0 which means "not available". This patch changes the "magic" value to "INFINITY", and uses the C99 function isinf() to check. It might have been a better idea to use "NAN", but the "NAN" macro is a GNU extension.
* | replay_gain_state: moved code to replay_gain_tuple_scale()Max Kellermann2010-02-153-19/+21
| | | | | | | | | | Moved (and renamed) the function calc_replay_gain_scale() to replay_gain_info.c.
* | replay_gain: added function defined()Max Kellermann2010-02-152-12/+18
| | | | | | | | This function determines whether replay gain data is available.
* | filter/volume: assign dest_size_r early, eliminate oneMax Kellermann2010-02-151-4/+3
| |
* | command: "listplaylist" dumps playlist filesMax Kellermann2010-02-083-0/+54
| | | | | | | | Same for "listplaylistinfo".
* | playlist_queue: moved code to playlist_mapper.cMax Kellermann2010-02-083-70/+137
| |
* | playlist_queue: moved check_translate_song() to playlist_song.cMax Kellermann2010-02-083-118/+172
| |
* | song_print: song_print() returns voidMax Kellermann2010-02-083-10/+12
| | | | | | | | The only "return" statement always returns 0.
* | ffmpeg: read more metadata.Anton Khirnov2010-02-021-1/+12
| |
* | decoder/flac: fix replay gain (short-circuiting "or")Tim Phipps2010-01-281-8/+13
| |
* | client: optionally use libwrapDavide Camurri2010-01-201-0/+30
| |
* | decoder/wavpack: fixed WVC URIMax Kellermann2010-01-201-4/+5
| | | | | | | | Pass the current URI to wavpack_open_wvc().
* | decoder/ffmpeg: call decoder_timestamp() once per packetMax Kellermann2010-01-181-5/+5
| |
* | decoder/ffmpeg: merged ffmpeg_helper() into ffmpeg_decode()Max Kellermann2010-01-181-116/+67
| |
* | decoder/ffmpeg: optimized the stream_tag() methodMax Kellermann2010-01-181-25/+27
| | | | | | | | Don't use the function ffmpeg_helper(), don't initialize the codec.
* | decoder/ffmpeg: free AVFormatContext on errorMax Kellermann2010-01-181-0/+4
| | | | | | | | Fix a memory leak in some code paths.
* | decoder_api: removed function decoder_get_uri()Max Kellermann2010-01-185-44/+11
| | | | | | | | Use input_stream.uri.
* | input_stream: added attribute "uri"Max Kellermann2010-01-188-10/+18
| |
* | input_stream: added function input_stream_deinit()Max Kellermann2010-01-189-2/+16
| | | | | | | | All close() implementations must call this method.
* | Merge release 0.15.8 from branch 'v0.15.xMax Kellermann2010-01-183-7/+40
|\| | | | | | | | | | | | | | | | | Conflicts: Makefile.am NEWS configure.ac src/decoder/ffmpeg_decoder_plugin.c src/decoder_thread.c
| * decoder/ffmpeg: added more MIME typesMax Kellermann2010-01-171-0/+6
| | | | | | | | Taken from the ffmpeg sources.
| * decoder/ffmpeg: append file name suffix to virtual stream URLMax Kellermann2010-01-171-4/+28
| | | | | | | | | | | | | | To allow libavformat to detect the format of the input file, append the suffix of the input file to the URL of the virtual stream. This specifically enables the "shorten" codec, which is supported by libavformat/raw.c, detected only by the suffix.