2 * Copyright (C) 2003-2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file mp3_afh.c para_server's mp3 audio format handler */
10 * This file is based in part on mp3tech.c and mp3tech.h, Copyright (C)
11 * 2000-2001 Cedric Tefft <cedric@earthling.net>, which in turn is based
14 * * MP3Info 0.5 by Ricardo Cerqueira <rmc@rccn.net>
15 * * MP3Stat 0.9 by Ed Sweetman <safemode@voicenet.com> and
16 * Johannes Overmann <overmann@iname.com>
27 /** \cond some defines and structs which are only used in this file */
30 * MIN_CONSEC_GOOD_FRAMES defines how many consecutive valid MP3 frames we need
31 * to see before we decide we are looking at a real MP3 file
33 #define MIN_CONSEC_GOOD_FRAMES 4
34 #define FRAME_HEADER_SIZE 4
35 #define MIN_FRAME_SIZE 21
46 unsigned int copyright
;
47 unsigned int original
;
48 unsigned int emphasis
;
52 static const int frequencies
[3][4] = {
53 {22050,24000,16000,50000}, /* MPEG 2.0 */
54 {44100,48000,32000,50000}, /* MPEG 1.0 */
55 {11025,12000,8000,50000} /* MPEG 2.5 */
58 static const int mp3info_bitrate
[2][3][14] = {
60 {32,48,56,64,80,96,112,128,144,160,176,192,224,256}, /* layer 1 */
61 {8,16,24,32,40,48,56,64,80,96,112,128,144,160}, /* layer 2 */
62 {8,16,24,32,40,48,56,64,80,96,112,128,144,160} /* layer 3 */
66 {32,64,96,128,160,192,224,256,288,320,352,384,416,448}, /* layer 1 */
67 {32,48,56,64,80,96,112,128,160,192,224,256,320,384}, /* layer 2 */
68 {32,40,48,56,64,80,96,112,128,160,192,224,256,320} /* layer 3 */
72 static const int frame_size_index
[] = {24000, 72000, 72000};
73 static const char *mode_text
[] = {"stereo", "joint stereo", "dual channel", "mono", "invalid"};
79 static char *get_latin1(id3_ucs4_t
const *string
)
83 return (char *)id3_ucs4_latin1duplicate(string
);
86 static char *get_stringlist(union id3_field
*field
)
88 unsigned int k
, nstrings
= id3_field_getnstrings(field
);
91 for (k
= 0; k
< nstrings
; k
++) {
92 char *tmp
= (char *)get_latin1(id3_field_getstrings(field
, k
));
95 result
= make_message("%s %s", tmp2
, tmp
);
104 static char *get_string(union id3_field
*field
)
106 id3_ucs4_t
const *string
= id3_field_getfullstring(field
);
108 return get_latin1(string
);
111 #define FOR_EACH_FIELD(f, j, fr) for (j = 0; j < (fr)->nfields && \
112 (f = id3_frame_field((fr), j)); j++)
114 static char *get_strings(struct id3_frame
*fr
)
117 union id3_field
*field
;
119 FOR_EACH_FIELD(field
, j
, fr
) {
120 enum id3_field_type type
= id3_field_type(field
);
122 if (type
== ID3_FIELD_TYPE_STRINGLIST
)
123 return get_stringlist(field
);
124 if (type
== ID3_FIELD_TYPE_STRINGFULL
)
125 return get_string(field
);
130 static void mp3_get_id3(__a_unused
unsigned char *map
,
131 __a_unused
size_t numbytes
, int fd
, struct taginfo
*tags
)
134 struct id3_tag
*id3_t
;
135 struct id3_file
*id3_f
= id3_file_fdopen(fd
, ID3_FILE_MODE_READONLY
);
139 id3_t
= id3_file_tag(id3_f
);
141 id3_file_close(id3_f
);
144 for (i
= 0; i
< id3_t
->nframes
; i
++) {
145 struct id3_frame
*fr
= id3_t
->frames
[i
];
146 if (!strcmp(fr
->id
, "TIT2")) {
148 tags
->title
= get_strings(fr
);
151 if (!strcmp(fr
->id
, "TPE1")) {
153 tags
->artist
= get_strings(fr
);
156 if (!strcmp(fr
->id
, "TALB")) {
158 tags
->album
= get_strings(fr
);
161 if (!strcmp(fr
->id
, "TDRC")) {
163 tags
->year
= get_strings(fr
);
166 if (!strcmp(fr
->id
, "COMM")) {
168 tags
->comment
= get_strings(fr
);
172 id3_file_close(id3_f
);
175 #else /* HAVE_LIBID3TAG */
178 * Remove trailing whitespace from the end of a string
180 static char *unpad(char *string
)
182 char *pos
= string
+ strlen(string
) - 1;
183 while (para_isspace(pos
[0]))
188 static void mp3_get_id3(unsigned char *map
, size_t numbytes
, __a_unused
int fd
,
189 struct taginfo
*tags
)
191 char title
[31], artist
[31], album
[31], year
[5], comment
[31];
194 if (numbytes
< 128 || strncmp("TAG", (char *)map
+ numbytes
- 128, 3)) {
195 PARA_DEBUG_LOG("no id3 v1 tag\n");
198 fpos
= numbytes
- 125;
199 memcpy(title
, map
+ fpos
, 30);
202 memcpy(artist
, map
+ fpos
, 30);
205 memcpy(album
, map
+ fpos
, 30);
208 memcpy(year
, map
+ fpos
, 4);
211 memcpy(comment
, map
+ fpos
, 30);
218 tags
->artist
= para_strdup(artist
);
219 tags
->title
= para_strdup(title
);
220 tags
->year
= para_strdup(year
);
221 tags
->album
= para_strdup(album
);
222 tags
->comment
= para_strdup(comment
);
224 #endif /* HAVE_LIBID3TAG */
226 static int header_frequency(struct mp3header
*h
)
228 if (h
->version
> 2 || h
->freq
> 3)
229 return -E_HEADER_FREQ
;
230 return frequencies
[h
->version
][h
->freq
];
233 static const char *header_mode(struct mp3header
*h
)
236 h
->mode
= 4; /* invalid */
237 return mode_text
[h
->mode
];
240 static int header_channels(struct mp3header
*h
)
249 static int header_bitrate(struct mp3header
*h
)
251 if (!h
->layer
|| h
->layer
> 3 || h
->bitrate
> 14 || !h
->bitrate
)
252 return -E_HEADER_BITRATE
;
253 return mp3info_bitrate
[h
->version
& 1][3 - h
->layer
][h
->bitrate
- 1];
256 static int frame_length(struct mp3header
*header
)
258 int hb
, hf
= header_frequency(header
);
262 hb
= header_bitrate(header
);
265 if (header
->sync
!= 0xFFE || header
->layer
> 3)
267 return frame_size_index
[3 - header
->layer
] *
268 ((header
->version
& 1) + 1) * hb
/ hf
272 static int compare_headers(struct mp3header
*h1
,struct mp3header
*h2
)
274 if ((*(unsigned int*)h1
) == (*(unsigned int*)h2
))
276 if ((h1
->version
== h2
->version
) &&
277 (h1
->layer
== h2
->layer
) &&
278 (h1
->crc
== h2
->crc
) &&
279 (h1
->freq
== h2
->freq
) &&
280 (h1
->mode
== h2
->mode
) &&
281 (h1
->copyright
== h2
->copyright
) &&
282 (h1
->original
== h2
->original
) &&
283 (h1
->emphasis
== h2
->emphasis
))
289 * get next MP3 frame header.
291 * On success, the header frame length is returned and the given header
292 * structure that is filled in. A return value of zero means that we did not
293 * retrieve a valid frame header, and a negative return value indicates an
296 static int get_header(unsigned char *map
, size_t numbytes
, off_t
*fpos
,
297 struct mp3header
*header
)
301 if (*fpos
+ FRAME_HEADER_SIZE
> numbytes
) {
302 *fpos
= numbytes
- 1;
306 header
->layer
= (map
[*fpos
+ 1] >> 1) & 3;
307 header
->sync
= (((int)map
[*fpos
]<<4) | ((int)(map
[*fpos
+ 1]&0xE0)>>4));
308 if (map
[*fpos
+ 1] & 0x10)
309 header
->version
= (map
[*fpos
+ 1] >> 3) & 1;
312 if ((header
->sync
!= 0xFFE) || (header
->layer
!= 1)) {
317 header
->crc
= map
[*fpos
+ 1] & 1;
318 header
->bitrate
= (map
[*fpos
+ 2] >> 4) & 0x0F;
319 header
->freq
= (map
[*fpos
+ 2] >> 2) & 0x3;
320 header
->padding
= (map
[*fpos
+ 2] >>1) & 0x1;
321 header
->mode
= (map
[*fpos
+ 3] >> 6) & 0x3;
322 fl
= frame_length(header
);
323 ret
= (fl
>= MIN_FRAME_SIZE
)? fl
: -E_FRAME_LENGTH
;
325 *fpos
+= FRAME_HEADER_SIZE
;
330 * find the next mp3 header
332 * Return the length of the next frame header or zero if the end of the file is
335 static int mp3_seek_next_header(unsigned char *map
, size_t numbytes
, off_t
*fpos
,
336 struct mp3header
*result
)
338 int k
, l
= 0, first_len
;
339 struct mp3header h
, h2
;
340 long valid_start
= 0;
342 for (; *fpos
< numbytes
; (*fpos
)++) {
343 if (map
[*fpos
] != 0xff)
346 first_len
= get_header(map
, numbytes
, fpos
, &h
);
349 *fpos
+= first_len
- FRAME_HEADER_SIZE
;
350 for (k
= 1; k
< MIN_CONSEC_GOOD_FRAMES
; k
++) {
351 if ((l
= get_header(map
, numbytes
, fpos
, &h2
)) <= 0)
353 if (!compare_headers(&h
, &h2
))
355 *fpos
+= l
- FRAME_HEADER_SIZE
;
357 if (k
== MIN_CONSEC_GOOD_FRAMES
) {
366 static int find_valid_start(unsigned char *map
, size_t numbytes
, off_t
*fpos
,
367 struct mp3header
*header
)
371 frame_len
= get_header(map
, numbytes
, fpos
, header
);
375 frame_len
= mp3_seek_next_header(map
, numbytes
, fpos
, header
);
379 *fpos
-= FRAME_HEADER_SIZE
;
381 return -E_FRAME_LENGTH
;
385 static int mp3_read_info(unsigned char *map
, size_t numbytes
, int fd
,
386 struct afh_info
*afhi
)
388 uint64_t freq_sum
= 0, br_sum
= 0;
389 int fl
= 0, ret
, len
= 0, old_br
= -1, vbr
= 0;
390 struct timeval total_time
= {0, 0};
391 unsigned chunk_table_size
= 1000; /* gets increased on demand */
393 struct mp3header header
;
395 afhi
->chunks_total
= 0;
396 afhi
->chunk_table
= para_malloc(chunk_table_size
* sizeof(uint32_t));
399 struct timeval tmp
, cct
; /* current chunk time */
401 len
= find_valid_start(map
, numbytes
, &fpos
, &header
);
405 if (!afhi
->chunks_total
)
407 end
= afhi
->chunk_table
[afhi
->chunks_total
- 1] + fl
;
408 afhi
->chunk_table
[afhi
->chunks_total
]
409 = PARA_MIN(end
, numbytes
);
412 ret
= header_frequency(&header
);
416 ret
= header_bitrate(&header
);
420 ret
= frame_length(&header
);
426 tv_divide(br
* 125, &tmp
, &cct
);
427 tv_add(&cct
, &total_time
, &tmp
);
429 if (afhi
->chunks_total
>= chunk_table_size
) {
430 chunk_table_size
*= 2;
431 afhi
->chunk_table
= para_realloc(afhi
->chunk_table
,
432 chunk_table_size
* sizeof(uint32_t));
434 afhi
->chunk_table
[afhi
->chunks_total
] = fpos
;
435 afhi
->chunks_total
++;
438 if (afhi
->chunks_total
!= 1 && old_br
!= br
)
443 if (!freq_sum
|| !br_sum
)
445 afhi
->bitrate
= br_sum
/ afhi
->chunks_total
;
446 afhi
->frequency
= freq_sum
/ afhi
->chunks_total
;
447 afhi
->channels
= header_channels(&header
);
448 afhi
->seconds_total
= (tv2ms(&total_time
) + 500) / 1000;
449 tv_divide(afhi
->chunks_total
, &total_time
, &afhi
->chunk_tv
);
450 PARA_DEBUG_LOG("%lu chunks, each %lums\n", afhi
->chunks_total
,
451 tv2ms(&afhi
->chunk_tv
));
452 afhi
->techinfo
= make_message("%cbr, %s", vbr
? 'v' : 'c',
453 header_mode(&header
));
454 mp3_get_id3(map
, numbytes
, fd
, &afhi
->tags
);
457 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));
458 free(afhi
->chunk_table
);
463 * Read mp3 information from audio file
465 static int mp3_get_file_info(char *map
, size_t numbytes
, int fd
,
466 struct afh_info
*afhi
)
470 ret
= mp3_read_info((unsigned char *)map
, numbytes
, fd
, afhi
);
473 if (afhi
->seconds_total
< 2 || !afhi
->chunks_total
)
478 static const char* mp3_suffixes
[] = {"mp3", NULL
};
481 * the init function of the mp3 audio format handler
483 * \param afh pointer to the struct to initialize
485 void mp3_init(struct audio_format_handler
*afh
)
487 afh
->get_file_info
= mp3_get_file_info
;
488 afh
->suffixes
= mp3_suffixes
;