diff options
author | Max Kellermann <max@duempel.org> | 2014-08-29 22:43:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-29 22:52:04 +0200 |
commit | 3158955198fbdc71319cd3418523d851e6d47106 (patch) | |
tree | ab3fff73fe7efa73ed95f9998eec5da66947b4e2 /src/decoder/plugins/FlacMetadata.cxx | |
parent | d9d97bd17bf0d9469dcf00120d3d3fdab87299bc (diff) | |
download | mpd-3158955198fbdc71319cd3418523d851e6d47106.tar.gz mpd-3158955198fbdc71319cd3418523d851e6d47106.tar.xz mpd-3158955198fbdc71319cd3418523d851e6d47106.zip |
TagHandler: pass SongTime to duration()
Diffstat (limited to '')
-rw-r--r-- | src/decoder/plugins/FlacMetadata.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/decoder/plugins/FlacMetadata.cxx b/src/decoder/plugins/FlacMetadata.cxx index b921e8481..0ee6026dd 100644 --- a/src/decoder/plugins/FlacMetadata.cxx +++ b/src/decoder/plugins/FlacMetadata.cxx @@ -179,6 +179,16 @@ flac_scan_comments(const FLAC__StreamMetadata_VorbisComment *comment, handler, handler_ctx); } +gcc_pure +static inline SongTime +flac_duration(const FLAC__StreamMetadata_StreamInfo *stream_info) +{ + assert(stream_info->sample_rate > 0); + + return SongTime::FromScale<uint64_t>(stream_info->total_samples, + stream_info->sample_rate); +} + void flac_scan_metadata(const FLAC__StreamMetadata *block, const struct tag_handler *handler, void *handler_ctx) |