1
0
Fork 0
forked from len0rd/rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15841 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Brandon Low 2007-11-28 05:13:05 +00:00
parent 3386dd7be9
commit c1b718403a
2 changed files with 4 additions and 0 deletions

View file

@ -325,6 +325,7 @@ bool get_metadata(struct mp3entry* id3, int fd, const char* trackname)
return true; return true;
} }
#if CONFIG_CODEC == SWCODEC
void strip_tags(int handle_id) void strip_tags(int handle_id)
{ {
int i; int i;
@ -364,3 +365,4 @@ strip_ape_tag:
logf("Cutting off APE tag (%ldB)", len); logf("Cutting off APE tag (%ldB)", len);
bufcuttail(handle_id, len); bufcuttail(handle_id, len);
} }
#endif /* CONFIG_CODEC == SWCODEC */

View file

@ -24,7 +24,9 @@
unsigned int probe_file_format(const char *filename); unsigned int probe_file_format(const char *filename);
bool get_metadata(struct mp3entry* id3, int fd, const char* trackname); bool get_metadata(struct mp3entry* id3, int fd, const char* trackname);
#if CONFIG_CODEC == SWCODEC
void strip_tags(int handle_id); void strip_tags(int handle_id);
#endif
#endif #endif