1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
32 #include "metadata/metadata_parsers.h"
34 #if CONFIG_CODEC == SWCODEC
36 /* For trailing tag stripping */
37 #include "buffering.h"
39 #include "metadata/metadata_common.h"
41 #endif /* CONFIG_CODEC == SWCODEC */
43 const struct afmt_entry audio_formats
[AFMT_NUM_CODECS
] =
45 /* Unknown file format */
47 AFMT_ENTRY("???", NULL
, NULL
, NULL
),
49 /* MPEG Audio layer 1 */
51 AFMT_ENTRY("MP1", "mpa", NULL
, "mp1\0" ),
52 /* MPEG Audio layer 2 */
54 AFMT_ENTRY("MP2", "mpa", NULL
, "mpa\0mp2\0" ),
55 /* MPEG Audio layer 3 */
57 AFMT_ENTRY("MP3", "mpa", "mp3_enc", "mp3\0" ),
59 #if CONFIG_CODEC == SWCODEC
60 /* Audio Interchange File Format */
62 AFMT_ENTRY("AIFF", "aiff", "aiff_enc", "aiff\0aif\0"),
63 /* Uncompressed PCM in a WAV file OR ATRAC3 stream in WAV file (.at3) */
65 AFMT_ENTRY("WAV", "wav", "wav_enc", "wav\0at3\0" ),
68 AFMT_ENTRY("Ogg", "vorbis", NULL
, "ogg\0oga\0" ),
71 AFMT_ENTRY("FLAC", "flac", NULL
, "flac\0" ),
74 AFMT_ENTRY("MPC", "mpc", NULL
, "mpc\0" ),
75 /* A/52 (aka AC3) audio */
77 AFMT_ENTRY("AC3", "a52", NULL
, "a52\0ac3\0" ),
80 AFMT_ENTRY("WV", "wavpack", "wavpack_enc", "wv\0" ),
81 /* Apple Lossless Audio Codec */
83 AFMT_ENTRY("ALAC", "alac", NULL
, "m4a\0m4b\0" ),
84 /* Advanced Audio Coding in M4A container */
86 AFMT_ENTRY("AAC", "aac", NULL
, "mp4\0" ),
89 AFMT_ENTRY("SHN", "shorten", NULL
, "shn\0" ),
92 AFMT_ENTRY("SID", "sid", NULL
, "sid\0" ),
95 AFMT_ENTRY("ADX", "adx", NULL
, "adx\0" ),
96 /* NESM (NES Sound Format) */
98 AFMT_ENTRY("NSF", "nsf", NULL
, "nsf\0nsfe\0" ),
99 /* Speex File Format */
101 AFMT_ENTRY("Speex","speex", NULL
, "spx\0" ),
102 /* SPC700 Save State */
104 AFMT_ENTRY("SPC", "spc", NULL
, "spc\0" ),
105 /* APE (Monkey's Audio) */
107 AFMT_ENTRY("APE", "ape", NULL
, "ape\0mac\0" ),
108 /* WMA (WMAV1/V2 in ASF) */
110 AFMT_ENTRY("WMA", "wma", NULL
, "wma\0wmv\0asf\0" ),
113 AFMT_ENTRY("MOD", "mod", NULL
, "mod\0" ),
116 AFMT_ENTRY("SAP", "asap", NULL
, "sap\0" ),
119 AFMT_ENTRY("Cook", "cook", NULL
, "rm\0ra\0rmvb\0" ),
122 AFMT_ENTRY("RAAC", "raac", NULL
, "rm\0ra\0rmvb\0" ),
125 AFMT_ENTRY("AC3", "a52_rm", NULL
, "rm\0ra\0rmvb\0" ),
126 /* ATRAC3 in RM/RA */
128 AFMT_ENTRY("ATRAC3","atrac3_rm", NULL
, "rm\0ra\0rmvb\0" ),
131 AFMT_ENTRY("CMC", "asap", NULL
, "cmc\0" ),
134 AFMT_ENTRY("CM3", "asap", NULL
, "cm3\0" ),
137 AFMT_ENTRY("CMR", "asap", NULL
, "cmr\0" ),
140 AFMT_ENTRY("CMS", "asap", NULL
, "cms\0" ),
143 AFMT_ENTRY("DMC", "asap", NULL
, "dmc\0" ),
146 AFMT_ENTRY("DLT", "asap", NULL
, "dlt\0" ),
149 AFMT_ENTRY("MPT", "asap", NULL
, "mpt\0" ),
152 AFMT_ENTRY("MPD", "asap", NULL
, "mpd\0" ),
155 AFMT_ENTRY("RMT", "asap", NULL
, "rmt\0" ),
158 AFMT_ENTRY("TMC", "asap", NULL
, "tmc\0" ),
161 AFMT_ENTRY("TM8", "asap", NULL
, "tm8\0" ),
164 AFMT_ENTRY("TM2", "asap", NULL
, "tm2\0" ),
165 /* Atrac3 in Sony OMA Container */
167 AFMT_ENTRY("ATRAC3", "atrac3_oma", NULL
, "oma\0aa3\0" ),
171 #if CONFIG_CODEC == SWCODEC && defined (HAVE_RECORDING)
172 /* get REC_FORMAT_* corresponding AFMT_* */
173 const int rec_format_afmt
[REC_NUM_FORMATS
] =
175 /* give AFMT_UNKNOWN by default */
176 [0 ... REC_NUM_FORMATS
-1] = AFMT_UNKNOWN
,
177 /* add new entries below this line */
178 [REC_FORMAT_AIFF
] = AFMT_AIFF
,
179 [REC_FORMAT_MPA_L3
] = AFMT_MPA_L3
,
180 [REC_FORMAT_WAVPACK
] = AFMT_WAVPACK
,
181 [REC_FORMAT_PCM_WAV
] = AFMT_PCM_WAV
,
184 /* get AFMT_* corresponding REC_FORMAT_* */
185 const int afmt_rec_format
[AFMT_NUM_CODECS
] =
187 /* give -1 by default */
188 [0 ... AFMT_NUM_CODECS
-1] = -1,
189 /* add new entries below this line */
190 [AFMT_AIFF
] = REC_FORMAT_AIFF
,
191 [AFMT_MPA_L3
] = REC_FORMAT_MPA_L3
,
192 [AFMT_WAVPACK
] = REC_FORMAT_WAVPACK
,
193 [AFMT_PCM_WAV
] = REC_FORMAT_PCM_WAV
,
195 #endif /* CONFIG_CODEC == SWCODEC && defined (HAVE_RECORDING) */
198 /* Simple file type probing by looking at the filename extension. */
199 unsigned int probe_file_format(const char *filename
)
204 suffix
= strrchr(filename
, '.');
214 for (i
= 1; i
< AFMT_NUM_CODECS
; i
++)
216 /* search extension list for type */
217 const char *ext
= audio_formats
[i
].ext_list
;
221 if (strcasecmp(suffix
, ext
) == 0)
226 ext
+= strlen(ext
) + 1;
228 while (*ext
!= '\0');
234 /* Note, that this returns false for successful, true for error! */
235 bool mp3info(struct mp3entry
*entry
, const char *filename
)
240 fd
= open(filename
, O_RDONLY
);
244 result
= !get_mp3_metadata(fd
, entry
, filename
);
251 /* Get metadata for track - return false if parsing showed problems with the
252 * file that would prevent playback.
254 bool get_metadata(struct mp3entry
* id3
, int fd
, const char* trackname
)
256 /* Clear the mp3entry to avoid having bogus pointers appear */
257 memset(id3
, 0, sizeof(struct mp3entry
));
259 /* Take our best guess at the codec type based on file extension */
260 id3
->codectype
= probe_file_format(trackname
);
262 /* Load codec specific track tag information and confirm the codec type. */
263 switch (id3
->codectype
)
268 if (!get_mp3_metadata(fd
, id3
, trackname
))
275 #if CONFIG_CODEC == SWCODEC
277 if (!get_flac_metadata(fd
, id3
))
285 if (!get_asf_metadata(fd
, id3
))
292 if (!get_monkeys_metadata(fd
, id3
))
296 read_ape_tags(fd
, id3
);
300 if (!get_musepack_metadata(fd
, id3
))
302 read_ape_tags(fd
, id3
);
305 case AFMT_OGG_VORBIS
:
307 if (!get_ogg_metadata(fd
, id3
))/*detects and handles Ogg/Speex files*/
315 if (!get_wave_metadata(fd
, id3
))
323 if (!get_wavpack_metadata(fd
, id3
))
328 read_ape_tags(fd
, id3
); /* use any apetag info we find */
332 if (!get_a52_metadata(fd
, id3
))
341 if (!get_mp4_metadata(fd
, id3
))
349 if (!get_mod_metadata(fd
, id3
))
358 id3
->filesize
= filesize(fd
);
359 if (!skip_id3v2(fd
, id3
))
363 /* TODO: read the id3v2 header if it exists */
367 if (!get_sid_metadata(fd
, id3
))
374 if (!get_spc_metadata(fd
, id3
))
376 DEBUGF("get_spc_metadata error\n");
379 id3
->filesize
= filesize(fd
);
380 id3
->genre_string
= id3_get_num_genre(36);
384 if (!get_adx_metadata(fd
, id3
))
386 DEBUGF("get_adx_metadata error\n");
393 if (!get_nsf_metadata(fd
, id3
))
395 DEBUGF("get_nsf_metadata error\n");
401 if (!get_aiff_metadata(fd
, id3
))
409 if (!get_asap_metadata(fd
, id3
))
411 DEBUGF("get_sap_metadata error\n");
414 id3
->filesize
= filesize(fd
);
415 id3
->genre_string
= id3_get_num_genre(36);
431 id3
->frequency
= 44100;
433 id3
->filesize
= filesize(fd
);
434 id3
->genre_string
= id3_get_num_genre(36);
437 if (!get_rm_metadata(fd
, id3
))
439 DEBUGF("get_rm_metadata error\n");
443 case AFMT_OMA_ATRAC3
:
444 if (!get_oma_metadata(fd
, id3
))
446 DEBUGF("get_oma_metadata error\n");
451 #endif /* CONFIG_CODEC == SWCODEC */
454 /* If we don't know how to read the metadata, assume we can't play
460 /* We have successfully read the metadata from the file */
462 lseek(fd
, 0, SEEK_SET
);
463 strlcpy(id3
->path
, trackname
, sizeof(id3
->path
));
469 #if CONFIG_CODEC == SWCODEC
470 void strip_tags(int handle_id
)
472 static const unsigned char tag
[] = "TAG";
473 static const unsigned char apetag
[] = "APETAGEX";
477 if (bufgettail(handle_id
, 128, &tail
) != 128)
480 if (memcmp(tail
, tag
, 3) == 0)
483 logf("Cutting off ID3v1 tag");
484 bufcuttail(handle_id
, 128);
487 /* Get a new tail, as the old one may have been cut */
488 if (bufgettail(handle_id
, 32, &tail
) != 32)
491 /* Check for APE tag (look for the APE tag footer) */
492 if (memcmp(tail
, apetag
, 8) != 0)
495 /* Read the version and length from the footer */
496 version
= get_long_le(&((unsigned char *)tail
)[8]);
497 len
= get_long_le(&((unsigned char *)tail
)[12]);
499 len
+= 32; /* APEv2 has a 32 byte header */
502 logf("Cutting off APE tag (%ldB)", len
);
503 bufcuttail(handle_id
, len
);
505 #endif /* CONFIG_CODEC == SWCODEC */
506 #endif /* ! __PCTOOL__ */
508 void adjust_mp3entry(struct mp3entry
*entry
, void *dest
, const void *orig
)
512 offset
= - ((size_t)orig
- (size_t)dest
);
514 offset
= (size_t)dest
- (size_t)orig
;
517 entry
->title
+= offset
;
519 entry
->artist
+= offset
;
521 entry
->album
+= offset
;
522 if (entry
->genre_string
> (char*)orig
523 && entry
->genre_string
< (char*)orig
+ sizeof(struct mp3entry
))
524 /* Don't adjust that if it points to an entry of the "genres" array */
525 entry
->genre_string
+= offset
;
526 if (entry
->track_string
)
527 entry
->track_string
+= offset
;
528 if (entry
->disc_string
)
529 entry
->disc_string
+= offset
;
530 if (entry
->year_string
)
531 entry
->year_string
+= offset
;
533 entry
->composer
+= offset
;
535 entry
->comment
+= offset
;
536 if (entry
->albumartist
)
537 entry
->albumartist
+= offset
;
539 entry
->grouping
+= offset
;
540 #if CONFIG_CODEC == SWCODEC
541 if (entry
->track_gain_string
)
542 entry
->track_gain_string
+= offset
;
543 if (entry
->album_gain_string
)
544 entry
->album_gain_string
+= offset
;
546 if (entry
->mb_track_id
)
547 entry
->mb_track_id
+= offset
;
550 void copy_mp3entry(struct mp3entry
*dest
, const struct mp3entry
*orig
)
552 memcpy(dest
, orig
, sizeof(struct mp3entry
));
553 adjust_mp3entry(dest
, dest
, orig
);