From 5b72e174a139095226118571948d5ab527e9fd44 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Sat, 4 May 2002 17:47:20 +0000 Subject: [PATCH] update to use new metadata interface --- src/plugin_winamp3/flacpcm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin_winamp3/flacpcm.cpp b/src/plugin_winamp3/flacpcm.cpp index 0d9c992..a5ccbe7 100644 --- a/src/plugin_winamp3/flacpcm.cpp +++ b/src/plugin_winamp3/flacpcm.cpp @@ -48,7 +48,7 @@ #include "flacpcm.h" extern "C" { -#include "FLAC/utility.h" +#include "FLAC/metadata.h" }; @@ -89,7 +89,7 @@ int FlacPcm::getInfos(MediaInfo *infos) if(!reader) return 0; //@@@ to be really "clean" we should go through the reader instead of directly to the file... - if(!FLAC__utility_get_streaminfo(infos->getFilename(), &stream_info)) + if(!FLAC__metadata_get_streaminfo(infos->getFilename(), &stream_info)) return 1; id3v1_struct tag; -- 2.7.4