Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Copyright year 2015 | Max Kellermann | 2015-01-01 | 1 | -1/+1 |
| | |||||
* | Tag: use SignedSongTime for the song duration | Max Kellermann | 2014-08-29 | 1 | -4/+9 |
| | |||||
* | db/LightSong: use std::chrono::duration for start_ms and end_ms | Max Kellermann | 2014-08-28 | 1 | -2/+2 |
| | |||||
* | DetachedSong: use std::chrono::duration for start_ms and end_ms | Max Kellermann | 2014-08-28 | 1 | -5/+6 |
| | |||||
* | db/LightSong: make "real_uri" a pointer | Max Kellermann | 2014-02-04 | 1 | -1/+1 |
| | | | | | Reduce overhead. LightSong can always point to the "real" allocated string. | ||||
* | Database*: move to db/ | Max Kellermann | 2014-01-24 | 1 | -1/+1 |
| | |||||
* | DetachedSong: un-inline the destructor | Max Kellermann | 2014-01-23 | 1 | -0/+5 |
| | | | | Reduce bloat. | ||||
* | LightSong: add attribute "real_uri" | Max Kellermann | 2014-01-21 | 1 | -0/+1 |
| | | | | | The UPnP database plugin can now show relative song URIs for remote songs. | ||||
* | DetachedSong: add attribute "real_uri" | Max Kellermann | 2014-01-21 | 1 | -2/+12 |
| | | | | Prepare for UPnP songs that retain there database identity. | ||||
* | LightSong: new class to be used by DatabasePlugin callbacks | Max Kellermann | 2014-01-19 | 1 | -3/+3 |
| | | | | | Detach the Song class completely from the public API, only to be used by SimpleDatabase and the update thread. | ||||
* | Song: embed the Tag object statically into class Song | Max Kellermann | 2014-01-19 | 1 | -1/+1 |
| | | | | | Reduces overhead because we need to manage only one memory allocation. According to valgrind/massif, we save 7%. | ||||
* | DetachedSong: fork of struct Song | Max Kellermann | 2014-01-09 | 1 | -0/+51 |
From now on, struct Song will be used by the database only, and DetachedSong will be used by everybody else. DetachedSong is easier to use, but Song has lower overhead. |