[xiph-cvs] cvs commit: ices/src id3.c
Brendan
brendan at xiph.org
Mon Mar 10 12:41:05 PST 2003
brendan 03/03/10 15:41:04
Modified: src id3.c
Log:
Debug logging cosmetics
Revision Changes Path
1.23 +3 -3 ices/src/id3.c
Index: id3.c
===================================================================
RCS file: /cvs/ice/ices/src/id3.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- id3.c 9 Mar 2003 08:02:26 -0000 1.22
+++ id3.c 10 Mar 2003 20:41:04 -0000 1.23
@@ -106,7 +106,7 @@
while (song_name[strlen (song_name) - 1] == ' ')
song_name[strlen (song_name) - 1] = '\0';
- ices_log_debug ("ID3v1 song: %s", song_name);
+ ices_log_debug ("ID3v1: Title: %s", song_name);
if (read (source->fd, artist, 30) != 30) {
ices_log ("Error reading ID3v1 artist");
@@ -115,7 +115,7 @@
while (artist[strlen (artist) - 1] == '\040')
artist[strlen (artist) - 1] = '\0';
- ices_log_debug ("ID3v1 artist: %s", artist);
+ ices_log_debug ("ID3v1: Artist: %s", artist);
ices_metadata_set (artist, song_name);
}
@@ -186,7 +186,7 @@
remaining = tag.len - tag.pos;
if (remaining) {
- ices_log_debug ("Skipping %d bytes to end of tag", remaining);
+ ices_log_debug ("ID3v2: Skipping %d bytes to end of tag", remaining);
id3v2_skip_data (source, &tag, remaining);
}
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list