song_save: save start_ms and end_ms

While this is not useful for the database, it may become useful for
reusing this code for the state file.
This commit is contained in:
Max Kellermann 2010-07-25 12:09:28 +02:00
parent 8341a9f7b2
commit b01235e330

View File

@ -48,6 +48,11 @@ song_save(struct song *song, void *data)
fprintf(fp, SONG_BEGIN "%s\n", song->uri);
if (song->end_ms > 0)
fprintf(fp, "Range: %u-%u\n", song->start_ms, song->end_ms);
else if (song->start_ms > 0)
fprintf(fp, "Range: %u-\n", song->start_ms);
if (song->tag != NULL)
tag_save(fp, song->tag);
@ -103,6 +108,12 @@ song_load(FILE *fp, struct directory *parent, const char *uri,
song->tag->time = atoi(value);
} else if (strcmp(line, SONG_MTIME) == 0) {
song->mtime = atoi(value);
} else if (strcmp(line, "Range") == 0) {
char *endptr;
song->start_ms = strtoul(value, &endptr, 10);
if (*endptr == '-')
song->end_ms = strtoul(endptr + 1, NULL, 10);
} else {
if (song->tag != NULL)
tag_end_add(song->tag);