Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-10-28 | MusicChunk: return WritableBuffer | Max Kellermann | 3 | -16/+15 | |
2013-10-28 | MusicChunk: use uint8_t instead of char | Max Kellermann | 1 | -1/+1 | |
2013-10-28 | DecoderControl: convert mutex and client_cond to a reference | Max Kellermann | 3 | -24/+29 | |
Share the Mutex between the DecoderThread and the PlayerThread. This simplifies synchronization between the two threads and fixes a freeze problem: while the PlayerThread waits for the DeocderThread, it cannot answer requests from the main thread, and the main thread will block until the DecoderThread finishes. | |||||
2013-10-28 | player_control: rename to PlayerControl | Max Kellermann | 21 | -134/+134 | |
2013-10-28 | decoder_control: rename to DecoderControl | Max Kellermann | 8 | -47/+47 | |
2013-10-26 | output/httpd: accept icy-metadata with and without space | Oddegamra | 1 | -1/+2 | |
Some, or most, Win32 audio players will pass "icy-metadata:1" to streaming servers. MPD expects a space between ":" and "1" at this point, and thus does not send any stream metadata. This applies to foobar2k and Winamp, for example. According to forums.radiotoolbox.com/viewtopic.php?t=74 not having a space there is expected behavior, so maybe MPD could accept both forms to determine if metadata should be sent or not. | |||||
2013-10-26 | command: new commands "findin", "searchin" with base URI | Max Kellermann | 3 | -4/+25 | |
2013-10-26 | FileCommands: "readcomments" understands APE and ID3v2 tags | Max Kellermann | 1 | -0/+5 | |
Implements Mantis ticket 3843. | |||||
2013-10-26 | FileCommands: fix wrong control character check in IsValidValue() | Max Kellermann | 1 | -1/+1 | |
Check was the wrong way around, and made all valid values invisible. | |||||
2013-10-26 | ApeTag: support multiple values per name | Max Kellermann | 1 | -2/+7 | |
2013-10-26 | ApeTag: move code to ForEachValue() | Max Kellermann | 1 | -16/+30 | |
2013-10-26 | ApeTag: simplify the "recognized" flag | Max Kellermann | 1 | -4/+1 | |
2013-10-26 | TagFile: use Path instead of const char * | Max Kellermann | 14 | -29/+47 | |
2013-10-26 | PlayerControl: initialize tagged_song in constructor | Max Kellermann | 1 | -0/+1 | |
2013-10-26 | DecoderControl: move code/attributes to new class MixRampInfo | Max Kellermann | 9 | -83/+120 | |
2013-10-26 | DecoderThread: move code to DecoderControl::CycleMixRamp() | Max Kellermann | 3 | -6/+12 | |
2013-10-26 | DecoderControl: add MixRamp getters | Max Kellermann | 2 | -2/+14 | |
2013-10-26 | CrossFade: reimplement mixramp_interpolate() without strtok() | Max Kellermann | 2 | -26/+19 | |
Don't require a writable string, and don't modify it. | |||||
2013-10-26 | CrossFade: apply coding style | Max Kellermann | 2 | -13/+15 | |
2013-10-26 | CrossFade: merge "return" statements using "break" | Max Kellermann | 1 | -2/+4 | |
2013-10-26 | CrossFade: use nullptr instead of NULL | Max Kellermann | 1 | -7/+7 | |
2013-10-26 | util/NumberParser: add ParseFloat() | Max Kellermann | 1 | -0/+6 | |
2013-10-26 | util/NumberParser: indent | Max Kellermann | 1 | -10/+10 | |
2013-10-25 | command: new command "readcomments" lists arbitrary file tags | Max Kellermann | 3 | -0/+154 | |
2013-10-25 | ReplayGainInfo: refactor to a class | Max Kellermann | 10 | -60/+57 | |
2013-10-25 | ReplayGainInfo: use CamelCase for struct name | Max Kellermann | 31 | -122/+115 | |
2013-10-25 | ReplayGainConfig: add "pure" attributes | Max Kellermann | 1 | -0/+3 | |
2013-10-25 | output/httpd: support HEAD requests | Max Kellermann | 2 | -5/+29 | |
2013-10-25 | output/httpd: remove bogus assertion | Max Kellermann | 1 | -1/+0 | |
2013-10-25 | OtherCommands: re-add the "volume" command | Max Kellermann | 3 | -0/+37 | |
This command was removed by commit 206392ad (MPD 0.16), even though it was been proven useful for some very simple clients. On request, I add it to the protocol again. | |||||
2013-10-25 | MixerAll, Volume: add "pure" attributes | Max Kellermann | 2 | -0/+8 | |
2013-10-24 | decoder/opus: support replay gain | Max Kellermann | 3 | -1/+24 | |
Parse the R128_TRACK_GAIN comment string. | |||||
2013-10-24 | decoder/Opus: implement seeking | Max Kellermann | 3 | -6/+49 | |
2013-10-24 | decoder/opus: provide time stamps | Max Kellermann | 1 | -0/+5 | |
Call decoder_timestamp(). This is not necessary currently, but will be as soon as we implement seeking. | |||||
2013-10-24 | decoder/opus: show song duration during playback | Max Kellermann | 1 | -1/+57 | |
This requires seeking to the end-of-stream, checking its granulepos, and then seeking back to the previous file position. We do this only for local files. | |||||
2013-10-24 | decoder/opus: call ogg_stream_reset() in OggSeekPageAtOffset() | Max Kellermann | 1 | -0/+4 | |
2013-10-24 | decoder/opus: move code to OggSeekPageAtOffset() | Max Kellermann | 1 | -4/+11 | |
2013-10-24 | decoder/opus: move SeekFindEOS() to OggFind.cxx | Max Kellermann | 3 | -19/+31 | |
2013-10-24 | decoder/opus: make opus_sample_rate constexpr | Max Kellermann | 1 | -1/+1 | |
2013-10-24 | decoder/opus: use std::copy_n() instead of memcpy() | Max Kellermann | 1 | -2/+3 | |
2013-10-24 | decoder/opus: support all core tag names | Max Kellermann | 1 | -0/+5 | |
2013-10-24 | decoder/opus: move code to ParseOpusTagName() | Max Kellermann | 1 | -1/+8 | |
2013-10-24 | decoder/opus: use delete[] for the OpusReader::ReadString() result | Max Kellermann | 1 | -1/+1 | |
2013-10-24 | DecoderAPI: add "pure" attributes | Max Kellermann | 1 | -0/+2 | |
2013-10-23 | decoder/wavpack: move variable declarations | Max Kellermann | 1 | -53/+34 | |
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | 72 | -483/+494 | |
2013-10-23 | InputInternal: remove obsolete library | Max Kellermann | 12 | -83/+0 | |
2013-10-23 | UriUtil: uri_remove_auth() returns std::string | Max Kellermann | 4 | -31/+19 | |
2013-10-23 | InputStream: add method Rewind() | Max Kellermann | 9 | -28/+31 | |
2013-10-23 | DecoderThread: remove unused function deconst_plugin() | Max Kellermann | 1 | -9/+0 | |