decoder/flac: pass VorbisComment to flac_parse_mixramp()

This commit is contained in:
Max Kellermann
2014-09-24 22:50:28 +02:00
parent 8a7ff6a6fd
commit f32d34b965
3 changed files with 4 additions and 6 deletions

View File

@@ -101,7 +101,8 @@ void flac_metadata_common_cb(const FLAC__StreamMetadata * block,
if (flac_parse_replay_gain(rgi, block->data.vorbis_comment))
decoder_replay_gain(data->decoder, &rgi);
decoder_mixramp(data->decoder, flac_parse_mixramp(block));
decoder_mixramp(data->decoder,
flac_parse_mixramp(block->data.vorbis_comment));
data->tag = flac_vorbis_comments_to_tag(&block->data.vorbis_comment);
break;