Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. |