update to use new metadata interface

This commit is contained in:
Josh Coalson 2002-05-04 17:47:20 +00:00
parent 19b7b58411
commit 5b72e174a1
1 changed files with 2 additions and 2 deletions

View File

@ -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;