X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mp3_afh.c;h=9ef5dffb76a6c46542d827d3674e202ee27204a9;hp=a3e3c5c330466e672aa80ab58a7a462443bdef7f;hb=fd7ddaebab6613627a070e8867ace2f2eb3d4cc3;hpb=381d053808a93efec734496bfd09f40176d4e6ac diff --git a/mp3_afh.c b/mp3_afh.c index a3e3c5c3..9ef5dffb 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -28,11 +28,8 @@ * Johannes Overmann */ -#include "server.cmdline.h" #include "server.h" -#include "vss.h" #include "error.h" -#include "fd.h" #include "string.h" /** \cond some defines and structs which are only used in this file */ @@ -72,8 +69,6 @@ struct mp3info { int id3_isvalid; struct id3tag id3; int vbr; - long unsigned br_average; - int freq; }; /** \endcond */ @@ -115,9 +110,19 @@ static const char *header_mode(struct mp3header *h) h->mode = 4; /* invalid */ return mode_text[h->mode]; } + +static int header_channels(struct mp3header *h) +{ + if (h->mode > 3) + return 0; + if (h->mode < 3) + return 2; + return 1; +} + static int header_bitrate(struct mp3header *h) { - if (h->layer > 3 || h->bitrate > 14) + if (!h->layer || h->layer > 3 || h->bitrate > 14 || !h->bitrate) return -E_HEADER_BITRATE; return mp3info_bitrate[h->version & 1][3 - h->layer][h->bitrate - 1]; } @@ -143,14 +148,14 @@ static void write_info_str(struct audio_format_info *afi) int v = mp3.id3_isvalid; snprintf(afi->info_string, MMD_INFO_SIZE, - "audio_file_info1:%lu x %lums, %lu kbit/s (%cbr) %i KHz %s\n" + "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", afi->chunks_total, tv2ms(&afi->chunk_tv), - mp3.br_average, + afi->bitrate, mp3.vbr? 'v' : 'c', - mp3.freq / 1000, + afi->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)", @@ -187,15 +192,13 @@ static int compare_headers(struct mp3header *h1,struct mp3header *h2) return 0; } -/** +/* * get next MP3 frame header. * - * \param stream to read the header from - * \param header structure that gets filled in by get_header() - * - * \return On success, the header frame length is returned. A return value of - * zero means that we did not retrieve a valid frame header, and a negative - * return value indicates an error. + * On success, the header frame length is returned and the given header + * structure that is filled in. A return value of zero means that we did not + * retrieve a valid frame header, and a negative return value indicates an + * error. */ static int get_header(unsigned char *map, off_t numbytes, off_t *fpos, struct mp3header *header) @@ -230,13 +233,11 @@ out: return ret; } -/** +/* * find the next mp3 header * - * \return On success, the length of the next frame header. If the end of the - * file was reached, the function returns zero. On errors, a negative value is - * returned. - * + * Return the length of the next frame header or zero if the end of the file is + * reached. */ static int mp3_seek_next_header(unsigned char *map, off_t numbytes, off_t *fpos) { @@ -244,11 +245,9 @@ static int mp3_seek_next_header(unsigned char *map, off_t numbytes, off_t *fpos) struct mp3header h, h2; long valid_start = 0; - while (1) { - while ((*fpos)++ < numbytes && map[*fpos] != 0xff) - ; - if (*fpos >= numbytes) - return 0; + for (; *fpos < numbytes; (*fpos)++) { + if (map[*fpos] != 0xff) + continue; valid_start = *fpos; first_len = get_header(map, numbytes, fpos, &h); if (first_len <= 0) @@ -267,6 +266,7 @@ static int mp3_seek_next_header(unsigned char *map, off_t numbytes, off_t *fpos) return first_len; } } + return 0; } static void mp3_get_id3(unsigned char *map, off_t numbytes, off_t *fpos) @@ -339,7 +339,6 @@ static int mp3_read_info(unsigned char *map, off_t numbytes, mp3_get_id3(map, numbytes, &fpos); fpos = 0; mp3.vbr = 0; - mp3.freq = 0; while (1) { int freq, br, fl; struct timeval tmp, cct; /* current chunk time */ @@ -386,8 +385,9 @@ static int mp3_read_info(unsigned char *map, off_t numbytes, if (!afi->chunks_total || !freq_avg || !br_avg) goto err_out; afi->chunk_table[afi->chunks_total] = numbytes - 1; - mp3.br_average = br_avg; - mp3.freq = freq_avg; + afi->bitrate = br_avg; + afi->frequency = freq_avg; + afi->channels = header_channels(&mp3.header); afi->seconds_total = (tv2ms(&total_time) + 500) / 1000; tv_divide(afi->chunks_total, &total_time, &afi->chunk_tv); PARA_DEBUG_LOG("%lu chunks, each %lums\n", afi->chunks_total, @@ -404,7 +404,7 @@ err_out: /* * Read mp3 information from audio file */ -static int mp3_get_file_info(FILE *file, char *map, off_t numbytes, +static int mp3_get_file_info(char *map, off_t numbytes, struct audio_format_info *afi) { int ret;