Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-26 | DecoderThread: move code to DecoderControl::CycleMixRamp() | Max Kellermann | |
2013-10-26 | DecoderControl: add MixRamp getters | Max Kellermann | |
2013-10-26 | CrossFade: reimplement mixramp_interpolate() without strtok() | Max Kellermann | |
Don't require a writable string, and don't modify it. | |||
2013-10-26 | CrossFade: apply coding style | Max Kellermann | |
2013-10-26 | test/test_mixramp: unit test for mixramp_interpolate() | Max Kellermann | |
2013-10-26 | CrossFade: merge "return" statements using "break" | Max Kellermann | |
2013-10-26 | CrossFade: use nullptr instead of NULL | Max Kellermann | |
2013-10-26 | util/NumberParser: add ParseFloat() | Max Kellermann | |
2013-10-26 | util/NumberParser: indent | Max Kellermann | |
2013-10-26 | INSTALL: mention clang | Max Kellermann | |
2013-10-26 | INSTALL: mention minimum gcc version | Max Kellermann | |
2013-10-25 | command: new command "readcomments" lists arbitrary file tags | Max Kellermann | |
2013-10-25 | ReplayGainInfo: refactor to a class | Max Kellermann | |
2013-10-25 | ReplayGainInfo: use CamelCase for struct name | Max Kellermann | |
2013-10-25 | ReplayGainConfig: add "pure" attributes | Max Kellermann | |
2013-10-25 | output/httpd: support HEAD requests | Max Kellermann | |
2013-10-25 | output/httpd: remove bogus assertion | Max Kellermann | |
2013-10-25 | OtherCommands: re-add the "volume" command | Max Kellermann | |
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 | |
2013-10-24 | decoder/opus: support replay gain | Max Kellermann | |
Parse the R128_TRACK_GAIN comment string. | |||
2013-10-24 | decoder/Opus: implement seeking | Max Kellermann | |
2013-10-24 | decoder/opus: provide time stamps | Max Kellermann | |
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 | |
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 | |
2013-10-24 | test/run_decoder: print the song duration | Max Kellermann | |
2013-10-24 | decoder/opus: move code to OggSeekPageAtOffset() | Max Kellermann | |
2013-10-24 | decoder/opus: move SeekFindEOS() to OggFind.cxx | Max Kellermann | |
2013-10-24 | decoder/opus: make opus_sample_rate constexpr | Max Kellermann | |
2013-10-24 | decoder/opus: use std::copy_n() instead of memcpy() | Max Kellermann | |
2013-10-24 | decoder/opus: support all core tag names | Max Kellermann | |
2013-10-24 | decoder/opus: move code to ParseOpusTagName() | Max Kellermann | |
2013-10-24 | decoder/opus: use delete[] for the OpusReader::ReadString() result | Max Kellermann | |
2013-10-24 | DecoderAPI: add "pure" attributes | Max Kellermann | |
2013-10-23 | decoder/wavpack: move variable declarations | Max Kellermann | |
2013-10-23 | input_stream: rename struct to InputStream | Max Kellermann | |
2013-10-23 | InputInternal: remove obsolete library | Max Kellermann | |
2013-10-23 | UriUtil: uri_remove_auth() returns std::string | Max Kellermann | |
2013-10-23 | test/test_util: unit test for libutil.a | Max Kellermann | |
2013-10-23 | InputStream: add method Rewind() | Max Kellermann | |
2013-10-23 | DecoderThread: remove unused function deconst_plugin() | Max Kellermann | |
2013-10-22 | Playlist: refresh new tags after database update | Max Kellermann | |
Fixes regression from commit e96779d. | |||
2013-10-22 | decoder/flac: fix tag name comparison | Max Kellermann | |
2013-10-22 | Playlist*, Queue: use GetDatabase() overload without Error | Max Kellermann | |
Don't use IgnoreError() when there's an overload that does not try to give us one. | |||
2013-10-22 | Queue: add method ModifyAtPosition() | Max Kellermann | |
2013-10-22 | Queue: ModifyAtOrder() does not increment version | Max Kellermann | |
Leave that to the caller, allowing it to modify multiple items at a time. | |||
2013-10-22 | Partition: add method DatabaseModified() | Max Kellermann | |
2013-10-22 | UpdateRemove: include cleanup | Max Kellermann | |
2013-10-22 | DecoderList: fix the decoder_plugin_from_mime_type() return value | Max Kellermann | |
2013-10-22 | PlaylistEdit: compare Song URIs in DeleteSong() | Max Kellermann | |
Fixes purging deleted songs from the queue after update. Fixes regression from commit e96779d. | |||
2013-10-22 | Playlist: copy stream tags from the PlayerThread | Max Kellermann | |
Finally restores an important feature that has been broken for several months when the PlayerThread started working with Song copies instead of pointers to the Queue's Song instances (commit e96779d). |