- 17 Aug, 2021 2 commits
-
-
Samir Benmendil authored
Prevent a segfault when accessing album art. Fix #1224 #1225
-
Max Kellermann authored
-
- 06 Aug, 2021 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
This replaces 967af603 with a more effective workaround. Closes https://github.com/MusicPlayerDaemon/MPD/issues/822
-
- 05 Aug, 2021 6 commits
-
-
Max Kellermann authored
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1019
-
Max Kellermann authored
Prepending "../" to absolute URIs would break them.
-
Max Kellermann authored
If UpdateStreamTag() gets called while an initial seek is pending, the result will never be submitted to a MusicChunk. By avoiding the UpdateStreamTag() call in that case (by moving UpdateStreamTag() to after the PrepareInitialSeek() check), the song_tag is preserved until UpdateStreamTag() is called again from SubmitData(). This fixes missing tags in the "httpd" output. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1137
-
Max Kellermann authored
We need this even when AFMT_S24_PACKED is not available, for the correct channel order in multi-channel files. Internally, MPD uses FLAC channel order, but OSS uses the same channel order as ALSA.
-
Cebtenzzre authored
Also, use RemoveAll() instead of directly clearing TagBuilder::items in most cases, as its elements represent references that must be released. Closes #1023
-
Max Kellermann authored
This plugin has been defunct for several years. Tidal has not ever replied to any of my emails, so they're apparently not interested in MPD support.
-
- 02 Aug, 2021 1 commit
-
-
Max Kellermann authored
ProxyInputStream::Read() assigns the `offset` field, which is the wrong offset because it does not consider Icy metadata removed from the stream. Therefore, after every ProxyInputStream::Read() call, IcyInputStream::Read() needs to override this offset. This was missing at the end of the stream, when Read()==0. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1216
-
- 30 Jul, 2021 1 commit
-
-
Max Kellermann authored
this->OwnsTag() accesses fields that are not yet initialized.
-
- 16 Jul, 2021 2 commits
-
-
Max Kellermann authored
Instead of checking for "cover.jpg" in the virtual directory representing the CUE sheet, check its enclosing directory. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1206
-
Max Kellermann authored
-
- 23 Jun, 2021 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
This fixes reading ID3 tags on remote files with the commands "readcomments" and "readpicture". Closes https://github.com/MusicPlayerDaemon/MPD/issues/1180
-
- 31 May, 2021 2 commits
-
-
Max Kellermann authored
Fixes the error: IllegalStateException: Not allowed to start service Intent { cmp=org.musicpd/.Main (has extras) }: app is in background
-
Max Kellermann authored
av_demuxer_iterate() was added in libavformat 58.9.100. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1178
-
- 26 May, 2021 2 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
From libavformat/mov.c. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1173
-
- 25 May, 2021 2 commits
-
-
Max Kellermann authored
When updating everything, this did work, but if updating only a subdirectory, the ".mpdignore" in the parents were not used. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1172
-
Max Kellermann authored
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1171
-
- 24 May, 2021 1 commit
-
-
Max Kellermann authored
-
- 22 May, 2021 3 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1168
-
Max Kellermann authored
-
- 19 May, 2021 1 commit
-
-
Max Kellermann authored
-
- 18 May, 2021 1 commit
-
-
Max Kellermann authored
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1156
-
- 17 May, 2021 1 commit
-
-
Max Kellermann authored
With the default value CURLAUTH_ANY, libcurl needs to probe for authentication methods first, and only the second request will have an Authorization header. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1155
-
- 26 Apr, 2021 2 commits
-
-
Max Kellermann authored
This enables the JACK output plugin on Windows, but doesn't link against libjack64.dll, instead loads the DLL at runtime with LoadLibrary(). This kludge avoids the extremely fragile JACK shared memory protocol by using the system's libjack64.dll, without requiring the same DLL at build time.
-
Max Kellermann authored
Fixes crash when pausing the default partition after an output was moved to another partition. Closes https://github.com/MusicPlayerDaemon/MPD/issues/1147
-
- 15 Apr, 2021 1 commit
-
-
Max Kellermann authored
This reverts commit 1532983f. This optimization was bad because now all strings match if they are a prefix of another string, and this caused collisions in the tag string pool, corrupting the database.
-
- 13 Mar, 2021 1 commit
-
-
John Regan authored
Upcoming release of game-music-emu will support it, details here: https://bitbucket.org/mpyne/game-music-emu/pull-requests/23/rsn-support
-
- 10 Mar, 2021 1 commit
-
-
bitkeeper authored
The current http output doesn't provide a header for cross-origin support. This prevents to use the mpd http stream directly from an other webapplication due the origin from the webpage differs from then the audio stream. The fix is to add the following header to the http response: Access-Control-Allow-Origin: *
-
- 05 Mar, 2021 2 commits
-
-
Shen-Ta Hsieh authored
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1102
-
Max Kellermann authored
-
- 04 Mar, 2021 3 commits
-
-
Shen-Ta Hsieh authored
* Use PcmExport for 24bit packed output
-
Érico Rolim authored
Per the manual for strptime, %F is equivalent %Y-%m-%d, so use that directly.
-
Érico Rolim authored
ParseTimePoint. %Z is a glibc extension to strptime, and is a no-op there, due to the mapping between timezone names and their definition (especially when the name comes from a different machine) being ambiguous / impossible. Time in HTTP headers is guaranteed to be UTC. Passing an unknown format to strptime() implementations that don't support it will generally cause them to return NULL, which will lead to ParseTimePoint throwing an exception and ParseTimeStamp using an unnecessary fallback. Since the timezone name goes at the end of the string, we don't need to use %Z to skip it (could be an issue in a different time stamp format), so simply removing %Z works best.
-
- 22 Feb, 2021 1 commit
-
-
Max Kellermann authored
Regression by commit a22d1c88 Closes https://github.com/MusicPlayerDaemon/MPD/issues/1097
-