Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-07-30 | StateFile: use nullptr instead of NULL | Max Kellermann | |
2014-07-30 | encoder/opus: use nullptr instead of NULL | Max Kellermann | |
2014-07-30 | system/Resolver: use nullptr instead of NULL | Max Kellermann | |
2014-07-30 | pcm: use nullptr instead of NULL | Max Kellermann | |
2014-07-30 | playlist/extm3u: use nullptr instead of NULL | Max Kellermann | |
2014-07-30 | android build 5 | Max Kellermann | |
2014-07-30 | Makefile.am: add missing backslash | Max Kellermann | |
Fixes breakage by commit 1a619522 | |||
2014-07-30 | Merge tag 'v0.18.12' | Max Kellermann | |
2014-07-30 | release v0.18.12v0.18.12 | Max Kellermann | |
2014-07-30 | Main: don't require mpd.conf on Android | Max Kellermann | |
Don't fail to start if mpd.conf does not exist; just use default values. | |||
2014-07-30 | android/Main: indicate when the native code has quit | Max Kellermann | |
Let the user know that MPD has failed. Not the best thing to do, but better than pretending it still runs. | |||
2014-07-30 | android/Loader: fix indent | Max Kellermann | |
2014-07-30 | Makefile.am: *.apk depends on android/src/*.java | Max Kellermann | |
Invoke "ant" when a Java source is modified. | |||
2014-07-30 | Makefile.am: move duplicate specification to APK_DEPS | Max Kellermann | |
2014-07-30 | Makefile.am: release .apk depends on icon | Max Kellermann | |
Missing piece from commit e0ca4347 | |||
2014-07-30 | Makefile.am: new zipalign path | Max Kellermann | |
2014-07-29 | db/proxy: implement Update() | Max Kellermann | |
2014-07-29 | db/Interface: add virtual method Update() | Max Kellermann | |
For database plugins that don't use the UpdateService. | |||
2014-07-29 | OtherCommands: split handle_update() | Max Kellermann | |
2014-07-14 | Android: generate icon from SVG | Max Kellermann | |
2014-07-14 | import MPD SVG icon | Qball Cow | |
2014-07-14 | util/Cast: add "const" overload | Max Kellermann | |
2014-07-14 | util/Cast: add missing include | Max Kellermann | |
2014-07-14 | util/Cast: fix indent | Max Kellermann | |
2014-07-14 | util/Cast: reimplement as template without macro | Max Kellermann | |
2014-07-14 | util/Cast: add const overloads | Max Kellermann | |
2014-07-14 | util/Cast: suppress "unused function" warning by using "inline" | Max Kellermann | |
2014-07-14 | util/Cast: fix indent | Max Kellermann | |
2014-07-12 | decoder/dsdiff: move artist/title/id3 offsets out of DsdiffMetaData | Max Kellermann | |
They are only used inside dsdiff_read_metadata_extra(). | |||
2014-07-12 | Merge branch 'v0.18.x' | Max Kellermann | |
2014-07-12 | decoder/dsdiff: simplify dsdlib_skip() call | Max Kellermann | |
2014-07-12 | decoder/dsdiff: simplify loop condition, merge branches | Max Kellermann | |
2014-07-12 | decoder/dsdiff: ignore garbage null byte at end of file | Max Kellermann | |
Failure to read another chunk header is not fatal. Continue to read metadata. | |||
2014-07-12 | decoder/dsdiff: fix metadata parser bug (uninitialized variables) | Max Kellermann | |
2014-07-12 | PlaylistSong: always merge tags and LastModified | Max Kellermann | |
2014-07-12 | QueueSave: use the long format to save partial songs | Max Kellermann | |
Previously, only streams were saved with range and tags, but this is necessary for all "partial" songs (e.g. CUE tracks). | |||
2014-07-12 | QueueCommands: new command "rangeid" | Max Kellermann | |
Manipulates the playback range of a queued song. | |||
2014-07-12 | PlaylistSong, CueParser: don't override Tag::time | Max Kellermann | |
Now that Song::GetDuration() is used (which considers start_ms and end_ms), we don't need to override the Tag's duration value. | |||
2014-07-12 | SongPrint: use DetachedSong::GetDuration() | Max Kellermann | |
Fixes the bogus duration of the last track in a CUE sheet. | |||
2014-07-12 | TagPrint: split tag_print() | Max Kellermann | |
Add one method that prints only the tag values, but not the song duration. | |||
2014-07-12 | Tag: add class const_iterator and methods begin(), end() | Max Kellermann | |
Enables using range-based "for". | |||
2014-07-12 | DecoderBuffer: implement _skip() using decoder_skip() | Max Kellermann | |
2014-07-12 | DecoderBuffer: add method _need() | Max Kellermann | |
Move code from the FAAD decoder plugin. | |||
2014-07-12 | DecoderBuffer: remove unused method _is_full() | Max Kellermann | |
2014-07-12 | decoder/faad: eliminate the adts_find_frame() loop | Max Kellermann | |
This loop is completely unnecessary. We just need to find the first ADTS frame and feed it into NeAACDecInit(). | |||
2014-07-12 | decoder/faad: split faad_stream_decode() | Max Kellermann | |
Eliminate duplicate cleanup code. | |||
2014-07-12 | DecoderBuffer: remove unused method _is_empty() | Max Kellermann | |
2014-07-12 | Merge branch 'v0.18.x' | Max Kellermann | |
2014-07-12 | decoder/faad: estimate song duration for remote files | Max Kellermann | |
Previously, MPD tried to slurp the whole song file, count the number of frames and calculate the song duration from that. That however is extremely expensive for remote files, and will delay playback for a long time. Workaround: check only the first 128 frames and try to extrapolate from here. Fixes Mantis ticket 0004035. | |||
2014-07-12 | DecoderBuffer: add method _available() | Max Kellermann | |