Commit 78c73fb9 authored by Max Kellermann's avatar Max Kellermann

MusicChunk: reorder attributes to reduce padding

parent a06bf388
......@@ -53,6 +53,12 @@ struct MusicChunkInfo {
MusicChunk *other = nullptr;
/**
* An optional tag associated with this chunk (and the
* following chunks); appears at song boundaries.
*/
std::unique_ptr<Tag> tag;
/**
* The current mix ratio for cross-fading: 1.0 means play 100%
* of this chunk, 0.0 means play 100% of the "other" chunk.
*/
......@@ -68,12 +74,6 @@ struct MusicChunkInfo {
SignedSongTime time;
/**
* An optional tag associated with this chunk (and the
* following chunks); appears at song boundaries.
*/
std::unique_ptr<Tag> tag;
/**
* Replay gain information associated with this chunk.
* Only valid if the serial is not 0.
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment