X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mp3_afh.c;h=4093a31394e26442172f6df0a6d906355c5e6ada;hp=ed55d7c02e7a7c50f1b7bc8ca4af950d2eed09b2;hb=2b471378b49c04db7bb84d1e75db981f91ad93db;hpb=732db80493440d188963cea27d822447925ab5ad diff --git a/mp3_afh.c b/mp3_afh.c index ed55d7c0..4093a313 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2007 Andre Noll + * Copyright (C) 2003-2008 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -139,20 +139,21 @@ static void write_info_str(struct afh_info *afhi) int v = mp3.id3_isvalid; snprintf(afhi->info_string, MMD_INFO_SIZE, - "audio_file_info1:%lu x %lums, %u kbit/s (%cbr) %i KHz %s\n" - "audio_file_info2:%s, by %s\n" - "audio_file_info3:A: %s, Y: %s, C: %s\n", - afhi->chunks_total, - tv2ms(&afhi->chunk_tv), - afhi->bitrate, - mp3.vbr? 'v' : 'c', - afhi->frequency / 1000, - header_mode(&mp3.header), - v && *mp3.id3.title? mp3.id3.title : "(title tag not set)", - v && *mp3.id3.artist? mp3.id3.artist : "(artist tag not set)", - v && *mp3.id3.album? mp3.id3.album : "(album tag not set)", - v && *mp3.id3.year? mp3.id3.year : "????", - v && *mp3.id3.comment? mp3.id3.comment : "(comment tag not set)" + "%s: %cbr, %s\n" /* audio file info*/ + "%s: %s, by %s\n" /* taginfo1 */ + "%s: A: %s, Y: %s, C: %s\n", /* taginfo 2*/ + status_item_list[SI_AUDIO_FILE_INFO], mp3.vbr? 'v' : 'c', + header_mode(&mp3.header), + status_item_list[SI_TAGINFO1], v && *mp3.id3.title? + mp3.id3.title : "(title tag not set)", + v && *mp3.id3.artist? + mp3.id3.artist : "(artist tag not set)", + status_item_list[SI_TAGINFO2], + v && *mp3.id3.album? + mp3.id3.album : "(album tag not set)", + v && *mp3.id3.year? mp3.id3.year : "????", + v && *mp3.id3.comment? + mp3.id3.comment : "(comment tag not set)" ); } @@ -162,7 +163,7 @@ static void write_info_str(struct afh_info *afhi) static char *unpad(char *string) { char *pos = string + strlen(string) - 1; - while (isspace(pos[0])) + while (para_isspace(pos[0])) (pos--)[0] = 0; return string; } @@ -272,7 +273,7 @@ static void mp3_get_id3(unsigned char *map, size_t numbytes, off_t *fpos) return; *fpos = numbytes - 128; if (strncmp("TAG", (char *) map + *fpos, 3)) { - PARA_DEBUG_LOG("%s", "no id3 tag\n"); + PARA_DEBUG_LOG("no id3 tag\n"); return; } *fpos = numbytes - 125; @@ -394,7 +395,7 @@ static int mp3_read_info(unsigned char *map, size_t numbytes, PARA_DEBUG_LOG("eof timeout: %lu\n", tv2ms(&afhi->eof_tv)); return 1; err_out: - PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret)); + PARA_ERROR_LOG("%s\n", para_strerror(-ret)); free(afhi->chunk_table); return ret; }