diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 15:02:49 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-09-02 00:20:32 -0700 |
commit | fbe650b1e022f6ca69cc95d79019f218f450e791 (patch) | |
tree | dbeca2cd8af42643efecbb1360c104b95474f9e6 /src/inputPlugins | |
parent | b8eca08893a5738d732355cd581bcfc26c4812ea (diff) | |
download | mpd-fbe650b1e022f6ca69cc95d79019f218f450e791.tar.gz mpd-fbe650b1e022f6ca69cc95d79019f218f450e791.tar.xz mpd-fbe650b1e022f6ca69cc95d79019f218f450e791.zip |
tag: fix the shout and oggflac plugins
During the tag library refactoring, the shout plugin was disabled, and
I forgot about adapting it to the new API. Apply the same fixes to
the oggflac decoder plugin.
Diffstat (limited to '')
-rw-r--r-- | src/inputPlugins/oggflac_plugin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/inputPlugins/oggflac_plugin.c b/src/inputPlugins/oggflac_plugin.c index a12512dfc..841030481 100644 --- a/src/inputPlugins/oggflac_plugin.c +++ b/src/inputPlugins/oggflac_plugin.c @@ -28,6 +28,8 @@ #include "../utils.h" #include "../log.h" +#include <OggFLAC/seekable_stream_decoder.h> + static void oggflac_cleanup(FlacData * data, OggFLAC__SeekableStreamDecoder * decoder) { @@ -216,7 +218,7 @@ static void of_metadata_dup_cb(mpd_unused const OggFLAC__SeekableStreamDecoder * switch (block->type) { case FLAC__METADATA_TYPE_STREAMINFO: if (!data->tag) - data->tag = newMpdTag(); + data->tag = tag_new(); data->tag->time = ((float)block->data.stream_info. total_samples) / block->data.stream_info.sample_rate + 0.5; |