From 36dab871f12a6e82a7837e782e79a4ec3828de64 Mon Sep 17 00:00:00 2001 From: Mario Lenz Date: Sun, 15 Mar 2009 23:31:07 +0100 Subject: 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. --- src/decoder/oggflac_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/decoder/oggflac_plugin.c') diff --git a/src/decoder/oggflac_plugin.c b/src/decoder/oggflac_plugin.c index d31df76d5..fedfdcb48 100644 --- a/src/decoder/oggflac_plugin.c +++ b/src/decoder/oggflac_plugin.c @@ -180,7 +180,7 @@ static void of_metadata_dup_cb(G_GNUC_UNUSED const OggFLAC__SeekableStreamDecode block->data.stream_info.sample_rate + 0.5; return; case FLAC__METADATA_TYPE_VORBIS_COMMENT: - flac_vorbis_comments_to_tag(data->tag, block); + flac_vorbis_comments_to_tag(data->tag, NULL, block); default: break; } -- cgit v1.2.3