ifdef out debug code

This commit is contained in:
Josh Coalson 2002-06-05 06:15:50 +00:00
parent d63eb24abe
commit d40f73d403

View File

@ -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, '/');