From d40f73d4036711f04b37fef47faea5cccac81d26 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Wed, 5 Jun 2002 06:15:50 +0000 Subject: [PATCH] ifdef out debug code --- src/plugin_winamp3/flacpcm.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugin_winamp3/flacpcm.cpp b/src/plugin_winamp3/flacpcm.cpp index fe3d89a..612eab4 100644 --- a/src/plugin_winamp3/flacpcm.cpp +++ b/src/plugin_winamp3/flacpcm.cpp @@ -94,7 +94,6 @@ int FlacPcm::getInfos(MediaInfo *infos) id3v1_struct tag; - //@@@ ditto here... bool has_tag = get_id3v1_tag_(infos->getFilename(), &tag); infos->setLength(lengthInMsec()); @@ -307,10 +306,13 @@ bool get_id3v1_tag_(const char *filename, id3v1_struct *tag) const char *temp; FILE *f = fopen(filename, "rb"); memset(tag, 0, sizeof(id3v1_struct)); +#if 0 +@@@@ strcpy(tag->title,"Sonata K.42"); strcpy(tag->artist,"Domenico Scarlatti"); strcpy(tag->album,"Narcisso Yepes Plays Scarlatti"); sprintf(tag->description, "%s - %s", tag->artist, tag->title); +#endif /* set the title and description to the filename by default */ temp = strrchr(filename, '/'); -- 2.7.4