diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 15:02:49 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-29 15:02:49 +0200 |
commit | 01f9684f704a244467748a12832b562b7a3d09e5 (patch) | |
tree | fa2f0a61eca90b7d5f573bb8503d89fe68778375 /src/inputPlugins | |
parent | 37d77caa3c262c99ce3697224c1423e293d420ee (diff) | |
download | mpd-01f9684f704a244467748a12832b562b7a3d09e5.tar.gz mpd-01f9684f704a244467748a12832b562b7a3d09e5.tar.xz mpd-01f9684f704a244467748a12832b562b7a3d09e5.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 'src/inputPlugins')
-rw-r--r-- | src/inputPlugins/oggflac_plugin.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/inputPlugins/oggflac_plugin.c b/src/inputPlugins/oggflac_plugin.c index e0527f7b7..9a0d6b370 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) { @@ -210,7 +212,7 @@ static void of_metadata_dup_cb(const OggFLAC__SeekableStreamDecoder * decoder, 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; @@ -294,7 +296,7 @@ fail: } /* public functions: */ -static MpdTag *oggflac_TagDup(char *file) +static struct tag *oggflac_TagDup(char *file) { InputStream inStream; OggFLAC__SeekableStreamDecoder *decoder; |