- 13 Apr, 2010 1 commit
-
-
Max Kellermann authored
-
- 11 Apr, 2010 1 commit
-
-
Charles Kerr authored
What's happening is the `ptr' argument to that function is NULL for me every time. `ptr' is unconditionally dereferenced to generate a log message, and this is where mpd crashes. Attached is a simple patch that tests for NULL and omits the log. With this patch the crash disappeared and mpd went back to working well.
-
- 05 Apr, 2010 1 commit
-
-
James Pike authored
-
- 01 Apr, 2010 1 commit
-
-
Orivej Desh authored
-
- 28 Mar, 2010 4 commits
-
-
Max Kellermann authored
-
Orivej Desh authored
.. 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.
-
Max Kellermann authored
Conflicts: NEWS configure.ac src/cue/cue_tag.c src/decoder/mpcdec_decoder_plugin.c src/player_thread.c
-
Max Kellermann authored
Fix distcheck.
-
- 22 Mar, 2010 4 commits
-
-
Avuton Olrich authored
-
Avuton Olrich authored
-
Avuton Olrich authored
-
Avuton Olrich authored
-
- 21 Mar, 2010 1 commit
-
-
Tim Phipps authored
Adds mixrampdb and mixrampdelay commands. Reads MIXRAP_START and MIXRAMP_END tags from FLAC files and overlaps instead of crossfading.
-
- 19 Mar, 2010 1 commit
-
-
Aleksei Kaveshnikov authored
"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'"
-
- 17 Mar, 2010 5 commits
-
-
Max Kellermann authored
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.
-
Max Kellermann authored
Like tag_merge(), but can deal with NULL parameters, and frees both tag objects.
-
Max Kellermann authored
For int16_t.
-
Max Kellermann authored
When decoder->timestamp is calculated, the PCM data is already converted to out_audio_format; using in_audio_format may cause funny speedups/slowdowns.
-
Piotr Gozdur authored
"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"
-
- 12 Mar, 2010 1 commit
-
-
Max Kellermann authored
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.
-
- 10 Mar, 2010 3 commits
-
-
Max Kellermann authored
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.
-
Max Kellermann authored
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.
-
Max Kellermann authored
Always use the same number of samples from each channel's ring buffer. This ensures that all channels are kept in sync.
-
- 07 Mar, 2010 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
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.
-
- 27 Feb, 2010 6 commits
-
-
Max Kellermann authored
Pass everything to the GLib logging library. No direct stderr access.
-
Max Kellermann authored
The pointer is invalid if av_open_input_file() fails.
-
Max Kellermann authored
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.
-
Max Kellermann authored
Dots at the beginning of an URI segment are ok, as long as the special names "." and ".." are not used.
-
Max Kellermann authored
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().
-
Max Kellermann authored
-
- 17 Feb, 2010 5 commits
-
-
Max Kellermann authored
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.
-
Max Kellermann authored
-
Max Kellermann authored
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.
-
Max Kellermann authored
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.
-
Max Kellermann authored
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.
-
- 15 Feb, 2010 3 commits
-
-
Max Kellermann authored
Moved (and renamed) the function calc_replay_gain_scale() to replay_gain_info.c.
-
Max Kellermann authored
This function determines whether replay gain data is available.
-
Max Kellermann authored
-
- 08 Feb, 2010 1 commit
-
-
Max Kellermann authored
-