diff options
Diffstat (limited to 'src/song.h')
-rw-r--r-- | src/song.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/song.h b/src/song.h index 832f3d700..2bebee64e 100644 --- a/src/song.h +++ b/src/song.h @@ -31,6 +31,18 @@ struct song { struct tag *tag; struct directory *parent; time_t mtime; + + /** + * Start of this sub-song within the file in milliseconds. + */ + unsigned start_ms; + + /** + * End of this sub-song within the file in milliseconds. + * Unused if zero. + */ + unsigned end_ms; + char uri[sizeof(int)]; }; |