diff options
author | Mario Lenz <m@riolenz.de> | 2009-03-15 23:31:07 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-16 19:38:34 +0100 |
commit | 36dab871f12a6e82a7837e782e79a4ec3828de64 (patch) | |
tree | 9bb57001d965d2a1a38712b9f9e4ffd5ad04969a /src/decoder/_flac_common.h | |
parent | d47ef51cb351e8ad09ee7688749cb63a18f42916 (diff) | |
download | mpd-36dab871f12a6e82a7837e782e79a4ec3828de64.tar.gz mpd-36dab871f12a6e82a7837e782e79a4ec3828de64.tar.xz mpd-36dab871f12a6e82a7837e782e79a4ec3828de64.zip |
flac: get CUE track titles from additional FLAC comments
The cue sheet embedded in a flac file doen't contain any information
about track titles and similar. There are three possibilities: Use an
external cue sheet that includes these information, use a tag CUESHEET
with a cue sheet including these information or use tags. I think the
latter is the best option and is already used by other projects.
Diffstat (limited to '')
-rw-r--r-- | src/decoder/_flac_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/_flac_common.h b/src/decoder/_flac_common.h index ec8a47e96..68de7e969 100644 --- a/src/decoder/_flac_common.h +++ b/src/decoder/_flac_common.h @@ -170,7 +170,7 @@ void flac_error_common_cb(const char *plugin, struct flac_data *data); void -flac_vorbis_comments_to_tag(struct tag *tag, +flac_vorbis_comments_to_tag(struct tag *tag, const char *char_tnum, const FLAC__StreamMetadata *block); FLAC__StreamDecoderWriteStatus |